Merge branch 'master' into leisure-rendering
@@ -1,7 +1,6 @@
|
||||
/* eslint-disable no-console */
|
||||
const requireESM = require('esm')(module);
|
||||
const _cloneDeep = requireESM('lodash-es/cloneDeep').default;
|
||||
const _extend = requireESM('lodash-es/extend').default;
|
||||
const _forEach = requireESM('lodash-es/forEach').default;
|
||||
const _isEmpty = requireESM('lodash-es/isEmpty').default;
|
||||
const _merge = requireESM('lodash-es/merge').default;
|
||||
@@ -18,7 +17,7 @@ const YAML = require('js-yaml');
|
||||
|
||||
const fieldSchema = require('./data/presets/schema/field.json');
|
||||
const presetSchema = require('./data/presets/schema/preset.json');
|
||||
const suggestions = require('name-suggestion-index/name-suggestions.json');
|
||||
const suggestions = require('name-suggestion-index').names;
|
||||
|
||||
// fontawesome icons
|
||||
const fontawesome = require('@fortawesome/fontawesome-svg-core');
|
||||
@@ -46,9 +45,7 @@ module.exports = function buildData() {
|
||||
|
||||
for (var target of Object.keys(symlinks)) {
|
||||
if (!shell.test('-L', target)) {
|
||||
console.log(
|
||||
`Creating symlink: ${target} -> ${symlinks[target]}`
|
||||
);
|
||||
console.log(`Creating symlink: ${target} -> ${symlinks[target]}`);
|
||||
shell.ln('-sf', symlinks[target], target);
|
||||
}
|
||||
}
|
||||
@@ -191,64 +188,39 @@ function generateFields(tstrings, faIcons) {
|
||||
|
||||
|
||||
function suggestionsToPresets(presets) {
|
||||
var existing = {};
|
||||
|
||||
for (var key in suggestions) {
|
||||
for (var value in suggestions[key]) {
|
||||
for (var name in suggestions[key][value]) {
|
||||
var item = key + '/' + value + '/' + name;
|
||||
var tags = {};
|
||||
var count = suggestions[key][value][name].count;
|
||||
|
||||
if (existing[name] && count > existing[name].count) {
|
||||
delete presets[existing[name].category];
|
||||
delete existing[name];
|
||||
}
|
||||
if (!existing[name]) {
|
||||
tags = _extend({name: name.replace(/"/g, '')}, suggestions[key][value][name].tags);
|
||||
addSuggestion(item, tags, name.replace(/"/g, ''), count);
|
||||
}
|
||||
addSuggestion(key, value, name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function addSuggestion(category, tags, name, count) {
|
||||
var tag = category.split('/');
|
||||
var parent = presets[tag[0] + '/' + tag[1]];
|
||||
|
||||
// Hacky code to add healthcare tagging not yet present in name-suggestion-index
|
||||
// This will be fixed by https://github.com/osmlab/name-suggestion-index/issues/57
|
||||
if (tag[0] === 'amenity') {
|
||||
var healthcareTags = {
|
||||
clinic: 'clinic',
|
||||
dentist: 'dentist',
|
||||
doctors: 'doctor',
|
||||
hospital: 'hospital',
|
||||
pharmacy: 'pharmacy'
|
||||
};
|
||||
if (healthcareTags.hasOwnProperty(tag[1])) {
|
||||
tags.healthcare = healthcareTags[tag[1]];
|
||||
}
|
||||
}
|
||||
|
||||
if (!parent) {
|
||||
console.log('WARN: no preset for suggestion = ' + tag);
|
||||
function addSuggestion(key, value, name) {
|
||||
var presetID = key + '/' + value;
|
||||
var preset = presets[presetID];
|
||||
if (!preset) {
|
||||
console.log('Warning: No preset "' + presetID + '" for name-suggestion "' + name + '"');
|
||||
return;
|
||||
}
|
||||
|
||||
presets[category.replace(/"/g, '')] = {
|
||||
tags: parent.tags ? _merge(tags, parent.tags) : tags,
|
||||
name: name,
|
||||
icon: parent.icon,
|
||||
geometry: parent.geometry,
|
||||
fields: parent.fields,
|
||||
suggestion: true
|
||||
};
|
||||
var suggestionID = key + '/' + value + '/' + name;
|
||||
var suggestion = suggestions[key][value][name];
|
||||
var wikidataTag = { 'brand:wikidata': suggestion.tags['brand:wikidata'] };
|
||||
|
||||
existing[name] = {
|
||||
category: category,
|
||||
count: count
|
||||
presets[suggestionID] = {
|
||||
name: name,
|
||||
icon: preset.icon,
|
||||
fields: preset.fields,
|
||||
geometry: preset.geometry,
|
||||
tags: _merge({}, preset.tags, wikidataTag),
|
||||
addTags: suggestion.tags,
|
||||
removeTags: suggestion.tags,
|
||||
reference: preset.reference,
|
||||
matchScore: 2,
|
||||
suggestion: true
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,8 @@
|
||||
|
||||
/* `.target` objects are interactive */
|
||||
/* They can be picked up, clicked, hovered, or things can connect to them */
|
||||
.node.target {
|
||||
.node.target,
|
||||
.turn .target {
|
||||
pointer-events: fill;
|
||||
fill-opacity: 0.8;
|
||||
fill: currentColor;
|
||||
@@ -50,6 +51,7 @@
|
||||
stroke-linejoin: round;
|
||||
}
|
||||
|
||||
|
||||
/* `.target-nope` objects are explicitly forbidden to join to */
|
||||
.surface:not(.nope-disabled) .node.target.target-nope,
|
||||
.surface:not(.nope-disabled) .way.target.target-nope {
|
||||
@@ -66,7 +68,6 @@
|
||||
|
||||
|
||||
/* points & notes */
|
||||
|
||||
g.note .stroke {
|
||||
stroke: #222;
|
||||
stroke-width: 1;
|
||||
@@ -118,21 +119,17 @@ g.point ellipse.stroke {
|
||||
|
||||
|
||||
/* vertices and midpoints */
|
||||
|
||||
g.vertex .fill {
|
||||
fill: #000;
|
||||
}
|
||||
|
||||
g.vertex .stroke {
|
||||
stroke: #666;
|
||||
stroke-width: 1;
|
||||
fill: white;
|
||||
}
|
||||
|
||||
g.vertex.shared .stroke {
|
||||
fill: #bbb;
|
||||
}
|
||||
|
||||
g.midpoint .fill {
|
||||
fill: #eee;
|
||||
stroke: #444;
|
||||
@@ -160,7 +157,6 @@ g.vertex.selected .shadow {
|
||||
|
||||
|
||||
/* lines */
|
||||
|
||||
.preset-icon .icon.iD-other-line {
|
||||
color: #fff;
|
||||
fill: #777;
|
||||
@@ -198,7 +194,6 @@ path.line.stroke {
|
||||
|
||||
|
||||
/* Labels / Markers */
|
||||
|
||||
text {
|
||||
font-size: 10px;
|
||||
color: #222;
|
||||
@@ -238,7 +233,7 @@ text.pointlabel {
|
||||
dominant-baseline: auto;
|
||||
}
|
||||
|
||||
.layer-labels-halo text {
|
||||
.labels-group.halo text {
|
||||
opacity: 0.7;
|
||||
stroke: #fff;
|
||||
stroke-width: 5px;
|
||||
@@ -246,9 +241,8 @@ text.pointlabel {
|
||||
}
|
||||
|
||||
text.nolabel {
|
||||
opacity: 0;
|
||||
opacity: 0 !important;
|
||||
}
|
||||
|
||||
text.point {
|
||||
font-size: 10px;
|
||||
}
|
||||
@@ -259,14 +253,12 @@ text.point {
|
||||
stroke-width: 2px;
|
||||
stroke-miterlimit: 1;
|
||||
}
|
||||
|
||||
.icon.areaicon {
|
||||
fill: #222;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
/* Highlighting */
|
||||
|
||||
g.point.highlighted .shadow,
|
||||
path.shadow.highlighted {
|
||||
stroke-opacity: 0.95;
|
||||
@@ -279,16 +271,9 @@ g.vertex.highlighted .shadow {
|
||||
}
|
||||
|
||||
/* Turn Restrictions */
|
||||
|
||||
g.turn rect,
|
||||
g.turn circle {
|
||||
.points-group.turns g.turn rect,
|
||||
.points-group.turns g.turn circle {
|
||||
fill: none;
|
||||
pointer-events: all;
|
||||
}
|
||||
|
||||
.form-field-restrictions .vertex {
|
||||
cursor: auto !important;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
/* Turn restriction paths and vertices */
|
||||
|
||||
@@ -29,7 +29,11 @@ path.stroke.tag-leisure-pitch,
|
||||
path.stroke.tag-leisure-track,
|
||||
path.stroke.tag-leisure-golf_course,
|
||||
path.stroke.tag-leisure-garden,
|
||||
path.stroke.tag-leisure-park {
|
||||
path.stroke.tag-leisure-park,
|
||||
path.stroke.tag-barrier-hedge,
|
||||
path.stroke.tag-landuse-forest,
|
||||
path.stroke.tag-landuse-wood,
|
||||
path.stroke.tag-landuse-grass {
|
||||
stroke: rgb(140, 208, 95);
|
||||
}
|
||||
path.fill.tag-landuse,
|
||||
@@ -39,7 +43,10 @@ path.fill.tag-leisure-pitch,
|
||||
path.fill.tag-leisure-track,
|
||||
path.fill.tag-leisure-golf_course,
|
||||
path.fill.tag-leisure-garden,
|
||||
path.fill.tag-leisure-park {
|
||||
path.fill.tag-leisure-park,
|
||||
path.fill.tag-landuse-forest,
|
||||
path.fill.tag-natural-wood,
|
||||
path.fill.tag-landuse-grass {
|
||||
stroke: rgba(140, 208, 95, 0.3);
|
||||
fill: rgba(140, 208, 95, 0.3);
|
||||
}
|
||||
@@ -50,10 +57,21 @@ path.fill.tag-leisure-park {
|
||||
.preset-icon-fill-area.tag-leisure-track,
|
||||
.preset-icon-fill-area.tag-leisure-golf_course,
|
||||
.preset-icon-fill-area.tag-leisure-garden,
|
||||
.preset-icon-fill-area.tag-leisure-park {
|
||||
.preset-icon-fill-area.tag-leisure-park,
|
||||
.preset-icon-fill-area.tag-landuse-forest,
|
||||
.preset-icon-fill-area.tag-natural-wood,
|
||||
.preset-icon-fill-area.tag-landuse-grass {
|
||||
border-color: rgb(140, 208, 95);
|
||||
background-color: rgba(140, 208, 95, 0.3);
|
||||
}
|
||||
.pattern-color-forest,
|
||||
.pattern-color-forest_broadleaved,
|
||||
.pattern-color-forest_needleleaved,
|
||||
.pattern-color-forest_leafless,
|
||||
.pattern-color-wood,
|
||||
.pattern-color-grass {
|
||||
fill: rgba(140, 208, 95, 0.3);
|
||||
}
|
||||
|
||||
/* Blue things */
|
||||
path.stroke.tag-amenity-swimming_pool,
|
||||
@@ -85,6 +103,10 @@ path.fill.tag-natural-water {
|
||||
border-color: rgb(119, 211, 222);
|
||||
background-color: rgba(119, 211, 222, 0.3);
|
||||
}
|
||||
.pattern-color-waves,
|
||||
.pattern-color-pond {
|
||||
fill: rgba(119, 211, 222, 0.3);
|
||||
}
|
||||
|
||||
/* Yellow things */
|
||||
.pattern-color-beach,
|
||||
@@ -172,6 +194,11 @@ path.fill.tag-landuse-military {
|
||||
border-color: rgb(214, 136, 26);
|
||||
background-color: rgba(214, 136, 26, 0.3);
|
||||
}
|
||||
.pattern-color-landfill
|
||||
{
|
||||
fill: rgba(214, 136, 26, 0.3);
|
||||
}
|
||||
|
||||
|
||||
/* Pink things */
|
||||
path.stroke.tag-landuse-industrial,
|
||||
@@ -190,7 +217,11 @@ path.fill.tag-power-plant {
|
||||
}
|
||||
|
||||
/* Teal things */
|
||||
.pattern-color-wetland {
|
||||
.pattern-color-wetland,
|
||||
.pattern-color-wetland_marsh,
|
||||
.pattern-color-wetland_swamp,
|
||||
.pattern-color-wetland_bog,
|
||||
.pattern-color-wetland_reedbed {
|
||||
fill: rgba(153, 225, 170, 0.3);
|
||||
}
|
||||
path.stroke.tag-natural-wetland {
|
||||
@@ -203,23 +234,27 @@ path.stroke.tag-natural-wetland {
|
||||
|
||||
/* Light Green things */
|
||||
.pattern-color-cemetery,
|
||||
.pattern-color-cemetery_christian,
|
||||
.pattern-color-cemetery_buddhist,
|
||||
.pattern-color-cemetery_muslim,
|
||||
.pattern-color-cemetery_jewish,
|
||||
.pattern-color-orchard,
|
||||
.pattern-color-vineyard,
|
||||
.pattern-color-meadow,
|
||||
.pattern-color-farm,
|
||||
.pattern-color-farmland {
|
||||
fill: rgba(191, 232, 63, 0.2);
|
||||
}
|
||||
path.stroke.tag-landuse-cemetery,
|
||||
path.stroke.tag-landuse-orchard,
|
||||
path.stroke.tag-landuse-vineyard,
|
||||
path.stroke.tag-landuse-meadow,
|
||||
path.stroke.tag-landuse-farm,
|
||||
path.stroke.tag-landuse-farmland {
|
||||
stroke: rgb(191, 232, 63);
|
||||
}
|
||||
.preset-icon-fill-area.tag-landuse-cemetery,
|
||||
.preset-icon-fill-area.tag-landuse-orchard,
|
||||
.preset-icon-fill-area.tag-landuse-vineyard,
|
||||
.preset-icon-fill-area.tag-landuse-meadow,
|
||||
.preset-icon-fill-area.tag-landuse-farm,
|
||||
.preset-icon-fill-area.tag-landuse-farmland {
|
||||
background-color: rgba(191, 232, 63, 0.2);
|
||||
}
|
||||
@@ -236,6 +271,9 @@ path.fill.tag-landuse-farmyard {
|
||||
border-color: rgb(226, 177, 111);
|
||||
background: rgba(245, 220, 186, 0.3);
|
||||
}
|
||||
.pattern-color-farmyard {
|
||||
fill: rgba(245, 220, 186, 0.3);
|
||||
}
|
||||
|
||||
/* Dark Gray things */
|
||||
path.stroke.tag-amenity-parking,
|
||||
@@ -267,6 +305,10 @@ path.fill.tag-landuse-quarry {
|
||||
border-color: rgb(170, 170, 170);
|
||||
background-color: rgba(140, 140, 140, 0.5);
|
||||
}
|
||||
.pattern-color-quarry
|
||||
{
|
||||
fill: rgba(140, 140, 140, 0.5);
|
||||
}
|
||||
|
||||
/* Light gray overrides */
|
||||
path.stroke.tag-natural-cave_entrance,
|
||||
@@ -283,4 +325,3 @@ path.fill.tag-natural-glacier {
|
||||
border-color: rgb(170, 170, 170);
|
||||
background: rgba(170, 170, 170, 0.3);
|
||||
}
|
||||
|
||||
|
||||
@@ -72,8 +72,10 @@ path.stroke.tag-natural-tree_row {
|
||||
|
||||
|
||||
/* barriers */
|
||||
path.stroke.tag-barrier {
|
||||
path.stroke.tag-barrier:not(.tag-barrier-hedge) {
|
||||
stroke: #ddd;
|
||||
}
|
||||
path.stroke.tag-barrier {
|
||||
stroke-width: 3px;
|
||||
stroke-linecap: round;
|
||||
stroke-dasharray: 15, 5, 1, 5;
|
||||
|
||||
@@ -1,12 +1,17 @@
|
||||
/* photo viewer div */
|
||||
#photoviewer {
|
||||
position: absolute;
|
||||
bottom: 30px;
|
||||
bottom: 40px;
|
||||
left: 10px;
|
||||
width: 330px;
|
||||
height: 250px;
|
||||
padding: 5px;
|
||||
background-color: #fff;
|
||||
}
|
||||
[dir='rtl'] #photoviewer {
|
||||
left: auto;
|
||||
right: 10px;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1600px) {
|
||||
#photoviewer {
|
||||
@@ -345,4 +350,3 @@ label.streetside-hires {
|
||||
background: rgba(0,0,0,0.85);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
||||
@@ -27,7 +27,6 @@
|
||||
}
|
||||
|
||||
.fill-wireframe .point,
|
||||
.fill-wireframe .vertex.active,
|
||||
.fill-wireframe .areaicon,
|
||||
.fill-wireframe .areaicon-halo,
|
||||
.fill-wireframe path.casing,
|
||||
|
||||
@@ -118,10 +118,18 @@ en:
|
||||
annotation: Removed a member from a relation.
|
||||
connect:
|
||||
annotation:
|
||||
point: Connected a way to a point.
|
||||
vertex: Connected a way to another.
|
||||
line: Connected a way to a line.
|
||||
area: Connected a way to an area.
|
||||
from_vertex:
|
||||
to_point: Connected a way to a point.
|
||||
to_vertex: Connected a way to another.
|
||||
to_line: Connected a way to a line.
|
||||
to_area: Connected a way to an area.
|
||||
to_adjacent_vertex: Merged adjacent points in a way.
|
||||
to_sibling_vertex: Connected a way to itself.
|
||||
from_point:
|
||||
to_point: Merged a point with another.
|
||||
to_vertex: Merged a point with a point in a way.
|
||||
to_line: Moved a point to a line.
|
||||
to_area: Moved a point to an area.
|
||||
relation: These features can't be connected because they have conflicting relation roles.
|
||||
restriction: "These features can't be connected because it would damage a \"{relation}\" relation."
|
||||
disconnect:
|
||||
@@ -285,7 +293,7 @@ en:
|
||||
browser_notice: "This editor is supported in Firefox, Chrome, Safari, Opera, and Internet Explorer 11 and above. Please upgrade your browser or use Potlatch 2 to edit the map."
|
||||
translate:
|
||||
translate: Translate
|
||||
localized_translation_label: Multilingual name
|
||||
localized_translation_label: Multilingual Name
|
||||
localized_translation_language: Choose language
|
||||
localized_translation_name: Name
|
||||
zoom_in_edit: Zoom in to edit
|
||||
@@ -294,6 +302,9 @@ en:
|
||||
loading_auth: "Connecting to OpenStreetMap..."
|
||||
report_a_bug: Report a bug
|
||||
help_translate: Help translate
|
||||
sidebar:
|
||||
key: '`'
|
||||
tooltip: Toggle the sidebar.
|
||||
feature_info:
|
||||
hidden_warning: "{count} hidden features"
|
||||
hidden_details: "These features are currently hidden: {details}"
|
||||
@@ -1148,6 +1159,7 @@ en:
|
||||
background_switch: "Switch back to last background"
|
||||
map_data: "Show map data options"
|
||||
fullscreen: "Enter full screen mode"
|
||||
sidebar: "Toggle sidebar"
|
||||
wireframe: "Toggle wireframe mode"
|
||||
minimap: "Toggle minimap"
|
||||
selecting:
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
import _values from 'lodash-es/values';
|
||||
|
||||
export { wikipedia as dataWikipedia } from 'wmf-sitematrix';
|
||||
export { default as dataSuggestions } from 'name-suggestion-index/name-suggestions.json';
|
||||
|
||||
export { dataAddressFormats } from './address-formats.json';
|
||||
export { dataDeprecated } from './deprecated.json';
|
||||
|
||||
@@ -1453,6 +1453,9 @@ en:
|
||||
sanitary_dump_station:
|
||||
# sanitary_dump_station=*
|
||||
label: Toilet Disposal
|
||||
scuba_diving:
|
||||
# 'scuba_diving:=*'
|
||||
label: Services
|
||||
seamark/beacon_isolated_danger/shape:
|
||||
# 'seamark:beacon_isolated_danger:shape=*'
|
||||
label: Shape
|
||||
@@ -2328,6 +2331,11 @@ en:
|
||||
name: Dentist
|
||||
# 'terms: tooth,teeth'
|
||||
terms: '<translate with synonyms or related terms for ''Dentist'', separated by commas>'
|
||||
amenity/dive_centre:
|
||||
# amenity=dive_centre
|
||||
name: Dive Center
|
||||
# 'terms: diving,scuba'
|
||||
terms: '<translate with synonyms or related terms for ''Dive Center'', separated by commas>'
|
||||
amenity/doctors:
|
||||
# amenity=doctors
|
||||
name: Doctor
|
||||
@@ -2356,6 +2364,36 @@ en:
|
||||
name: Fast Food
|
||||
# 'terms: restaurant,takeaway'
|
||||
terms: '<translate with synonyms or related terms for ''Fast Food'', separated by commas>'
|
||||
amenity/fast_food/burger:
|
||||
# 'amenity=fast_food, cuisine=burger'
|
||||
name: Burger Fast Food
|
||||
# 'terms: breakfast,dine,dining,dinner,drive-in,eat,grill,lunch,table'
|
||||
terms: '<translate with synonyms or related terms for ''Burger Fast Food'', separated by commas>'
|
||||
amenity/fast_food/chicken:
|
||||
# 'amenity=fast_food, cuisine=chicken'
|
||||
name: Chicken Fast Food
|
||||
# 'terms: breakfast,canteen,dine,dining,dinner,drive-in,eat,grill,lunch,table'
|
||||
terms: '<translate with synonyms or related terms for ''Chicken Fast Food'', separated by commas>'
|
||||
amenity/fast_food/fish_and_chips:
|
||||
# 'amenity=fast_food, cuisine=fish_and_chips'
|
||||
name: Fish & Chips Fast Food
|
||||
# 'terms: breakfast,cafe,café,dine,dining,dinner,drive-in,eat,grill,lunch,table,french fries'
|
||||
terms: '<translate with synonyms or related terms for ''Fish & Chips Fast Food'', separated by commas>'
|
||||
amenity/fast_food/kebab:
|
||||
# 'amenity=fast_food, cuisine=kebab'
|
||||
name: Kebab Fast Food
|
||||
# 'terms: bar,breakfast,cafe,café,canteen,dine,dining,dinner,drive-in,eat,grill,lunch,table'
|
||||
terms: '<translate with synonyms or related terms for ''Kebab Fast Food'', separated by commas>'
|
||||
amenity/fast_food/pizza:
|
||||
# 'amenity=fast_food, cuisine=pizza'
|
||||
name: Pizza Fast Food
|
||||
# 'terms: dine,dining,dinner,drive-in,eat,lunch,table,deep dish,thin crust,slice'
|
||||
terms: '<translate with synonyms or related terms for ''Pizza Fast Food'', separated by commas>'
|
||||
amenity/fast_food/sandwich:
|
||||
# 'amenity=fast_food, cuisine=sandwich'
|
||||
name: Sandwich Fast Food
|
||||
# 'terms: breakfast,cafe,café,dine,dining,dinner,drive-in,eat,grill,lunch,table'
|
||||
terms: '<translate with synonyms or related terms for ''Sandwich Fast Food'', separated by commas>'
|
||||
amenity/ferry_terminal:
|
||||
# amenity=ferry_terminal
|
||||
name: Ferry Station / Terminal
|
||||
@@ -2434,6 +2472,11 @@ en:
|
||||
name: Monastery Grounds
|
||||
# 'terms: abbey,basilica,bethel,cathedral,chancel,chantry,chapel,church,fold,house of God,house of prayer,house of worship,minster,mission,monastery,mosque,oratory,parish,sacellum,sanctuary,shrine,synagogue,tabernacle,temple'
|
||||
terms: '<translate with synonyms or related terms for ''Monastery Grounds'', separated by commas>'
|
||||
amenity/money_transfer:
|
||||
# amenity=money_transfer
|
||||
name: Money Transfer Station
|
||||
# 'terms: money order,check,bill,currency,finance,wire transfer,cable,person to person,cash to cash,exchange'
|
||||
terms: '<translate with synonyms or related terms for ''Money Transfer Station'', separated by commas>'
|
||||
amenity/motorcycle_parking:
|
||||
# amenity=motorcycle_parking
|
||||
name: Motorcycle Parking
|
||||
@@ -2454,7 +2497,7 @@ en:
|
||||
amenity/parking:
|
||||
# amenity=parking
|
||||
name: Parking Lot
|
||||
# 'terms: car,parking lot'
|
||||
# 'terms: automobile parking,car lot,car parking,rv parking,truck parking,vehicle parking'
|
||||
terms: '<translate with synonyms or related terms for ''Parking Lot'', separated by commas>'
|
||||
amenity/parking/multi-storey:
|
||||
# 'amenity=parking, parking=multi-storey'
|
||||
@@ -2469,6 +2512,16 @@ en:
|
||||
# amenity=parking_space
|
||||
name: Parking Space
|
||||
terms: '<translate with synonyms or related terms for ''Parking Space'', separated by commas>'
|
||||
amenity/payment_centre:
|
||||
# amenity=payment_centre
|
||||
name: Payment Center
|
||||
# 'terms: check,tax pay,bill pay,currency,finance,cash,money'
|
||||
terms: '<translate with synonyms or related terms for ''Payment Center'', separated by commas>'
|
||||
amenity/payment_terminal:
|
||||
# amenity=payment_terminal
|
||||
name: Payment Terminal
|
||||
# 'terms: interactive kiosk,ekiosk,atm,bill pay,tax pay,phone pay,finance,cash,money transfer,card'
|
||||
terms: '<translate with synonyms or related terms for ''Payment Terminal'', separated by commas>'
|
||||
amenity/pharmacy:
|
||||
# amenity=pharmacy
|
||||
name: Pharmacy
|
||||
@@ -2585,6 +2638,96 @@ en:
|
||||
name: Restaurant
|
||||
# 'terms: bar,breakfast,cafe,café,canteen,coffee,dine,dining,dinner,drive-in,eat,grill,lunch,table'
|
||||
terms: '<translate with synonyms or related terms for ''Restaurant'', separated by commas>'
|
||||
amenity/restaurant/american:
|
||||
# 'amenity=restaurant, cuisine=american'
|
||||
name: American Restaurant
|
||||
# 'terms: bar,breakfast,cafe,café,canteen,coffee,dine,dining,dinner,drive-in,eat,grill,lunch,table'
|
||||
terms: '<translate with synonyms or related terms for ''American Restaurant'', separated by commas>'
|
||||
amenity/restaurant/asian:
|
||||
# 'amenity=restaurant, cuisine=asian'
|
||||
name: Asian Restaurant
|
||||
# 'terms: bar,breakfast,cafe,café,canteen,dine,dining,dinner,drive-in,eat,grill,lunch,table'
|
||||
terms: '<translate with synonyms or related terms for ''Asian Restaurant'', separated by commas>'
|
||||
amenity/restaurant/chinese:
|
||||
# 'amenity=restaurant, cuisine=chinese'
|
||||
name: Chinese Restaurant
|
||||
# 'terms: bar,breakfast,cafe,café,canteen,dine,dining,dinner,drive-in,eat,grill,lunch,table'
|
||||
terms: '<translate with synonyms or related terms for ''Chinese Restaurant'', separated by commas>'
|
||||
amenity/restaurant/french:
|
||||
# 'amenity=restaurant, cuisine=french'
|
||||
name: French Restaurant
|
||||
# 'terms: bar,breakfast,cafe,café,canteen,dine,dining,dinner,drive-in,eat,grill,lunch,table'
|
||||
terms: '<translate with synonyms or related terms for ''French Restaurant'', separated by commas>'
|
||||
amenity/restaurant/german:
|
||||
# 'amenity=restaurant, cuisine=german'
|
||||
name: German Restaurant
|
||||
# 'terms: bar,breakfast,cafe,café,canteen,dine,dining,dinner,drive-in,eat,grill,lunch,table'
|
||||
terms: '<translate with synonyms or related terms for ''German Restaurant'', separated by commas>'
|
||||
amenity/restaurant/greek:
|
||||
# 'amenity=restaurant, cuisine=greek'
|
||||
name: Greek Restaurant
|
||||
# 'terms: bar,breakfast,cafe,café,canteen,dine,dining,dinner,drive-in,eat,grill,lunch,table,gyros,pitas,olives'
|
||||
terms: '<translate with synonyms or related terms for ''Greek Restaurant'', separated by commas>'
|
||||
amenity/restaurant/indian:
|
||||
# 'amenity=restaurant, cuisine=indian'
|
||||
name: Indian Restaurant
|
||||
# 'terms: bar,breakfast,dine,dining,dinner,drive-in,eat,grill,lunch,table,curry'
|
||||
terms: '<translate with synonyms or related terms for ''Indian Restaurant'', separated by commas>'
|
||||
amenity/restaurant/italian:
|
||||
# 'amenity=restaurant, cuisine=italian'
|
||||
name: Italian Restaurant
|
||||
# 'terms: bar,breakfast,cafe,café,canteen,dine,dining,dinner,drive-in,eat,grill,lunch,table,pasta,pizza'
|
||||
terms: '<translate with synonyms or related terms for ''Italian Restaurant'', separated by commas>'
|
||||
amenity/restaurant/japanese:
|
||||
# 'amenity=restaurant, cuisine=japanese'
|
||||
name: Japanese Restaurant
|
||||
# 'terms: bar,breakfast,cafe,café,canteen,dine,dining,dinner,drive-in,eat,grill,lunch,table'
|
||||
terms: '<translate with synonyms or related terms for ''Japanese Restaurant'', separated by commas>'
|
||||
amenity/restaurant/mexican:
|
||||
# 'amenity=restaurant, cuisine=mexican'
|
||||
name: Mexican Restaurant
|
||||
# 'terms: bar,breakfast,dine,dining,dinner,drive-in,eat,grill,lunch,table,tacos,burritos,enchiladas,fajitas,nachos,tortillas,salsa,tamales,quesadillas'
|
||||
terms: '<translate with synonyms or related terms for ''Mexican Restaurant'', separated by commas>'
|
||||
amenity/restaurant/noodle:
|
||||
# 'amenity=restaurant, cuisine=noodle'
|
||||
name: Noodle Restaurant
|
||||
# 'terms: bar,breakfast,cafe,café,canteen,dine,dining,dinner,drive-in,eat,grill,lunch,table,ramen noodles,soup,soba noodles,cellophane noodles,rice noodles'
|
||||
terms: '<translate with synonyms or related terms for ''Noodle Restaurant'', separated by commas>'
|
||||
amenity/restaurant/pizza:
|
||||
# 'amenity=restaurant, cuisine=pizza'
|
||||
name: Pizza Restaurant
|
||||
# 'terms: bar,dine,dining,dinner,drive-in,eat,lunch,table,deep dish,thin crust,slice'
|
||||
terms: '<translate with synonyms or related terms for ''Pizza Restaurant'', separated by commas>'
|
||||
amenity/restaurant/seafood:
|
||||
# 'amenity=restaurant, cuisine=seafood'
|
||||
name: Seafood Restaurant
|
||||
# 'terms: bar,breakfast,cafe,café,dine,dining,dinner,drive-in,eat,grill,lunch,table,fish,shellfish,molluscs,crustaceans,clams,oysters,lobsters,crab,shrimp,squid,octopus'
|
||||
terms: '<translate with synonyms or related terms for ''Seafood Restaurant'', separated by commas>'
|
||||
amenity/restaurant/steakhouse:
|
||||
# 'amenity=restaurant, cuisine=steak_house'
|
||||
name: Steakhouse
|
||||
# 'terms: bar,breakfast,cafe,café,canteen,dine,dining,dinner,drive-in,eat,grill,lunch,table,steak house,chop house,beef'
|
||||
terms: '<translate with synonyms or related terms for ''Steakhouse'', separated by commas>'
|
||||
amenity/restaurant/sushi:
|
||||
# 'amenity=restaurant, cuisine=sushi'
|
||||
name: Sushi Restaurant
|
||||
# 'terms: bar,breakfast,cafe,café,canteen,dine,dining,dinner,drive-in,eat,grill,lunch,table'
|
||||
terms: '<translate with synonyms or related terms for ''Sushi Restaurant'', separated by commas>'
|
||||
amenity/restaurant/thai:
|
||||
# 'amenity=restaurant, cuisine=thai'
|
||||
name: Thai Restaurant
|
||||
# 'terms: bar,breakfast,cafe,café,canteen,dine,dining,dinner,drive-in,eat,grill,lunch,table'
|
||||
terms: '<translate with synonyms or related terms for ''Thai Restaurant'', separated by commas>'
|
||||
amenity/restaurant/turkish:
|
||||
# 'amenity=restaurant, cuisine=turkish'
|
||||
name: Turkish Restaurant
|
||||
# 'terms: bar,breakfast,cafe,café,canteen,dine,dining,dinner,drive-in,eat,grill,lunch,table'
|
||||
terms: '<translate with synonyms or related terms for ''Turkish Restaurant'', separated by commas>'
|
||||
amenity/restaurant/vietnamese:
|
||||
# 'amenity=restaurant, cuisine=vietnamese'
|
||||
name: Vietnamese Restaurant
|
||||
# 'terms: bar,breakfast,cafe,café,canteen,dine,dining,dinner,drive-in,eat,grill,lunch,table'
|
||||
terms: '<translate with synonyms or related terms for ''Vietnamese Restaurant'', separated by commas>'
|
||||
amenity/sanitary_dump_station:
|
||||
# amenity=sanitary_dump_station
|
||||
name: RV Toilet Disposal
|
||||
@@ -2696,6 +2839,11 @@ en:
|
||||
name: University Grounds
|
||||
# 'terms: college'
|
||||
terms: '<translate with synonyms or related terms for ''University Grounds'', separated by commas>'
|
||||
amenity/vehicle_inspection:
|
||||
# amenity=vehicle_inspection
|
||||
name: Vehicle Inspection
|
||||
# 'terms: car inspection'
|
||||
terms: '<translate with synonyms or related terms for ''Vehicle Inspection'', separated by commas>'
|
||||
amenity/vending_machine:
|
||||
# amenity=vending_machine
|
||||
name: Vending Machine
|
||||
@@ -3435,7 +3583,6 @@ en:
|
||||
embankment:
|
||||
# embankment=yes
|
||||
name: Embankment
|
||||
terms: '<translate with synonyms or related terms for ''Embankment'', separated by commas>'
|
||||
emergency/ambulance_station:
|
||||
# emergency=ambulance_station
|
||||
name: Ambulance Station
|
||||
@@ -4246,6 +4393,11 @@ en:
|
||||
name: Firepit
|
||||
# 'terms: fireplace,campfire'
|
||||
terms: '<translate with synonyms or related terms for ''Firepit'', separated by commas>'
|
||||
leisure/fishing:
|
||||
# leisure=fishing
|
||||
name: Fishing Spot
|
||||
# 'terms: angler'
|
||||
terms: '<translate with synonyms or related terms for ''Fishing Spot'', separated by commas>'
|
||||
leisure/fitness_centre:
|
||||
# leisure=fitness_centre
|
||||
name: Gym / Fitness Center
|
||||
@@ -4470,7 +4622,7 @@ en:
|
||||
leisure/slipway:
|
||||
# leisure=slipway
|
||||
name: Slipway
|
||||
# 'terms: boat launch,boat ramp'
|
||||
# 'terms: boat launch,boat ramp,boat landing'
|
||||
terms: '<translate with synonyms or related terms for ''Slipway'', separated by commas>'
|
||||
leisure/sports_centre:
|
||||
# leisure=sports_centre
|
||||
@@ -4550,6 +4702,7 @@ en:
|
||||
man_made/embankment:
|
||||
# man_made=embankment
|
||||
name: Embankment
|
||||
terms: '<translate with synonyms or related terms for ''Embankment'', separated by commas>'
|
||||
man_made/flagpole:
|
||||
# man_made=flagpole
|
||||
name: Flagpole
|
||||
@@ -4572,16 +4725,31 @@ en:
|
||||
name: Mast
|
||||
# 'terms: antenna,broadcast tower,cell phone tower,cell tower,communication mast,communication tower,guyed tower,mobile phone tower,radio mast,radio tower,television tower,transmission mast,transmission tower,tv tower'
|
||||
terms: '<translate with synonyms or related terms for ''Mast'', separated by commas>'
|
||||
man_made/mast/communication:
|
||||
# 'man_made=mast, tower:type=communication'
|
||||
name: Communication Mast
|
||||
# 'terms: antenna,broadcast tower,cell phone tower,cell tower,communication mast,communication tower,guyed tower,mobile phone tower,radio mast,radio tower,television tower,transmission mast,transmission tower,tv tower'
|
||||
terms: '<translate with synonyms or related terms for ''Communication Mast'', separated by commas>'
|
||||
man_made/mast/communication/mobile_phone:
|
||||
# 'man_made=mast, tower:type=communication, communication:mobile_phone=yes'
|
||||
name: Mobile Phone Mast
|
||||
# 'terms: antenna,cell mast,cell phone mast,cell phone tower,cell tower,communication mast,communication tower,guyed tower,mobile phone tower,transmission mast,transmission tower'
|
||||
terms: '<translate with synonyms or related terms for ''Mobile Phone Mast'', separated by commas>'
|
||||
man_made/mast/communication/radio:
|
||||
# 'man_made=mast, tower:type=communication, communication:radio=yes'
|
||||
name: Radio Broadcast Mast
|
||||
# 'terms: antenna,broadcast tower,communication mast,communication tower,guyed tower,radio mast,radio tower,transmission mast,transmission tower'
|
||||
terms: '<translate with synonyms or related terms for ''Radio Broadcast Mast'', separated by commas>'
|
||||
man_made/mast/communication/television:
|
||||
# 'man_made=mast, tower:type=communication, communication:television=yes'
|
||||
name: Television Broadcast Mast
|
||||
# 'terms: antenna,broadcast tower,communication mast,communication tower,guyed tower,television mast,television tower,transmission mast,transmission tower,tv mast,tv tower'
|
||||
terms: '<translate with synonyms or related terms for ''Television Broadcast Mast'', separated by commas>'
|
||||
man_made/monitoring_station:
|
||||
# man_made=monitoring_station
|
||||
name: Monitoring Station
|
||||
# 'terms: weather,earthquake,seismology,air,gps'
|
||||
terms: '<translate with synonyms or related terms for ''Monitoring Station'', separated by commas>'
|
||||
man_made/observation:
|
||||
# 'man_made=tower, tower:type=observation'
|
||||
name: Observation Tower
|
||||
# 'terms: lookout tower,fire tower'
|
||||
terms: '<translate with synonyms or related terms for ''Observation Tower'', separated by commas>'
|
||||
man_made/observatory:
|
||||
# man_made=observatory
|
||||
name: Observatory
|
||||
@@ -4621,7 +4789,7 @@ en:
|
||||
name: Surveillance
|
||||
# 'terms: anpr,alpr,camera,car plate recognition,cctv,guard,license plate recognition,monitoring,number plate recognition,security,video,webcam'
|
||||
terms: '<translate with synonyms or related terms for ''Surveillance'', separated by commas>'
|
||||
man_made/surveillance_camera:
|
||||
man_made/surveillance/camera:
|
||||
# 'man_made=surveillance, surveillance:type=camera'
|
||||
name: Surveillance Camera
|
||||
# 'terms: anpr,alpr,camera,car plate recognition,cctv,guard,license plate recognition,monitoring,number plate recognition,security,video,webcam'
|
||||
@@ -4635,6 +4803,16 @@ en:
|
||||
# man_made=tower
|
||||
name: Tower
|
||||
terms: '<translate with synonyms or related terms for ''Tower'', separated by commas>'
|
||||
man_made/tower/communication:
|
||||
# 'man_made=tower, tower:type=communication'
|
||||
name: Communication Tower
|
||||
# 'terms: antenna,broadcast tower,cell phone tower,cell tower,communication mast,communication tower,guyed tower,mobile phone tower,radio mast,radio tower,television tower,transmission mast,transmission tower,tv tower'
|
||||
terms: '<translate with synonyms or related terms for ''Communication Tower'', separated by commas>'
|
||||
man_made/tower/observation:
|
||||
# 'man_made=tower, tower:type=observation'
|
||||
name: Observation Tower
|
||||
# 'terms: lookout tower,fire tower'
|
||||
terms: '<translate with synonyms or related terms for ''Observation Tower'', separated by commas>'
|
||||
man_made/wastewater_plant:
|
||||
# man_made=wastewater_plant
|
||||
name: Wastewater Plant
|
||||
@@ -4967,6 +5145,10 @@ en:
|
||||
name: Quasi-NGO Office
|
||||
# 'terms: ngo,non government,non-government,organization,organisation,quasi autonomous,quasi-autonomous'
|
||||
terms: '<translate with synonyms or related terms for ''Quasi-NGO Office'', separated by commas>'
|
||||
office/religion:
|
||||
# office=religion
|
||||
name: Religious Office
|
||||
terms: '<translate with synonyms or related terms for ''Religious Office'', separated by commas>'
|
||||
office/research:
|
||||
# office=research
|
||||
name: Research Office
|
||||
@@ -5710,6 +5892,10 @@ en:
|
||||
name: Carpet Store
|
||||
# 'terms: rug'
|
||||
terms: '<translate with synonyms or related terms for ''Carpet Store'', separated by commas>'
|
||||
shop/catalogue:
|
||||
# shop=catalogue
|
||||
name: Catalog Shop
|
||||
terms: '<translate with synonyms or related terms for ''Catalog Shop'', separated by commas>'
|
||||
shop/charity:
|
||||
# shop=charity
|
||||
name: Charity Store
|
||||
@@ -5757,6 +5943,10 @@ en:
|
||||
# shop=cosmetics
|
||||
name: Cosmetics Store
|
||||
terms: '<translate with synonyms or related terms for ''Cosmetics Store'', separated by commas>'
|
||||
shop/country_store:
|
||||
# shop=country_store
|
||||
name: Country Store
|
||||
terms: '<translate with synonyms or related terms for ''Country Store'', separated by commas>'
|
||||
shop/craft:
|
||||
# shop=craft
|
||||
name: Arts and Crafts Store
|
||||
@@ -5869,6 +6059,11 @@ en:
|
||||
name: Hairdresser
|
||||
# 'terms: barber'
|
||||
terms: '<translate with synonyms or related terms for ''Hairdresser'', separated by commas>'
|
||||
shop/hairdresser_supply:
|
||||
# shop=hairdresser_supply
|
||||
name: Hairdresser Supply Store
|
||||
# 'terms: barber,shampoo,conditioner'
|
||||
terms: '<translate with synonyms or related terms for ''Hairdresser Supply Store'', separated by commas>'
|
||||
shop/hardware:
|
||||
# shop=hardware
|
||||
name: Hardware Store
|
||||
@@ -5997,6 +6192,11 @@ en:
|
||||
# shop=paint
|
||||
name: Paint Store
|
||||
terms: '<translate with synonyms or related terms for ''Paint Store'', separated by commas>'
|
||||
shop/party:
|
||||
# shop=party
|
||||
name: Party Supply Store
|
||||
# 'terms: balloons,costumes,decorations,invitations'
|
||||
terms: '<translate with synonyms or related terms for ''Party Supply Store'', separated by commas>'
|
||||
shop/pastry:
|
||||
# shop=pastry
|
||||
name: Pastry Shop
|
||||
@@ -6040,6 +6240,7 @@ en:
|
||||
shop/scuba_diving:
|
||||
# shop=scuba_diving
|
||||
name: Scuba Diving Shop
|
||||
# 'terms: diving,scuba'
|
||||
terms: '<translate with synonyms or related terms for ''Scuba Diving Shop'', separated by commas>'
|
||||
shop/seafood:
|
||||
# shop=seafood
|
||||
|
||||
@@ -249,6 +249,7 @@
|
||||
"route": {"key": "route", "type": "combo", "label": "Type"},
|
||||
"sac_scale": {"key": "sac_scale", "type": "combo", "label": "Hiking Difficulty", "placeholder": "Mountain Hiking, Alpine Hiking...", "strings": {"options": {"hiking": "T1: Hiking", "mountain_hiking": "T2: Mountain Hiking", "demanding_mountain_hiking": "T3: Demanding Mountain Hiking", "alpine_hiking": "T4: Alpine Hiking", "demanding_alpine_hiking": "T5: Demanding Alpine Hiking", "difficult_alpine_hiking": "T6: Difficult Alpine Hiking"}}},
|
||||
"sanitary_dump_station": {"key": "sanitary_dump_station", "type": "check", "label": "Toilet Disposal"},
|
||||
"scuba_diving": {"key": "scuba_diving:", "type": "multiCombo", "label": "Services", "options": ["repair", "courses", "rental", "filling", "air_filling", "nitrox_filling", "trimix_filling", "oxygen_filling"]},
|
||||
"seamark/beacon_isolated_danger/shape": {"key": "seamark:beacon_isolated_danger:shape", "type": "combo", "label": "Shape"},
|
||||
"seamark/beacon_lateral/category": {"key": "seamark:beacon_lateral:category", "type": "combo", "label": "Category", "strings": {"options": {"port": "Port", "starboard": "Starboard", "waterway_left": "Waterway Left", "waterway_right": "Waterway Right", "danger_left": "Danger Left", "danger_right": "Danger Right"}}},
|
||||
"seamark/beacon_lateral/colour": {"key": "seamark:beacon_lateral:colour", "type": "combo", "label": "Color", "strings": {"options": {"red": "Red", "green": "Green", "grey": "Grey"}}},
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"key": "scuba_diving:",
|
||||
"type": "multiCombo",
|
||||
"label": "Services",
|
||||
"options": [
|
||||
"repair",
|
||||
"courses",
|
||||
"rental",
|
||||
"filling",
|
||||
"air_filling",
|
||||
"nitrox_filling",
|
||||
"trimix_filling",
|
||||
"oxygen_filling"
|
||||
]
|
||||
}
|
||||
@@ -6,5 +6,6 @@
|
||||
"embankment": "yes"
|
||||
},
|
||||
"name": "Embankment",
|
||||
"matchScore": 0.2
|
||||
"matchScore": 0.2,
|
||||
"searchable": false
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-car",
|
||||
"icon": "maki-car-rental",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "temaki-dice",
|
||||
"icon": "maki-casino",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"icon": "maki-swimming",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"payment_multi",
|
||||
"scuba_diving"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"diving",
|
||||
"scuba"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "dive_centre"
|
||||
},
|
||||
"name": "Dive Center"
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"icon": "maki-fast-food",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"operator",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"drive_through",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"breakfast",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "fast_food",
|
||||
"cuisine": "burger"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "burger"
|
||||
},
|
||||
"name": "Burger Fast Food"
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"icon": "fas-drumstick-bite",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"operator",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"drive_through",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"breakfast",
|
||||
"canteen",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "fast_food",
|
||||
"cuisine": "chicken"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "chicken"
|
||||
},
|
||||
"name": "Chicken Fast Food"
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"icon": "fas-fish",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"operator",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"drive_through",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"breakfast",
|
||||
"cafe",
|
||||
"café",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table",
|
||||
"french fries"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "fast_food",
|
||||
"cuisine": "fish_and_chips"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "fish_and_chips"
|
||||
},
|
||||
"name": "Fish & Chips Fast Food"
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"icon": "maki-restaurant",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"operator",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"drive_through",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bar",
|
||||
"breakfast",
|
||||
"cafe",
|
||||
"café",
|
||||
"canteen",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "fast_food",
|
||||
"cuisine": "kebab"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "kebab"
|
||||
},
|
||||
"name": "Kebab Fast Food"
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"icon": "maki-restaurant-pizza",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"operator",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"drive_through",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"lunch",
|
||||
"table",
|
||||
"deep dish",
|
||||
"thin crust",
|
||||
"slice"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "fast_food",
|
||||
"cuisine": "pizza"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "pizza"
|
||||
},
|
||||
"name": "Pizza Fast Food"
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"icon": "maki-restaurant",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"operator",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"drive_through",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"breakfast",
|
||||
"cafe",
|
||||
"café",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "fast_food",
|
||||
"cuisine": "sandwich"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "sandwich"
|
||||
},
|
||||
"name": "Sandwich Fast Food"
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"icon": "maki-bank",
|
||||
"fields": [
|
||||
"name",
|
||||
"brand",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"currency_multi"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"money order",
|
||||
"check",
|
||||
"bill",
|
||||
"currency",
|
||||
"finance",
|
||||
"wire transfer",
|
||||
"cable",
|
||||
"person to person",
|
||||
"cash to cash",
|
||||
"exchange"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "money_transfer"
|
||||
},
|
||||
"name": "Money Transfer Station"
|
||||
}
|
||||
@@ -21,8 +21,12 @@
|
||||
"amenity": "parking"
|
||||
},
|
||||
"terms": [
|
||||
"car",
|
||||
"parking lot"
|
||||
"automobile parking",
|
||||
"car lot",
|
||||
"car parking",
|
||||
"rv parking",
|
||||
"truck parking",
|
||||
"vehicle parking"
|
||||
],
|
||||
"name": "Parking Lot"
|
||||
}
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"icon": "maki-bank",
|
||||
"fields": [
|
||||
"name",
|
||||
"brand",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"payment_multi"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"check",
|
||||
"tax pay",
|
||||
"bill pay",
|
||||
"currency",
|
||||
"finance",
|
||||
"cash",
|
||||
"money"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "payment_centre"
|
||||
},
|
||||
"name": "Payment Center"
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"icon": "maki-bank",
|
||||
"fields": [
|
||||
"name",
|
||||
"brand",
|
||||
"address",
|
||||
"opening_hours",
|
||||
"payment_multi"
|
||||
],
|
||||
"geometry": [
|
||||
"point"
|
||||
],
|
||||
"terms": [
|
||||
"interactive kiosk",
|
||||
"ekiosk",
|
||||
"atm",
|
||||
"bill pay",
|
||||
"tax pay",
|
||||
"phone pay",
|
||||
"finance",
|
||||
"cash",
|
||||
"money transfer",
|
||||
"card"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "payment_terminal"
|
||||
},
|
||||
"name": "Payment Terminal"
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-buddhism",
|
||||
"icon": "maki-religious-buddhist",
|
||||
"fields": [
|
||||
"name",
|
||||
"denomination",
|
||||
|
||||
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"icon": "maki-restaurant",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"capacity",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bar",
|
||||
"breakfast",
|
||||
"cafe",
|
||||
"café",
|
||||
"canteen",
|
||||
"coffee",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "restaurant",
|
||||
"cuisine": "american"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "american"
|
||||
},
|
||||
"name": "American Restaurant"
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"icon": "maki-restaurant-noodle",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"capacity",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bar",
|
||||
"breakfast",
|
||||
"cafe",
|
||||
"café",
|
||||
"canteen",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "restaurant",
|
||||
"cuisine": "asian"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "asian"
|
||||
},
|
||||
"name": "Asian Restaurant"
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"icon": "maki-restaurant-noodle",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"capacity",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bar",
|
||||
"breakfast",
|
||||
"cafe",
|
||||
"café",
|
||||
"canteen",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "restaurant",
|
||||
"cuisine": "chinese"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "chinese"
|
||||
},
|
||||
"name": "Chinese Restaurant"
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"icon": "maki-restaurant",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"capacity",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bar",
|
||||
"breakfast",
|
||||
"cafe",
|
||||
"café",
|
||||
"canteen",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "restaurant",
|
||||
"cuisine": "french"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "french"
|
||||
},
|
||||
"name": "French Restaurant"
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"icon": "maki-restaurant",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"capacity",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bar",
|
||||
"breakfast",
|
||||
"cafe",
|
||||
"café",
|
||||
"canteen",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "restaurant",
|
||||
"cuisine": "german"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "german"
|
||||
},
|
||||
"name": "German Restaurant"
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"icon": "maki-restaurant",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"capacity",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bar",
|
||||
"breakfast",
|
||||
"cafe",
|
||||
"café",
|
||||
"canteen",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table",
|
||||
"gyros",
|
||||
"pitas",
|
||||
"olives"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "restaurant",
|
||||
"cuisine": "greek"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "greek"
|
||||
},
|
||||
"name": "Greek Restaurant"
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"icon": "maki-restaurant",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"capacity",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bar",
|
||||
"breakfast",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table",
|
||||
"curry"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "restaurant",
|
||||
"cuisine": "indian"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "indian"
|
||||
},
|
||||
"name": "Indian Restaurant"
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"icon": "maki-restaurant",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"capacity",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bar",
|
||||
"breakfast",
|
||||
"cafe",
|
||||
"café",
|
||||
"canteen",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table",
|
||||
"pasta",
|
||||
"pizza"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "restaurant",
|
||||
"cuisine": "italian"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "italian"
|
||||
},
|
||||
"name": "Italian Restaurant"
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"icon": "maki-restaurant-noodle",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"capacity",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bar",
|
||||
"breakfast",
|
||||
"cafe",
|
||||
"café",
|
||||
"canteen",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "restaurant",
|
||||
"cuisine": "japanese"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "japanese"
|
||||
},
|
||||
"name": "Japanese Restaurant"
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"icon": "maki-restaurant",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"capacity",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bar",
|
||||
"breakfast",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table",
|
||||
"tacos",
|
||||
"burritos",
|
||||
"enchiladas",
|
||||
"fajitas",
|
||||
"nachos",
|
||||
"tortillas",
|
||||
"salsa",
|
||||
"tamales",
|
||||
"quesadillas"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "restaurant",
|
||||
"cuisine": "mexican"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "mexican"
|
||||
},
|
||||
"name": "Mexican Restaurant"
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
{
|
||||
"icon": "maki-restaurant-noodle",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"capacity",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bar",
|
||||
"breakfast",
|
||||
"cafe",
|
||||
"café",
|
||||
"canteen",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table",
|
||||
"ramen noodles",
|
||||
"soup",
|
||||
"soba noodles",
|
||||
"cellophane noodles",
|
||||
"rice noodles"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "restaurant",
|
||||
"cuisine": "noodle"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "noodle"
|
||||
},
|
||||
"name": "Noodle Restaurant"
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"icon": "maki-restaurant-pizza",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"capacity",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bar",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"lunch",
|
||||
"table",
|
||||
"deep dish",
|
||||
"thin crust",
|
||||
"slice"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "restaurant",
|
||||
"cuisine": "pizza"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "pizza"
|
||||
},
|
||||
"name": "Pizza Restaurant"
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"icon": "maki-restaurant-seafood",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"capacity",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bar",
|
||||
"breakfast",
|
||||
"cafe",
|
||||
"café",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table",
|
||||
"fish",
|
||||
"shellfish",
|
||||
"molluscs",
|
||||
"crustaceans",
|
||||
"clams",
|
||||
"oysters",
|
||||
"lobsters",
|
||||
"crab",
|
||||
"shrimp",
|
||||
"squid",
|
||||
"octopus"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "restaurant",
|
||||
"cuisine": "seafood"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "seafood"
|
||||
},
|
||||
"name": "Seafood Restaurant"
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"icon": "maki-slaughterhouse",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"capacity",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bar",
|
||||
"breakfast",
|
||||
"cafe",
|
||||
"café",
|
||||
"canteen",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table",
|
||||
"steak house",
|
||||
"chop house",
|
||||
"beef"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "restaurant",
|
||||
"cuisine": "steak_house"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "steak_house"
|
||||
},
|
||||
"name": "Steakhouse"
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"icon": "fas-fish",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"capacity",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bar",
|
||||
"breakfast",
|
||||
"cafe",
|
||||
"café",
|
||||
"canteen",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "restaurant",
|
||||
"cuisine": "sushi"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "sushi"
|
||||
},
|
||||
"name": "Sushi Restaurant"
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"icon": "maki-restaurant-noodle",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"capacity",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bar",
|
||||
"breakfast",
|
||||
"cafe",
|
||||
"café",
|
||||
"canteen",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "restaurant",
|
||||
"cuisine": "thai"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "thai"
|
||||
},
|
||||
"name": "Thai Restaurant"
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"icon": "maki-restaurant",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"capacity",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bar",
|
||||
"breakfast",
|
||||
"cafe",
|
||||
"café",
|
||||
"canteen",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "restaurant",
|
||||
"cuisine": "turkish"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "turkish"
|
||||
},
|
||||
"name": "Turkish Restaurant"
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"icon": "maki-restaurant-noodle",
|
||||
"fields": [
|
||||
"name",
|
||||
"cuisine",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"capacity",
|
||||
"takeaway",
|
||||
"delivery",
|
||||
"smoking",
|
||||
"outdoor_seating"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bar",
|
||||
"breakfast",
|
||||
"cafe",
|
||||
"café",
|
||||
"canteen",
|
||||
"dine",
|
||||
"dining",
|
||||
"dinner",
|
||||
"drive-in",
|
||||
"eat",
|
||||
"grill",
|
||||
"lunch",
|
||||
"table"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "restaurant",
|
||||
"cuisine": "vietnamese"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cuisine",
|
||||
"value": "vietnamese"
|
||||
},
|
||||
"name": "Vietnamese Restaurant"
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"icon": "maki-car",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"car inspection"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "vehicle_inspection"
|
||||
},
|
||||
"name": "Vehicle Inspection"
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-bakery",
|
||||
"icon": "maki-confectionary",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "temaki-tools",
|
||||
"icon": "maki-shoe",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "temaki-clock",
|
||||
"icon": "maki-watch",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "temaki-dice",
|
||||
"icon": "maki-casino",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "temaki-beach",
|
||||
"icon": "maki-beach",
|
||||
"fields": [
|
||||
"name",
|
||||
"address",
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"icon": "fas-fish",
|
||||
"fields": [
|
||||
"name",
|
||||
"access_simple"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"leisure": "fishing"
|
||||
},
|
||||
"terms": [
|
||||
"angler"
|
||||
],
|
||||
"name": "Fishing Spot"
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-basketball",
|
||||
"icon": "maki-volleyball",
|
||||
"fields": [
|
||||
"name",
|
||||
"surface",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-pitch",
|
||||
"icon": "maki-skateboard",
|
||||
"fields": [
|
||||
"name",
|
||||
"surface",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-basketball",
|
||||
"icon": "maki-volleyball",
|
||||
"fields": [
|
||||
"name",
|
||||
"surface",
|
||||
|
||||
@@ -1,15 +1,19 @@
|
||||
{
|
||||
"icon": "temaki-beach",
|
||||
"icon": "maki-slipway",
|
||||
"fields": [
|
||||
"access_simple"
|
||||
"name",
|
||||
"access_simple",
|
||||
"fee"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"line"
|
||||
],
|
||||
"terms": [
|
||||
"boat launch",
|
||||
"boat ramp"
|
||||
"boat ramp",
|
||||
"boat landing"
|
||||
],
|
||||
"tags": {
|
||||
"leisure": "slipway"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "fas-archway",
|
||||
"icon": "maki-bridge",
|
||||
"fields": [
|
||||
"name",
|
||||
"bridge",
|
||||
|
||||
@@ -5,6 +5,5 @@
|
||||
"tags": {
|
||||
"man_made": "embankment"
|
||||
},
|
||||
"name": "Embankment",
|
||||
"searchable": false
|
||||
"name": "Embankment"
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "temaki-antenna",
|
||||
"icon": "maki-communications-tower",
|
||||
"fields": [
|
||||
"tower/type",
|
||||
"tower/construction",
|
||||
|
||||
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"icon": "maki-communications-tower",
|
||||
"fields": [
|
||||
"tower/type",
|
||||
"tower/construction",
|
||||
"height",
|
||||
"communication_multi"
|
||||
],
|
||||
"geometry": [
|
||||
"point"
|
||||
],
|
||||
"terms": [
|
||||
"antenna",
|
||||
"broadcast tower",
|
||||
"cell phone tower",
|
||||
"cell tower",
|
||||
"communication mast",
|
||||
"communication tower",
|
||||
"guyed tower",
|
||||
"mobile phone tower",
|
||||
"radio mast",
|
||||
"radio tower",
|
||||
"television tower",
|
||||
"transmission mast",
|
||||
"transmission tower",
|
||||
"tv tower"
|
||||
],
|
||||
"tags": {
|
||||
"man_made": "mast",
|
||||
"tower:type": "communication"
|
||||
},
|
||||
"reference": {
|
||||
"key": "tower:type",
|
||||
"value": "communication"
|
||||
},
|
||||
"name": "Communication Mast"
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"icon": "maki-communications-tower",
|
||||
"fields": [
|
||||
"tower/type",
|
||||
"tower/construction",
|
||||
"height",
|
||||
"communication_multi"
|
||||
],
|
||||
"geometry": [
|
||||
"point"
|
||||
],
|
||||
"terms": [
|
||||
"antenna",
|
||||
"cell mast",
|
||||
"cell phone mast",
|
||||
"cell phone tower",
|
||||
"cell tower",
|
||||
"communication mast",
|
||||
"communication tower",
|
||||
"guyed tower",
|
||||
"mobile phone tower",
|
||||
"transmission mast",
|
||||
"transmission tower"
|
||||
],
|
||||
"tags": {
|
||||
"man_made": "mast",
|
||||
"tower:type": "communication",
|
||||
"communication:mobile_phone": "yes"
|
||||
},
|
||||
"reference": {
|
||||
"key": "communication:mobile_phone",
|
||||
"value": "yes"
|
||||
},
|
||||
"name": "Mobile Phone Mast"
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"icon": "maki-communications-tower",
|
||||
"fields": [
|
||||
"tower/type",
|
||||
"tower/construction",
|
||||
"height",
|
||||
"communication_multi"
|
||||
],
|
||||
"geometry": [
|
||||
"point"
|
||||
],
|
||||
"terms": [
|
||||
"antenna",
|
||||
"broadcast tower",
|
||||
"communication mast",
|
||||
"communication tower",
|
||||
"guyed tower",
|
||||
"radio mast",
|
||||
"radio tower",
|
||||
"transmission mast",
|
||||
"transmission tower"
|
||||
],
|
||||
"tags": {
|
||||
"man_made": "mast",
|
||||
"tower:type": "communication",
|
||||
"communication:radio": "yes"
|
||||
},
|
||||
"reference": {
|
||||
"key": "communication:radio",
|
||||
"value": "yes"
|
||||
},
|
||||
"name": "Radio Broadcast Mast"
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"icon": "maki-communications-tower",
|
||||
"fields": [
|
||||
"tower/type",
|
||||
"tower/construction",
|
||||
"height",
|
||||
"communication_multi"
|
||||
],
|
||||
"geometry": [
|
||||
"point"
|
||||
],
|
||||
"terms": [
|
||||
"antenna",
|
||||
"broadcast tower",
|
||||
"communication mast",
|
||||
"communication tower",
|
||||
"guyed tower",
|
||||
"television mast",
|
||||
"television tower",
|
||||
"transmission mast",
|
||||
"transmission tower",
|
||||
"tv mast",
|
||||
"tv tower"
|
||||
],
|
||||
"tags": {
|
||||
"man_made": "mast",
|
||||
"tower:type": "communication",
|
||||
"communication:television": "yes"
|
||||
},
|
||||
"reference": {
|
||||
"key": "communication:television",
|
||||
"value": "yes"
|
||||
},
|
||||
"name": "Television Broadcast Mast"
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"icon": "temaki-tower",
|
||||
"fields": [
|
||||
"tower/type",
|
||||
"tower/construction",
|
||||
"height",
|
||||
"communication_multi"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"antenna",
|
||||
"broadcast tower",
|
||||
"cell phone tower",
|
||||
"cell tower",
|
||||
"communication mast",
|
||||
"communication tower",
|
||||
"guyed tower",
|
||||
"mobile phone tower",
|
||||
"radio mast",
|
||||
"radio tower",
|
||||
"television tower",
|
||||
"transmission mast",
|
||||
"transmission tower",
|
||||
"tv tower"
|
||||
],
|
||||
"tags": {
|
||||
"man_made": "tower",
|
||||
"tower:type": "communication"
|
||||
},
|
||||
"reference": {
|
||||
"key": "tower:type",
|
||||
"value": "communication"
|
||||
},
|
||||
"name": "Communication Tower"
|
||||
}
|
||||
@@ -1,5 +1,10 @@
|
||||
{
|
||||
"icon": "temaki-tower",
|
||||
"fields": [
|
||||
"tower/type",
|
||||
"tower/construction",
|
||||
"height"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
@@ -12,5 +17,9 @@
|
||||
"man_made": "tower",
|
||||
"tower:type": "observation"
|
||||
},
|
||||
"reference": {
|
||||
"key": "tower:type",
|
||||
"value": "observation"
|
||||
},
|
||||
"name": "Observation Tower"
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-buddhism",
|
||||
"icon": "maki-watermill",
|
||||
"fields": [
|
||||
"building_area"
|
||||
],
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "temaki-windmill",
|
||||
"icon": "maki-windmill",
|
||||
"fields": [
|
||||
"building_area"
|
||||
],
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"icon": "maki-suitcase",
|
||||
"fields": [
|
||||
"name",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"religion",
|
||||
"denomination"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"office": "religion"
|
||||
},
|
||||
"terms": [],
|
||||
"name": "Religious Office"
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-car",
|
||||
"icon": "maki-car-repair",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"payment_multi"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"shop": "catalogue"
|
||||
},
|
||||
"name": "Catalog Shop"
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "maki-confectionary",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"payment_multi"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"shop": "country_store"
|
||||
},
|
||||
"name": "Country Store"
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"payment_multi"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"barber",
|
||||
"shampoo",
|
||||
"conditioner"
|
||||
],
|
||||
"tags": {
|
||||
"shop": "hairdresser_supply"
|
||||
},
|
||||
"name": "Hairdresser Supply Store"
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "maki-jewelry-store",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "fas-glasses",
|
||||
"icon": "maki-optician",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"payment_multi"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"balloons",
|
||||
"costumes",
|
||||
"decorations",
|
||||
"invitations"
|
||||
],
|
||||
"tags": {
|
||||
"shop": "party"
|
||||
},
|
||||
"name": "Party Supply Store"
|
||||
}
|
||||
@@ -6,12 +6,17 @@
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours",
|
||||
"payment_multi"
|
||||
"payment_multi",
|
||||
"scuba_diving"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"diving",
|
||||
"scuba"
|
||||
],
|
||||
"tags": {
|
||||
"shop": "scuba_diving"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "maki-shoe",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "maki-watch",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"icon": "maki-water",
|
||||
"icon": "maki-waterfall",
|
||||
"fields": [
|
||||
"name",
|
||||
"height",
|
||||
|
||||
@@ -66,6 +66,10 @@
|
||||
"shortcuts": ["F", "F11"],
|
||||
"text": "shortcuts.browsing.display_options.fullscreen"
|
||||
},
|
||||
{
|
||||
"shortcuts": ["sidebar.key"],
|
||||
"text": "shortcuts.browsing.display_options.sidebar"
|
||||
},
|
||||
{
|
||||
"shortcuts": ["area_fill.wireframe.key"],
|
||||
"text": "shortcuts.browsing.display_options.wireframe"
|
||||
|
||||
@@ -32,6 +32,12 @@
|
||||
"description": "Traffic Circle",
|
||||
"object_types": ["node", "way"]
|
||||
},
|
||||
{
|
||||
"key": "embankment",
|
||||
"value": "yes",
|
||||
"description": "Embankment",
|
||||
"object_types": ["way"]
|
||||
},
|
||||
{
|
||||
"key": "highway",
|
||||
"description": "Highway, Type",
|
||||
@@ -399,7 +405,7 @@
|
||||
"value": "car_rental",
|
||||
"description": "Car Rental",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-rental-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "amenity",
|
||||
@@ -420,7 +426,7 @@
|
||||
"value": "casino",
|
||||
"description": "Casino",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/dice.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/casino-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "amenity",
|
||||
@@ -513,6 +519,13 @@
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/dentist-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "amenity",
|
||||
"value": "dive_centre",
|
||||
"description": "Dive Center",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/swimming-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "amenity",
|
||||
"value": "doctors",
|
||||
@@ -555,6 +568,48 @@
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fast-food-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "burger",
|
||||
"description": "Burger Fast Food",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fast-food-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "chicken",
|
||||
"description": "Chicken Fast Food",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-drumstick-bite.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "fish_and_chips",
|
||||
"description": "Fish & Chips Fast Food",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-fish.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "kebab",
|
||||
"description": "Kebab Fast Food",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "pizza",
|
||||
"description": "Pizza Fast Food, Pizza Restaurant",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-pizza-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "sandwich",
|
||||
"description": "Sandwich Fast Food",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "amenity",
|
||||
"value": "fire_station",
|
||||
@@ -666,6 +721,13 @@
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/place-of-worship-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "amenity",
|
||||
"value": "money_transfer",
|
||||
"description": "Money Transfer Station",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bank-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "amenity",
|
||||
"value": "motorcycle_parking",
|
||||
@@ -714,6 +776,20 @@
|
||||
"object_types": ["area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "amenity",
|
||||
"value": "payment_centre",
|
||||
"description": "Payment Center",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bank-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "amenity",
|
||||
"value": "payment_terminal",
|
||||
"description": "Payment Terminal",
|
||||
"object_types": ["node"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bank-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "amenity",
|
||||
"value": "pharmacy",
|
||||
@@ -733,7 +809,7 @@
|
||||
"value": "buddhist",
|
||||
"description": "Buddhist Temple",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/buddhism-15.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/religious-buddhist-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
@@ -868,6 +944,125 @@
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "american",
|
||||
"description": "American Restaurant",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "asian",
|
||||
"description": "Asian Restaurant",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-noodle-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "chinese",
|
||||
"description": "Chinese Restaurant",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-noodle-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "french",
|
||||
"description": "French Restaurant",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "german",
|
||||
"description": "German Restaurant",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "greek",
|
||||
"description": "Greek Restaurant",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "indian",
|
||||
"description": "Indian Restaurant",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "italian",
|
||||
"description": "Italian Restaurant",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "japanese",
|
||||
"description": "Japanese Restaurant",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-noodle-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "mexican",
|
||||
"description": "Mexican Restaurant",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "noodle",
|
||||
"description": "Noodle Restaurant",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-noodle-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "seafood",
|
||||
"description": "Seafood Restaurant",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-seafood-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "steak_house",
|
||||
"description": "Steakhouse",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/slaughterhouse-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "sushi",
|
||||
"description": "Sushi Restaurant",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-fish.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "thai",
|
||||
"description": "Thai Restaurant",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-noodle-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "turkish",
|
||||
"description": "Turkish Restaurant",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "cuisine",
|
||||
"value": "vietnamese",
|
||||
"description": "Vietnamese Restaurant",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-noodle-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "amenity",
|
||||
"value": "sanitary_dump_station",
|
||||
@@ -1015,6 +1210,13 @@
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/college-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "amenity",
|
||||
"value": "vehicle_inspection",
|
||||
"description": "Vehicle Inspection",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "amenity",
|
||||
"value": "vending_machine",
|
||||
@@ -1303,7 +1505,7 @@
|
||||
"key": "attraction",
|
||||
"value": "summer_toboggan",
|
||||
"description": "Summer Toboggan",
|
||||
"object_types": ["way"],
|
||||
"object_types": ["way"]
|
||||
},
|
||||
{
|
||||
"key": "attraction",
|
||||
@@ -1952,7 +2154,7 @@
|
||||
"value": "confectionery",
|
||||
"description": "Candy Maker",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bakery-15.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/confectionary-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "craft",
|
||||
@@ -2127,7 +2329,7 @@
|
||||
"value": "shoemaker",
|
||||
"description": "Shoemaker",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shoe-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "craft",
|
||||
@@ -2162,7 +2364,7 @@
|
||||
"value": "watchmaker",
|
||||
"description": "Watchmaker",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/clock.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/watch-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "craft",
|
||||
@@ -2178,12 +2380,6 @@
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/alcohol-shop-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "embankment",
|
||||
"value": "yes",
|
||||
"description": "Embankment",
|
||||
"object_types": ["way"]
|
||||
},
|
||||
{
|
||||
"key": "emergency",
|
||||
"value": "designated",
|
||||
@@ -3231,7 +3427,7 @@
|
||||
"value": "adult_gaming_centre",
|
||||
"description": "Adult Gaming Center",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/dice.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/casino-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "leisure",
|
||||
@@ -3252,7 +3448,7 @@
|
||||
"value": "beach_resort",
|
||||
"description": "Beach Resort",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/beach.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/beach-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "leisure",
|
||||
@@ -3309,6 +3505,13 @@
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fire-station-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "leisure",
|
||||
"value": "fishing",
|
||||
"description": "Fishing Spot",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-fish.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "leisure",
|
||||
"value": "fitness_centre",
|
||||
@@ -3524,7 +3727,7 @@
|
||||
"value": "beachvolleyball",
|
||||
"description": "Beach Volleyball Court",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/basketball-15.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/volleyball-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "sport",
|
||||
@@ -3573,7 +3776,7 @@
|
||||
"value": "skateboard",
|
||||
"description": "Skate Park",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/skateboard-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "sport",
|
||||
@@ -3608,7 +3811,7 @@
|
||||
"value": "volleyball",
|
||||
"description": "Volleyball Court",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/basketball-15.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/volleyball-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "leisure",
|
||||
@@ -3643,7 +3846,7 @@
|
||||
"value": "slipway",
|
||||
"description": "Slipway",
|
||||
"object_types": ["node", "way"],
|
||||
"icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/beach.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/slipway-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "leisure",
|
||||
@@ -3693,12 +3896,6 @@
|
||||
"object_types": ["node", "way", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/storage_tank.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "man_made",
|
||||
"value": "embankment",
|
||||
"description": "Embankment",
|
||||
"object_types": ["way"]
|
||||
},
|
||||
{
|
||||
"key": "man_made",
|
||||
"value": "adit",
|
||||
@@ -3724,7 +3921,7 @@
|
||||
"value": "bridge",
|
||||
"description": "Bridge",
|
||||
"object_types": ["area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-archway.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bridge-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "man_made",
|
||||
@@ -3761,6 +3958,12 @@
|
||||
"object_types": ["way"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/logging-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "man_made",
|
||||
"value": "embankment",
|
||||
"description": "Embankment",
|
||||
"object_types": ["way"]
|
||||
},
|
||||
{
|
||||
"key": "man_made",
|
||||
"value": "flagpole",
|
||||
@@ -3793,7 +3996,35 @@
|
||||
"value": "mast",
|
||||
"description": "Mast",
|
||||
"object_types": ["node"],
|
||||
"icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/antenna.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/communications-tower-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "tower:type",
|
||||
"value": "communication",
|
||||
"description": "Communication Mast, Communication Tower",
|
||||
"object_types": ["node"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/communications-tower-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "communication:mobile_phone",
|
||||
"value": "yes",
|
||||
"description": "Mobile Phone Mast",
|
||||
"object_types": ["node"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/communications-tower-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "communication:radio",
|
||||
"value": "yes",
|
||||
"description": "Radio Broadcast Mast",
|
||||
"object_types": ["node"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/communications-tower-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "communication:television",
|
||||
"value": "yes",
|
||||
"description": "Television Broadcast Mast",
|
||||
"object_types": ["node"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/communications-tower-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "man_made",
|
||||
@@ -3802,13 +4033,6 @@
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/antenna.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "tower:type",
|
||||
"value": "observation",
|
||||
"description": "Observation Tower",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tower.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "man_made",
|
||||
"value": "observatory",
|
||||
@@ -3858,16 +4082,16 @@
|
||||
"icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/storage_tank.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "surveillance:type",
|
||||
"value": "camera",
|
||||
"description": "Surveillance Camera, Surveillance Type",
|
||||
"key": "man_made",
|
||||
"value": "surveillance",
|
||||
"description": "Surveillance",
|
||||
"object_types": ["node"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/attraction-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "man_made",
|
||||
"value": "surveillance",
|
||||
"description": "Surveillance",
|
||||
"key": "surveillance:type",
|
||||
"value": "camera",
|
||||
"description": "Surveillance Camera, Surveillance Type",
|
||||
"object_types": ["node"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/attraction-15.svg?sanitize=true"
|
||||
},
|
||||
@@ -3885,6 +4109,13 @@
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tower.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "tower:type",
|
||||
"value": "observation",
|
||||
"description": "Observation Tower",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tower.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "man_made",
|
||||
"value": "wastewater_plant",
|
||||
@@ -3918,14 +4149,14 @@
|
||||
"value": "watermill",
|
||||
"description": "Watermill",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/buddhism-15.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/watermill-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "man_made",
|
||||
"value": "windmill",
|
||||
"description": "Windmill",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/windmill.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/windmill-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "man_made",
|
||||
@@ -4376,6 +4607,13 @@
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "office",
|
||||
"value": "religion",
|
||||
"description": "Religious Office",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "office",
|
||||
"value": "research",
|
||||
@@ -5251,7 +5489,7 @@
|
||||
"value": "car_repair",
|
||||
"description": "Car Repair Shop",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-repair-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "shop",
|
||||
@@ -5267,6 +5505,13 @@
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "shop",
|
||||
"value": "catalogue",
|
||||
"description": "Catalog Shop",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "shop",
|
||||
"value": "charity",
|
||||
@@ -5321,7 +5566,7 @@
|
||||
"value": "confectionery",
|
||||
"description": "Candy Store",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/confectionary-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "shop",
|
||||
@@ -5344,6 +5589,13 @@
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "shop",
|
||||
"value": "country_store",
|
||||
"description": "Country Store",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "shop",
|
||||
"value": "craft",
|
||||
@@ -5491,6 +5743,13 @@
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "shop",
|
||||
"value": "hairdresser_supply",
|
||||
"description": "Hairdresser Supply Store",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "shop",
|
||||
"value": "hairdresser",
|
||||
@@ -5552,7 +5811,7 @@
|
||||
"value": "jewelry",
|
||||
"description": "Jeweler",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/jewelry-store-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "shop",
|
||||
@@ -5678,7 +5937,7 @@
|
||||
"value": "optician",
|
||||
"description": "Optician",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-glasses.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/optician-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "organic",
|
||||
@@ -5701,6 +5960,13 @@
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-paint-roller.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "shop",
|
||||
"value": "party",
|
||||
"description": "Party Supply Store",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "shop",
|
||||
"value": "pastry",
|
||||
@@ -5797,7 +6063,7 @@
|
||||
"value": "shoes",
|
||||
"description": "Shoe Store",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shoe-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "shop",
|
||||
@@ -5930,7 +6196,7 @@
|
||||
"value": "watches",
|
||||
"description": "Watches Shop",
|
||||
"object_types": ["node", "area"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/watch-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "shop",
|
||||
@@ -6557,7 +6823,7 @@
|
||||
"value": "waterfall",
|
||||
"description": "Waterfall",
|
||||
"object_types": ["node"],
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
|
||||
"icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/waterfall-15.svg?sanitize=true"
|
||||
},
|
||||
{
|
||||
"key": "waterway",
|
||||
@@ -7237,6 +7503,7 @@
|
||||
"description": "Hiking Difficulty"
|
||||
},
|
||||
{"key": "sanitary_dump_station", "description": "Toilet Disposal"},
|
||||
{"key": "scuba_diving:", "description": "Services"},
|
||||
{"key": "seamark:beacon_isolated_danger:shape", "description": "Shape"},
|
||||
{
|
||||
"key": "seamark:beacon_lateral:category",
|
||||
|
||||
|
After Width: | Height: | Size: 137 B |
|
After Width: | Height: | Size: 490 B |
|
After Width: | Height: | Size: 170 B |
|
After Width: | Height: | Size: 416 B |
|
After Width: | Height: | Size: 341 B |
|
After Width: | Height: | Size: 340 B |
|
After Width: | Height: | Size: 396 B |
|
After Width: | Height: | Size: 305 B |
|
After Width: | Height: | Size: 276 B |
|
After Width: | Height: | Size: 315 B |
|
After Width: | Height: | Size: 207 B |
|
After Width: | Height: | Size: 479 B |
|
After Width: | Height: | Size: 401 B |
|
After Width: | Height: | Size: 265 B |
|
After Width: | Height: | Size: 190 B |
|
Before Width: | Height: | Size: 137 B After Width: | Height: | Size: 182 B |