From 27c2584fd1d9bdeb9d087a1a1927772508fa4013 Mon Sep 17 00:00:00 2001 From: bkil Date: Sun, 6 Nov 2016 16:50:05 +0100 Subject: [PATCH 01/11] data/presets/README: some typo fixes --- data/presets/README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/data/presets/README.md b/data/presets/README.md index 83a5822252..6c354019bc 100644 --- a/data/presets/README.md +++ b/data/presets/README.md @@ -125,7 +125,7 @@ The complete JSON schema for fields can be found in [`data/presets/schema/field. * `cycleway` - Block of dropdowns for adding `cycleway:left` and `cycleway:right` tags on a highway * `maxspeed` - Numeric text field for speed and dropdown for "mph/kph" * `restrictions` - Graphical field for editing turn restrictions -* `wikipedia` - Block of fields for selecting a wiki language and wikipedia page +* `wikipedia` - Block of fields for selecting a wiki language and Wikipedia page #### Field Properties @@ -147,7 +147,7 @@ one of `point`, `vertex`, `line`, `area`. ##### `default` -The default value for the field. For exmaple, the `building_area.json` field +The default value for the field. For example, the `building_area.json` field will automatically add the tag `building=yes` to certain presets that are associated with building features (but only if drawn as a closed area). @@ -179,8 +179,9 @@ The user can pick from any of the options, or type their own value. Combo field types can accept name-value pairs in the `strings` property. This is helpful when the field has a fixed number of options and you want to be -able to provide a translateable description of each option. When using `strings`, +able to provide a translatable description of each option. When using `strings`, the user can not type their own value, they must choose one of the given values. + ```js { "key": "smoothness", From fcd8e75480b660d3b37630f1ec2e873ed4ab3c8f Mon Sep 17 00:00:00 2001 From: bkil Date: Sun, 6 Nov 2016 15:10:26 +0100 Subject: [PATCH 02/11] data/presets/fields/internet_access/wlan/ssid.json add --- data/presets/fields/internet_access/wlan/ssid.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/presets/fields/internet_access/wlan/ssid.json diff --git a/data/presets/fields/internet_access/wlan/ssid.json b/data/presets/fields/internet_access/wlan/ssid.json new file mode 100644 index 0000000000..836b099e09 --- /dev/null +++ b/data/presets/fields/internet_access/wlan/ssid.json @@ -0,0 +1,5 @@ +{ + "key": "internet_access:wlan:ssid", + "type": "text", + "label": "SSID (Network Name)" +} From 526c896199ec9b9aaaedaf3f08543e77e4735eb9 Mon Sep 17 00:00:00 2001 From: bkil Date: Sun, 6 Nov 2016 19:17:06 +0100 Subject: [PATCH 03/11] data/presets/presets/highway/traffic_mirror.json: add --- data/presets/presets/highway/traffic_mirror.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 data/presets/presets/highway/traffic_mirror.json diff --git a/data/presets/presets/highway/traffic_mirror.json b/data/presets/presets/highway/traffic_mirror.json new file mode 100644 index 0000000000..227eaf6351 --- /dev/null +++ b/data/presets/presets/highway/traffic_mirror.json @@ -0,0 +1,11 @@ +{ + "icon": "circle-stroked", + "geometry": [ + "point" + ], + "tags": { + "highway": "traffic_mirror" + }, + "terms": [], + "name": "Traffic Mirror" +} From 830e48ad32433fac82e682cdd3cb86af4a147a3d Mon Sep 17 00:00:00 2001 From: bkil Date: Sun, 6 Nov 2016 15:13:42 +0100 Subject: [PATCH 04/11] data/presets/fields/contact: mail, fb, g+, Instagram, LinkedIn, Twitter, VK --- data/presets/fields/contact/email.json | 8 ++++++++ data/presets/fields/contact/facebook.json | 8 ++++++++ data/presets/fields/contact/google_plus.json | 8 ++++++++ data/presets/fields/contact/instagram.json | 8 ++++++++ data/presets/fields/contact/linkedin.json | 8 ++++++++ data/presets/fields/contact/twitter.json | 8 ++++++++ data/presets/fields/contact/vk.json | 8 ++++++++ 7 files changed, 56 insertions(+) create mode 100644 data/presets/fields/contact/email.json create mode 100644 data/presets/fields/contact/facebook.json create mode 100644 data/presets/fields/contact/google_plus.json create mode 100644 data/presets/fields/contact/instagram.json create mode 100644 data/presets/fields/contact/linkedin.json create mode 100644 data/presets/fields/contact/twitter.json create mode 100644 data/presets/fields/contact/vk.json diff --git a/data/presets/fields/contact/email.json b/data/presets/fields/contact/email.json new file mode 100644 index 0000000000..1804342203 --- /dev/null +++ b/data/presets/fields/contact/email.json @@ -0,0 +1,8 @@ +{ + "key": "contact:email", + "type": "email", + "icon": "website", + "placeholder": "user@example.com", + "universal": true, + "label": "E-mail" +} diff --git a/data/presets/fields/contact/facebook.json b/data/presets/fields/contact/facebook.json new file mode 100644 index 0000000000..35fa431f70 --- /dev/null +++ b/data/presets/fields/contact/facebook.json @@ -0,0 +1,8 @@ +{ + "key": "contact:facebook", + "type": "url", + "icon": "website", + "placeholder": "http://example.com/", + "universal": true, + "label": "Facebook Profile" +} diff --git a/data/presets/fields/contact/google_plus.json b/data/presets/fields/contact/google_plus.json new file mode 100644 index 0000000000..3c4be56ff3 --- /dev/null +++ b/data/presets/fields/contact/google_plus.json @@ -0,0 +1,8 @@ +{ + "key": "contact:google_plus", + "type": "url", + "icon": "website", + "placeholder": "http://example.com/", + "universal": true, + "label": "Google+ Account" +} diff --git a/data/presets/fields/contact/instagram.json b/data/presets/fields/contact/instagram.json new file mode 100644 index 0000000000..5d62d31ce4 --- /dev/null +++ b/data/presets/fields/contact/instagram.json @@ -0,0 +1,8 @@ +{ + "key": "contact:instagram", + "type": "url", + "icon": "website", + "placeholder": "http://example.com/", + "universal": true, + "label": "Instagram Account" +} diff --git a/data/presets/fields/contact/linkedin.json b/data/presets/fields/contact/linkedin.json new file mode 100644 index 0000000000..e1d72ef793 --- /dev/null +++ b/data/presets/fields/contact/linkedin.json @@ -0,0 +1,8 @@ +{ + "key": "contact:linkedin", + "type": "url", + "icon": "website", + "placeholder": "http://example.com/", + "universal": true, + "label": "LinkedIn Account" +} diff --git a/data/presets/fields/contact/twitter.json b/data/presets/fields/contact/twitter.json new file mode 100644 index 0000000000..358d0abf5e --- /dev/null +++ b/data/presets/fields/contact/twitter.json @@ -0,0 +1,8 @@ +{ + "key": "contact:twitter", + "type": "url", + "icon": "website", + "placeholder": "http://example.com/", + "universal": true, + "label": "Twitter Account" +} diff --git a/data/presets/fields/contact/vk.json b/data/presets/fields/contact/vk.json new file mode 100644 index 0000000000..1dc50f1640 --- /dev/null +++ b/data/presets/fields/contact/vk.json @@ -0,0 +1,8 @@ +{ + "key": "contact:vk", + "type": "url", + "icon": "website", + "placeholder": "http://example.com/", + "universal": true, + "label": "VK.com Account" +} From 567b4bef9e14fbaf9062b415e93296812828eada Mon Sep 17 00:00:00 2001 From: bkil Date: Sun, 6 Nov 2016 15:09:03 +0100 Subject: [PATCH 05/11] data/presets: add construction, height and icon to mast, tower --- data/presets/fields/height.json | 5 +++++ data/presets/fields/tower/construction.json | 6 ++++++ data/presets/fields/{towertype.json => tower/type.json} | 0 data/presets/presets/man_made/mast.json | 6 ++++++ data/presets/presets/man_made/tower.json | 5 ++++- 5 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 data/presets/fields/height.json create mode 100644 data/presets/fields/tower/construction.json rename data/presets/fields/{towertype.json => tower/type.json} (100%) diff --git a/data/presets/fields/height.json b/data/presets/fields/height.json new file mode 100644 index 0000000000..2640c19824 --- /dev/null +++ b/data/presets/fields/height.json @@ -0,0 +1,5 @@ +{ + "key": "height", + "type": "number", + "label": "Height (meters)" +} diff --git a/data/presets/fields/tower/construction.json b/data/presets/fields/tower/construction.json new file mode 100644 index 0000000000..8166ec0148 --- /dev/null +++ b/data/presets/fields/tower/construction.json @@ -0,0 +1,6 @@ +{ + "key": "tower:construction", + "type": "combo", + "label": "Tower construction", + "placeholder": "Guyed, Lattice, Concealed, ..." +} diff --git a/data/presets/fields/towertype.json b/data/presets/fields/tower/type.json similarity index 100% rename from data/presets/fields/towertype.json rename to data/presets/fields/tower/type.json diff --git a/data/presets/presets/man_made/mast.json b/data/presets/presets/man_made/mast.json index 9ce0c49f77..b498ad29b1 100644 --- a/data/presets/presets/man_made/mast.json +++ b/data/presets/presets/man_made/mast.json @@ -1,4 +1,10 @@ { + "icon": "lighthouse", + "fields": [ + "tower/type", + "tower/construction", + "height" + ], "geometry": [ "point" ], diff --git a/data/presets/presets/man_made/tower.json b/data/presets/presets/man_made/tower.json index e2285df23f..f60381e5de 100644 --- a/data/presets/presets/man_made/tower.json +++ b/data/presets/presets/man_made/tower.json @@ -1,6 +1,9 @@ { + "icon": "lighthouse", "fields": [ - "towertype" + "tower/type", + "tower/construction", + "height" ], "geometry": [ "point", From 3712823a847147cfc864d6765b33a0645c2dc445 Mon Sep 17 00:00:00 2001 From: bkil Date: Sun, 6 Nov 2016 15:15:34 +0100 Subject: [PATCH 06/11] data/presets: extend surveillance with camera properties, height --- data/presets/fields/camera/features.json | 6 ++++++ data/presets/fields/camera/mount.json | 6 ++++++ data/presets/fields/camera/type.json | 7 +++++++ data/presets/fields/contact/webcam.json | 8 ++++++++ data/presets/fields/surveillance.json | 7 +++++++ data/presets/fields/surveillance/type.json | 7 +++++++ data/presets/fields/surveillance/zone.json | 6 ++++++ data/presets/presets/man_made/surveillance.json | 17 +++++++++++++++++ 8 files changed, 64 insertions(+) create mode 100644 data/presets/fields/camera/features.json create mode 100644 data/presets/fields/camera/mount.json create mode 100644 data/presets/fields/camera/type.json create mode 100644 data/presets/fields/contact/webcam.json create mode 100644 data/presets/fields/surveillance.json create mode 100644 data/presets/fields/surveillance/type.json create mode 100644 data/presets/fields/surveillance/zone.json diff --git a/data/presets/fields/camera/features.json b/data/presets/fields/camera/features.json new file mode 100644 index 0000000000..226fdcf0d1 --- /dev/null +++ b/data/presets/fields/camera/features.json @@ -0,0 +1,6 @@ +{ + "key": "camera:features", + "type": "combo", + "label": "Camera features", + "placeholder": "Webcam, Microphone, Nightvision, Heatvision, Zoom, Motion, Wireless" +} diff --git a/data/presets/fields/camera/mount.json b/data/presets/fields/camera/mount.json new file mode 100644 index 0000000000..9b245a8eab --- /dev/null +++ b/data/presets/fields/camera/mount.json @@ -0,0 +1,6 @@ +{ + "key": "camera:mount", + "type": "combo", + "label": "Camera mount", + "placeholder": "Wall, Pole" +} diff --git a/data/presets/fields/camera/type.json b/data/presets/fields/camera/type.json new file mode 100644 index 0000000000..67340c1d6b --- /dev/null +++ b/data/presets/fields/camera/type.json @@ -0,0 +1,7 @@ +{ + "key": "camera:type", + "type": "combo", + "label": "Camera type", + "default": "fixed", + "placeholder": "Fixed, Panning, Dome" +} diff --git a/data/presets/fields/contact/webcam.json b/data/presets/fields/contact/webcam.json new file mode 100644 index 0000000000..84b745a52a --- /dev/null +++ b/data/presets/fields/contact/webcam.json @@ -0,0 +1,8 @@ +{ + "key": "contact:webcam", + "type": "url", + "icon": "website", + "placeholder": "http://example.com/", + "universal": true, + "label": "Webcam feed URL" +} diff --git a/data/presets/fields/surveillance.json b/data/presets/fields/surveillance.json new file mode 100644 index 0000000000..e295d8dfb8 --- /dev/null +++ b/data/presets/fields/surveillance.json @@ -0,0 +1,7 @@ +{ + "key": "surveillance", + "type": "combo", + "label": "Surveillance kind", + "default": "outdoor", + "placeholder": "Public, Outdoor, Indoor" +} diff --git a/data/presets/fields/surveillance/type.json b/data/presets/fields/surveillance/type.json new file mode 100644 index 0000000000..8797671b13 --- /dev/null +++ b/data/presets/fields/surveillance/type.json @@ -0,0 +1,7 @@ +{ + "key": "surveillance:type", + "type": "combo", + "label": "What is watching", + "default": "camera", + "placeholder": "Camera, Guard, ALPR" +} diff --git a/data/presets/fields/surveillance/zone.json b/data/presets/fields/surveillance/zone.json new file mode 100644 index 0000000000..1bd8adaa8c --- /dev/null +++ b/data/presets/fields/surveillance/zone.json @@ -0,0 +1,6 @@ +{ + "key": "surveillance:zone", + "type": "combo", + "label": "Zone", + "placeholder": "Town, Parking, Traffic, Shop, Building" +} diff --git a/data/presets/presets/man_made/surveillance.json b/data/presets/presets/man_made/surveillance.json index 3d7a01d38f..f1c3076ad7 100644 --- a/data/presets/presets/man_made/surveillance.json +++ b/data/presets/presets/man_made/surveillance.json @@ -3,7 +3,24 @@ "geometry": [ "point" ], + "fields": [ + "surveillance", + "surveillance/type", + "camera/type", + "camera/mount", + "surveillance/zone", + "height", + "camera/features", + "contact/webcam", + "operator" + ], "terms": [ + "security", + "camera", + "guard", + "video", + "webcam", + "alpr", "cctv" ], "tags": { From e19ef5c25bce3e63e17b5eaaa024d8134ce8ce3a Mon Sep 17 00:00:00 2001 From: bkil Date: Sun, 6 Nov 2016 15:47:20 +0100 Subject: [PATCH 07/11] data/presets: add lunch/contacts for cafe, pub, restaurant, fast_food --- data/presets/fields/lunch.json | 7 +++++++ data/presets/fields/lunch/buffet.json | 6 ++++++ data/presets/fields/lunch/menu.json | 6 ++++++ data/presets/fields/outdoor_seating.json | 5 +++++ data/presets/presets/amenity/cafe.json | 14 ++++++++++++++ data/presets/presets/amenity/fast_food.json | 14 ++++++++++++++ data/presets/presets/amenity/pub.json | 16 ++++++++++++++++ data/presets/presets/amenity/restaurant.json | 14 ++++++++++++++ 8 files changed, 82 insertions(+) create mode 100644 data/presets/fields/lunch.json create mode 100644 data/presets/fields/lunch/buffet.json create mode 100644 data/presets/fields/lunch/menu.json create mode 100644 data/presets/fields/outdoor_seating.json diff --git a/data/presets/fields/lunch.json b/data/presets/fields/lunch.json new file mode 100644 index 0000000000..cb2257a255 --- /dev/null +++ b/data/presets/fields/lunch.json @@ -0,0 +1,7 @@ +{ + "key": "lunch", + "type": "combo", + "label": "Daily Lunch (Unknown Kind)", + "default": "no", + "placeholder": "Yes, No, " +} diff --git a/data/presets/fields/lunch/buffet.json b/data/presets/fields/lunch/buffet.json new file mode 100644 index 0000000000..015d8cb5ad --- /dev/null +++ b/data/presets/fields/lunch/buffet.json @@ -0,0 +1,6 @@ +{ + "key": "lunch:buffet", + "type": "combo", + "label": "Daily Buffet Lunch (All You Can Eat)", + "placeholder": "Yes, No, " +} diff --git a/data/presets/fields/lunch/menu.json b/data/presets/fields/lunch/menu.json new file mode 100644 index 0000000000..e6d4c920f5 --- /dev/null +++ b/data/presets/fields/lunch/menu.json @@ -0,0 +1,6 @@ +{ + "key": "lunch:menu", + "type": "combo", + "label": "Daily Menu Lunch (Mass Prepared, Inexpensive)", + "placeholder": "Yes, No, " +} diff --git a/data/presets/fields/outdoor_seating.json b/data/presets/fields/outdoor_seating.json new file mode 100644 index 0000000000..bb80b70b71 --- /dev/null +++ b/data/presets/fields/outdoor_seating.json @@ -0,0 +1,5 @@ +{ + "key": "outdoor_seating", + "type": "combo", + "label": "Outdoor Seating" +} diff --git a/data/presets/presets/amenity/cafe.json b/data/presets/presets/amenity/cafe.json index 7e55e4f5e4..2c2c676d93 100644 --- a/data/presets/presets/amenity/cafe.json +++ b/data/presets/presets/amenity/cafe.json @@ -3,9 +3,23 @@ "fields": [ "cuisine", "internet_access", + "internet_access/fee", + "internet_access/wlan/ssid", "address", "building_area", "opening_hours", + "lunch/menu", + "lunch/buffet", + "phone", + "website", + "contact/facebook", + "contact/twitter", + "contact/instagram", + "contact/linkedin", + "contact/email", + "contact/vk", + "contact/google_plus", + "outdoor_seating", "smoking" ], "geometry": [ diff --git a/data/presets/presets/amenity/fast_food.json b/data/presets/presets/amenity/fast_food.json index 8d0adeff5f..e46d9952f7 100644 --- a/data/presets/presets/amenity/fast_food.json +++ b/data/presets/presets/amenity/fast_food.json @@ -9,6 +9,20 @@ "takeaway", "delivery", "drive_through", + "lunch/menu", + "lunch/buffet", + "internet_access", + "internet_access/wlan/ssid", + "phone", + "website", + "contact/facebook", + "contact/twitter", + "contact/instagram", + "contact/linkedin", + "contact/email", + "contact/vk", + "contact/google_plus", + "outdoor_seating", "smoking" ], "geometry": [ diff --git a/data/presets/presets/amenity/pub.json b/data/presets/presets/amenity/pub.json index 90af85b79b..4797f46d9a 100644 --- a/data/presets/presets/amenity/pub.json +++ b/data/presets/presets/amenity/pub.json @@ -4,6 +4,20 @@ "address", "building_area", "opening_hours", + "sport", + "lunch/menu", + "internet_access", + "internet_access/wlan/ssid", + "phone", + "website", + "contact/facebook", + "contact/twitter", + "contact/instagram", + "contact/linkedin", + "contact/email", + "contact/vk", + "contact/google_plus", + "outdoor_seating", "smoking" ], "geometry": [ @@ -14,6 +28,8 @@ "amenity": "pub" }, "terms": [ + "alcohol", + "drink", "dive", "beer", "bier", diff --git a/data/presets/presets/amenity/restaurant.json b/data/presets/presets/amenity/restaurant.json index 87be53bf69..f4f27c23b1 100644 --- a/data/presets/presets/amenity/restaurant.json +++ b/data/presets/presets/amenity/restaurant.json @@ -8,6 +8,20 @@ "capacity", "takeaway", "delivery", + "lunch/menu", + "lunch/buffet", + "internet_access", + "internet_access/wlan/ssid", + "phone", + "website", + "contact/facebook", + "contact/twitter", + "contact/instagram", + "contact/linkedin", + "contact/email", + "contact/vk", + "contact/google_plus", + "outdoor_seating", "smoking" ], "geometry": [ From 43670cd9c80ff75c9b3fd1ae87a1906ffccc22ea Mon Sep 17 00:00:00 2001 From: bkil Date: Sun, 6 Nov 2016 17:17:01 +0100 Subject: [PATCH 08/11] data/presets: add taxon to hedge, forest, heath, scrub, wood, tree* --- data/presets/fields/taxon.json | 6 ++++++ data/presets/fields/taxon/genus.json | 6 ++++++ data/presets/presets/barrier/hedge.json | 4 ++++ data/presets/presets/landuse/forest.json | 2 ++ data/presets/presets/natural/heath.json | 6 +++++- data/presets/presets/natural/scrub.json | 7 ++++++- data/presets/presets/natural/tree.json | 3 +++ data/presets/presets/natural/tree_row.json | 3 +++ data/presets/presets/natural/wood.json | 2 ++ 9 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 data/presets/fields/taxon.json create mode 100644 data/presets/fields/taxon/genus.json diff --git a/data/presets/fields/taxon.json b/data/presets/fields/taxon.json new file mode 100644 index 0000000000..353615cca4 --- /dev/null +++ b/data/presets/fields/taxon.json @@ -0,0 +1,6 @@ +{ + "key": "taxon", + "type": "localized", + "label": "Taxonomical Name of Species", + "placeholder": "Scientific & Localized Names" +} diff --git a/data/presets/fields/taxon/genus.json b/data/presets/fields/taxon/genus.json new file mode 100644 index 0000000000..0ce3188e55 --- /dev/null +++ b/data/presets/fields/taxon/genus.json @@ -0,0 +1,6 @@ +{ + "key": "taxon:genus", + "type": "text", + "label": "Taxonomic Genus of Species", + "placeholder": "Scientific Name of Genus" +} diff --git a/data/presets/presets/barrier/hedge.json b/data/presets/presets/barrier/hedge.json index 69c4ec9da3..bbcbd390e9 100644 --- a/data/presets/presets/barrier/hedge.json +++ b/data/presets/presets/barrier/hedge.json @@ -1,4 +1,8 @@ { + "fields": [ + "taxon/genus", + "taxon" + ], "geometry": [ "line", "area" diff --git a/data/presets/presets/landuse/forest.json b/data/presets/presets/landuse/forest.json index 9c0dd25e43..8649a3bb4b 100644 --- a/data/presets/presets/landuse/forest.json +++ b/data/presets/presets/landuse/forest.json @@ -1,6 +1,8 @@ { "icon": "park2", "fields": [ + "taxon/genus", + "taxon", "leaf_type", "leaf_cycle" ], diff --git a/data/presets/presets/natural/heath.json b/data/presets/presets/natural/heath.json index bf2fdc0f92..711fc8d085 100644 --- a/data/presets/presets/natural/heath.json +++ b/data/presets/presets/natural/heath.json @@ -1,4 +1,8 @@ { + "fields": [ + "taxon/genus", + "taxon" + ], "geometry": [ "area" ], @@ -7,4 +11,4 @@ "natural": "heath" }, "name": "Heath" -} \ No newline at end of file +} diff --git a/data/presets/presets/natural/scrub.json b/data/presets/presets/natural/scrub.json index 82e942e824..ed76403c62 100644 --- a/data/presets/presets/natural/scrub.json +++ b/data/presets/presets/natural/scrub.json @@ -1,4 +1,9 @@ { + "icon": "wetland", + "fields": [ + "taxon/genus", + "taxon" + ], "geometry": [ "area" ], @@ -7,4 +12,4 @@ }, "terms": ["bush","shrubs"], "name": "Scrub" -} \ No newline at end of file +} diff --git a/data/presets/presets/natural/tree.json b/data/presets/presets/natural/tree.json index d3f6d8c90f..895f755f4b 100644 --- a/data/presets/presets/natural/tree.json +++ b/data/presets/presets/natural/tree.json @@ -1,5 +1,8 @@ { "fields": [ + "taxon/genus", + "taxon", + "height", "leaf_type_singular", "leaf_cycle_singular", "denotation" diff --git a/data/presets/presets/natural/tree_row.json b/data/presets/presets/natural/tree_row.json index bbd01fa0b5..f061549bde 100644 --- a/data/presets/presets/natural/tree_row.json +++ b/data/presets/presets/natural/tree_row.json @@ -1,5 +1,8 @@ { "fields": [ + "taxon/genus", + "taxon", + "height", "leaf_type", "leaf_cycle", "denotation" diff --git a/data/presets/presets/natural/wood.json b/data/presets/presets/natural/wood.json index f8ab42d780..c583865f76 100644 --- a/data/presets/presets/natural/wood.json +++ b/data/presets/presets/natural/wood.json @@ -1,6 +1,8 @@ { "icon": "park2", "fields": [ + "taxon/genus", + "taxon", "leaf_type", "leaf_cycle" ], From d0242b4cec0577f99e4d3b830ca53ad7233009f6 Mon Sep 17 00:00:00 2001 From: bkil Date: Sun, 6 Nov 2016 19:23:57 +0100 Subject: [PATCH 09/11] data/presets/presets: add icons to a few common POI The end goal would be that when editing an area rich in POI, most of them should have a different icon so that less point&clicking will be needed to find the right one to extend. To achieve this, all common POIs should have individual icons to serve as mnemonics, and all POIs which are usually located near each other should usually be assigned different icons. --- data/presets/presets/address.json | 3 ++- data/presets/presets/amenity/bench.json | 1 + data/presets/presets/amenity/clock.json | 1 + data/presets/presets/amenity/fountain.json | 1 + data/presets/presets/amenity/hunting_stand.json | 9 ++++++++- data/presets/presets/amenity/social_facility.json | 1 + .../presets/amenity/social_facility/food_bank.json | 1 + .../presets/amenity/social_facility/group_home.json | 1 + .../amenity/social_facility/homeless_shelter.json | 1 + .../presets/amenity/vending_machine/cigarettes.json | 1 + .../presets/presets/amenity/vending_machine/condoms.json | 1 + data/presets/presets/amenity/vending_machine/drinks.json | 1 + .../presets/amenity/vending_machine/excrement_bags.json | 1 + .../presets/amenity/vending_machine/news_papers.json | 1 + .../amenity/vending_machine/parcel_pickup_dropoff.json | 1 + .../presets/amenity/vending_machine/parking_tickets.json | 1 + .../vending_machine/public_transport_tickets.json | 1 + data/presets/presets/amenity/vending_machine/sweets.json | 1 + .../presets/amenity/vending_machine/vending_machine.json | 1 + data/presets/presets/highway/crossing.json | 1 + data/presets/presets/highway/crosswalk.json | 1 + data/presets/presets/historic/castle.json | 1 + data/presets/presets/historic/wayside_cross.json | 3 ++- data/presets/presets/historic/wayside_shrine.json | 3 ++- data/presets/presets/power/generator.json | 1 + data/presets/presets/power/substation.json | 1 + data/presets/presets/power/transformer.json | 3 ++- data/presets/presets/tourism.json | 3 ++- data/presets/presets/tourism/information.json | 1 + data/presets/presets/tourism/theme_park.json | 1 + data/presets/presets/tourism/viewpoint.json | 3 ++- 31 files changed, 44 insertions(+), 7 deletions(-) diff --git a/data/presets/presets/address.json b/data/presets/presets/address.json index 229e704a08..bf217eec1b 100644 --- a/data/presets/presets/address.json +++ b/data/presets/presets/address.json @@ -1,4 +1,5 @@ { + "icon": "square-stroked", "fields": [ "address" ], @@ -12,4 +13,4 @@ "removeTags": {}, "matchScore": 0.2, "name": "Address" -} \ No newline at end of file +} diff --git a/data/presets/presets/amenity/bench.json b/data/presets/presets/amenity/bench.json index 59e531fea0..f45b9d8e69 100644 --- a/data/presets/presets/amenity/bench.json +++ b/data/presets/presets/amenity/bench.json @@ -1,4 +1,5 @@ { + "icon": "picnic-site", "fields": [ "backrest" ], diff --git a/data/presets/presets/amenity/clock.json b/data/presets/presets/amenity/clock.json index f4c1f9bf39..7c856a9ae7 100644 --- a/data/presets/presets/amenity/clock.json +++ b/data/presets/presets/amenity/clock.json @@ -1,4 +1,5 @@ { + "icon": "circle", "fields": [ "support", "display", diff --git a/data/presets/presets/amenity/fountain.json b/data/presets/presets/amenity/fountain.json index 1a92b3d335..f2a98ede4f 100644 --- a/data/presets/presets/amenity/fountain.json +++ b/data/presets/presets/amenity/fountain.json @@ -1,4 +1,5 @@ { + "icon": "water", "geometry": [ "point", "area" diff --git a/data/presets/presets/amenity/hunting_stand.json b/data/presets/presets/amenity/hunting_stand.json index 03136f3ab7..3e3cff3bd4 100644 --- a/data/presets/presets/amenity/hunting_stand.json +++ b/data/presets/presets/amenity/hunting_stand.json @@ -1,10 +1,17 @@ { + "icon": "zoo", "geometry": [ "point", "vertex", "area" ], - "terms": [], + "terms": [ + "game", + "lookout", + "shoot", + "wild", + "watch" + ], "tags": { "amenity": "hunting_stand" }, diff --git a/data/presets/presets/amenity/social_facility.json b/data/presets/presets/amenity/social_facility.json index 926a814b8c..5f8c0b7e52 100644 --- a/data/presets/presets/amenity/social_facility.json +++ b/data/presets/presets/amenity/social_facility.json @@ -1,4 +1,5 @@ { + "icon": "heart", "fields": [ "operator", "address", diff --git a/data/presets/presets/amenity/social_facility/food_bank.json b/data/presets/presets/amenity/social_facility/food_bank.json index 46053afac6..afabd45c65 100644 --- a/data/presets/presets/amenity/social_facility/food_bank.json +++ b/data/presets/presets/amenity/social_facility/food_bank.json @@ -1,4 +1,5 @@ { + "icon": "fast-food", "fields": [ "operator", "address", diff --git a/data/presets/presets/amenity/social_facility/group_home.json b/data/presets/presets/amenity/social_facility/group_home.json index ccf07da2a1..a574304afd 100644 --- a/data/presets/presets/amenity/social_facility/group_home.json +++ b/data/presets/presets/amenity/social_facility/group_home.json @@ -1,4 +1,5 @@ { + "icon": "lodging", "fields": [ "operator", "address", diff --git a/data/presets/presets/amenity/social_facility/homeless_shelter.json b/data/presets/presets/amenity/social_facility/homeless_shelter.json index 4562987789..1ba6eb58f9 100644 --- a/data/presets/presets/amenity/social_facility/homeless_shelter.json +++ b/data/presets/presets/amenity/social_facility/homeless_shelter.json @@ -1,4 +1,5 @@ { + "icon": "lodging", "fields": [ "operator", "address", diff --git a/data/presets/presets/amenity/vending_machine/cigarettes.json b/data/presets/presets/amenity/vending_machine/cigarettes.json index f51f6a9c3f..98c3e41fbb 100644 --- a/data/presets/presets/amenity/vending_machine/cigarettes.json +++ b/data/presets/presets/amenity/vending_machine/cigarettes.json @@ -1,4 +1,5 @@ { + "icon": "fire-station", "fields": [ "operator", "payment_multi", diff --git a/data/presets/presets/amenity/vending_machine/condoms.json b/data/presets/presets/amenity/vending_machine/condoms.json index 1623da0960..f98e99c997 100644 --- a/data/presets/presets/amenity/vending_machine/condoms.json +++ b/data/presets/presets/amenity/vending_machine/condoms.json @@ -1,4 +1,5 @@ { + "icon": "heart", "fields": [ "operator", "payment_multi", diff --git a/data/presets/presets/amenity/vending_machine/drinks.json b/data/presets/presets/amenity/vending_machine/drinks.json index 622bbba04d..74e5fe28d7 100644 --- a/data/presets/presets/amenity/vending_machine/drinks.json +++ b/data/presets/presets/amenity/vending_machine/drinks.json @@ -1,4 +1,5 @@ { + "icon": "alcohol-shop", "fields": [ "operator", "payment_multi", diff --git a/data/presets/presets/amenity/vending_machine/excrement_bags.json b/data/presets/presets/amenity/vending_machine/excrement_bags.json index 7e10ebaea1..69bcbc0f43 100644 --- a/data/presets/presets/amenity/vending_machine/excrement_bags.json +++ b/data/presets/presets/amenity/vending_machine/excrement_bags.json @@ -1,4 +1,5 @@ { + "icon": "veterinary", "fields": [ "operator", "fee", diff --git a/data/presets/presets/amenity/vending_machine/news_papers.json b/data/presets/presets/amenity/vending_machine/news_papers.json index aabd9f0b70..f93efcd8da 100644 --- a/data/presets/presets/amenity/vending_machine/news_papers.json +++ b/data/presets/presets/amenity/vending_machine/news_papers.json @@ -1,4 +1,5 @@ { + "icon": "library", "fields": [ "operator", "fee", diff --git a/data/presets/presets/amenity/vending_machine/parcel_pickup_dropoff.json b/data/presets/presets/amenity/vending_machine/parcel_pickup_dropoff.json index 381b261c3e..abfefa4437 100644 --- a/data/presets/presets/amenity/vending_machine/parcel_pickup_dropoff.json +++ b/data/presets/presets/amenity/vending_machine/parcel_pickup_dropoff.json @@ -1,4 +1,5 @@ { + "icon": "post", "fields": [ "operator", "payment_multi", diff --git a/data/presets/presets/amenity/vending_machine/parking_tickets.json b/data/presets/presets/amenity/vending_machine/parking_tickets.json index e24012bc53..a85b666655 100644 --- a/data/presets/presets/amenity/vending_machine/parking_tickets.json +++ b/data/presets/presets/amenity/vending_machine/parking_tickets.json @@ -1,4 +1,5 @@ { + "icon": "parking-garage", "fields": [ "operator", "payment_multi", diff --git a/data/presets/presets/amenity/vending_machine/public_transport_tickets.json b/data/presets/presets/amenity/vending_machine/public_transport_tickets.json index 29ed13b800..867a0d2722 100644 --- a/data/presets/presets/amenity/vending_machine/public_transport_tickets.json +++ b/data/presets/presets/amenity/vending_machine/public_transport_tickets.json @@ -1,4 +1,5 @@ { + "icon": "bus", "fields": [ "operator", "payment_multi", diff --git a/data/presets/presets/amenity/vending_machine/sweets.json b/data/presets/presets/amenity/vending_machine/sweets.json index f1f688d883..7ff6b11cc2 100644 --- a/data/presets/presets/amenity/vending_machine/sweets.json +++ b/data/presets/presets/amenity/vending_machine/sweets.json @@ -1,4 +1,5 @@ { + "icon": "ice-cream", "fields": [ "operator", "payment_multi", diff --git a/data/presets/presets/amenity/vending_machine/vending_machine.json b/data/presets/presets/amenity/vending_machine/vending_machine.json index d4fb06049a..40a99eeb9a 100644 --- a/data/presets/presets/amenity/vending_machine/vending_machine.json +++ b/data/presets/presets/amenity/vending_machine/vending_machine.json @@ -1,4 +1,5 @@ { + "icon": "gaming", "fields": [ "vending", "operator", diff --git a/data/presets/presets/highway/crossing.json b/data/presets/presets/highway/crossing.json index cf8458d2d5..4e199ebb6e 100644 --- a/data/presets/presets/highway/crossing.json +++ b/data/presets/presets/highway/crossing.json @@ -1,4 +1,5 @@ { + "icon": "pitch", "fields": [ "crossing", "kerb", diff --git a/data/presets/presets/highway/crosswalk.json b/data/presets/presets/highway/crosswalk.json index ab8696e0c7..530e08a0cc 100644 --- a/data/presets/presets/highway/crosswalk.json +++ b/data/presets/presets/highway/crosswalk.json @@ -1,4 +1,5 @@ { + "icon": "pitch", "fields": [ "crossing", "kerb", diff --git a/data/presets/presets/historic/castle.json b/data/presets/presets/historic/castle.json index fed1adb060..1bc4116c4d 100644 --- a/data/presets/presets/historic/castle.json +++ b/data/presets/presets/historic/castle.json @@ -1,4 +1,5 @@ { + "icon": "castle", "geometry": [ "point", "area" diff --git a/data/presets/presets/historic/wayside_cross.json b/data/presets/presets/historic/wayside_cross.json index b706533b6c..16cd3a66f7 100644 --- a/data/presets/presets/historic/wayside_cross.json +++ b/data/presets/presets/historic/wayside_cross.json @@ -1,4 +1,5 @@ { + "icon": "religious-christian", "geometry": [ "point", "vertex", @@ -8,4 +9,4 @@ "historic": "wayside_cross" }, "name": "Wayside Cross" -} \ No newline at end of file +} diff --git a/data/presets/presets/historic/wayside_shrine.json b/data/presets/presets/historic/wayside_shrine.json index 498fd37ccb..a4cd4deb6c 100644 --- a/data/presets/presets/historic/wayside_shrine.json +++ b/data/presets/presets/historic/wayside_shrine.json @@ -1,4 +1,5 @@ { + "icon": "religious-christian", "geometry": [ "point", "vertex", @@ -8,4 +9,4 @@ "historic": "wayside_shrine" }, "name": "Wayside Shrine" -} \ No newline at end of file +} diff --git a/data/presets/presets/power/generator.json b/data/presets/presets/power/generator.json index 22c9dbf024..fa1432f4eb 100644 --- a/data/presets/presets/power/generator.json +++ b/data/presets/presets/power/generator.json @@ -1,4 +1,5 @@ { + "icon": "danger", "fields": [ "operator", "generator/source", diff --git a/data/presets/presets/power/substation.json b/data/presets/presets/power/substation.json index 6cf9593efa..a7c896d3a8 100644 --- a/data/presets/presets/power/substation.json +++ b/data/presets/presets/power/substation.json @@ -1,4 +1,5 @@ { + "icon": "danger", "fields": [ "substation", "operator", diff --git a/data/presets/presets/power/transformer.json b/data/presets/presets/power/transformer.json index 68df65f9ff..6bc28caf1c 100644 --- a/data/presets/presets/power/transformer.json +++ b/data/presets/presets/power/transformer.json @@ -1,4 +1,5 @@ { + "icon": "danger", "geometry": [ "point", "vertex", @@ -8,4 +9,4 @@ "power": "transformer" }, "name": "Transformer" -} \ No newline at end of file +} diff --git a/data/presets/presets/tourism.json b/data/presets/presets/tourism.json index 88534c627a..2e830d6fea 100644 --- a/data/presets/presets/tourism.json +++ b/data/presets/presets/tourism.json @@ -1,4 +1,5 @@ { + "icon": "attraction", "fields": [ "tourism" ], @@ -11,4 +12,4 @@ "tourism": "*" }, "name": "Tourism" -} \ No newline at end of file +} diff --git a/data/presets/presets/tourism/information.json b/data/presets/presets/tourism/information.json index 7beee94807..b8b17ef394 100644 --- a/data/presets/presets/tourism/information.json +++ b/data/presets/presets/tourism/information.json @@ -1,4 +1,5 @@ { + "icon": "information", "fields": [ "information", "operator", diff --git a/data/presets/presets/tourism/theme_park.json b/data/presets/presets/tourism/theme_park.json index 298f0115f5..046b197a8a 100644 --- a/data/presets/presets/tourism/theme_park.json +++ b/data/presets/presets/tourism/theme_park.json @@ -1,4 +1,5 @@ { + "icon": "amusement-park", "fields": [ "operator", "address", diff --git a/data/presets/presets/tourism/viewpoint.json b/data/presets/presets/tourism/viewpoint.json index 950b8e672a..d99d55e45c 100644 --- a/data/presets/presets/tourism/viewpoint.json +++ b/data/presets/presets/tourism/viewpoint.json @@ -1,4 +1,5 @@ { + "icon": "star-stroked", "geometry": [ "point", "vertex" @@ -7,4 +8,4 @@ "tourism": "viewpoint" }, "name": "Viewpoint" -} \ No newline at end of file +} From 424e86bcf975c92e2ffd3f5fb81db8d4d57a6c39 Mon Sep 17 00:00:00 2001 From: bkil Date: Sun, 6 Nov 2016 19:19:52 +0100 Subject: [PATCH 10/11] data/presets/presets: replace water icon with drinking-water as needed I also liked the drop icon better, but it will be visually different from non-drinkable sources this way. --- data/presets/presets/amenity/drinking_water.json | 2 +- data/presets/presets/amenity/water_point.json | 2 +- data/presets/presets/waterway/water_point.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/data/presets/presets/amenity/drinking_water.json b/data/presets/presets/amenity/drinking_water.json index 9437c60241..cff034bb72 100644 --- a/data/presets/presets/amenity/drinking_water.json +++ b/data/presets/presets/amenity/drinking_water.json @@ -1,5 +1,5 @@ { - "icon": "water", + "icon": "drinking-water", "geometry": [ "point" ], diff --git a/data/presets/presets/amenity/water_point.json b/data/presets/presets/amenity/water_point.json index 0cdce3f527..834a6f99ff 100644 --- a/data/presets/presets/amenity/water_point.json +++ b/data/presets/presets/amenity/water_point.json @@ -1,5 +1,5 @@ { - "icon": "water", + "icon": "drinking-water", "geometry": [ "area", "vertex", diff --git a/data/presets/presets/waterway/water_point.json b/data/presets/presets/waterway/water_point.json index ddebec811e..07803dc63e 100644 --- a/data/presets/presets/waterway/water_point.json +++ b/data/presets/presets/waterway/water_point.json @@ -1,5 +1,5 @@ { - "icon": "water", + "icon": "drinking-water", "geometry": [ "area", "vertex", From 87e915cbd7fc1408cf33d09187d05671aaf6231f Mon Sep 17 00:00:00 2001 From: bkil Date: Sun, 6 Nov 2016 16:22:26 +0100 Subject: [PATCH 11/11] .gitignore: hide automatically generated files --- .gitignore | 6 + data/presets.yaml | 4108 ---- data/presets/categories.json | 169 - data/presets/fields.json | 1585 -- data/presets/presets.json | 40623 --------------------------------- data/taginfo.json | 2688 --- dist/locales/en.json | 4327 ---- 7 files changed, 6 insertions(+), 53500 deletions(-) delete mode 100644 data/presets.yaml delete mode 100644 data/presets/categories.json delete mode 100644 data/presets/fields.json delete mode 100644 data/presets/presets.json delete mode 100644 data/taginfo.json delete mode 100644 dist/locales/en.json diff --git a/.gitignore b/.gitignore index c3fd22f29d..d9f3004e5e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,15 @@ .DS_Store +data/presets.yaml +data/presets/categories.json +data/presets/fields.json +data/presets/presets.json data/data.js +data/taginfo.json dist/*.js dist/*.css dist/*.map dist/img/*.svg +dist/locales/en.json dist/mapillary-js/ node_modules/ npm-debug.log diff --git a/data/presets.yaml b/data/presets.yaml deleted file mode 100644 index 2f334eeadf..0000000000 --- a/data/presets.yaml +++ /dev/null @@ -1,4108 +0,0 @@ -en: - presets: - categories: - category-barrier: - name: Barrier Features - category-building: - name: Building Features - category-golf: - name: Golf Features - category-landuse: - name: Land Use Features - category-path: - name: Path Features - category-rail: - name: Rail Features - category-restriction: - name: Restriction Features - category-road: - name: Road Features - category-route: - name: Route Features - category-water-area: - name: Water Features - category-water-line: - name: Water Features - fields: - access: - # 'access=*, foot=*, motor_vehicle=*, bicycle=*, horse=*' - label: Allowed Access - options: - designated: - # access=designated - description: Access permitted according to signs or specific local laws - # access=designated - title: Designated - destination: - # access=destination - description: Access permitted only to reach a destination - # access=destination - title: Destination - dismount: - # access=dismount - description: Access permitted but rider must dismount - # access=dismount - title: Dismount - 'no': - # access=no - description: Access not permitted to the general public - # access=no - title: Prohibited - permissive: - # access=permissive - description: Access permitted until such time as the owner revokes the permission - # access=permissive - title: Permissive - private: - # access=private - description: Access permitted only with permission of the owner on an individual basis - # access=private - title: Private - 'yes': - # access=yes - description: Access permitted by law; a right of way - # access=yes - title: Allowed - # access field placeholder - placeholder: Not Specified - types: - access: All - bicycle: Bicycles - foot: Foot - horse: Horses - motor_vehicle: Motor Vehicles - access_simple: - # access=* - label: Allowed Access - access_toilets: - # access=* - label: Access - address: - # 'addr:city=*, addr:conscriptionnumber=*, addr:country=*, addr:district=*, addr:floor=*, addr:hamlet=*, addr:housename=*, addr:housenumber=*, addr:place=*, addr:postcode=*, addr:province=*, addr:state=*, addr:street=*, addr:subdistrict=*, addr:suburb=*' - label: Address - placeholders: - city: City - conscriptionnumber: '123' - country: Country - district: District - floor: Floor - hamlet: Hamlet - housename: Housename - housenumber: '123' - place: Place - postcode: Postcode - province: Province - state: State - street: Street - subdistrict: Subdistrict - suburb: Suburb - admin_level: - # admin_level=* - label: Admin Level - aerialway: - # aerialway=* - label: Type - aerialway/access: - # 'aerialway:access=*' - label: Access - options: - # 'aerialway:access=both' - both: Both - # 'aerialway:access=entry' - entry: Entry - # 'aerialway:access=exit' - exit: Exit - aerialway/bubble: - # 'aerialway:bubble=*' - label: Bubble - aerialway/capacity: - # 'aerialway:capacity=*' - label: Capacity (per hour) - # aerialway/capacity field placeholder - placeholder: '500, 2500, 5000...' - aerialway/duration: - # 'aerialway:duration=*' - label: Duration (minutes) - # aerialway/duration field placeholder - placeholder: '1, 2, 3...' - aerialway/heating: - # 'aerialway:heating=*' - label: Heated - aerialway/occupancy: - # 'aerialway:occupancy=*' - label: Occupancy - # aerialway/occupancy field placeholder - placeholder: '2, 4, 8...' - aerialway/summer/access: - # 'aerialway:summer:access=*' - label: Access (summer) - options: - # 'aerialway:summer:access=both' - both: Both - # 'aerialway:summer:access=entry' - entry: Entry - # 'aerialway:summer:access=exit' - exit: Exit - aeroway: - # aeroway=* - label: Type - amenity: - # amenity=* - label: Type - area/highway: - # 'area:highway=*' - label: Type - artist: - # artist_name=* - label: Artist - artwork_type: - # artwork_type=* - label: Type - atm: - # atm=* - label: ATM - backrest: - # backrest=* - label: Backrest - barrier: - # barrier=* - label: Type - beauty: - # beauty=* - label: Shop Type - bench: - # bench=* - label: Bench - bicycle_parking: - # bicycle_parking=* - label: Type - bin: - # bin=* - label: Waste Bin - blood_components: - # 'blood:=*' - label: Blood Components - options: - # 'blood:=plasma' - plasma: plasma - # 'blood:=platelets' - platelets: platelets - # 'blood:=stemcells' - stemcells: stem cell samples - # 'blood:=whole' - whole: whole blood - boundary: - # boundary=* - label: Type - brand: - # brand=* - label: Brand - building: - # building=* - label: Building - building_area: - # building=* - label: Building - capacity: - # capacity=* - label: Capacity - # capacity field placeholder - placeholder: '50, 100, 200...' - cardinal_direction: - # direction=* - label: Direction - options: - # direction=E - E: East - # direction=ENE - ENE: East-northeast - # direction=ESE - ESE: East-southeast - # direction=N - 'N': North - # direction=NE - NE: Northeast - # direction=NNE - NNE: North-northeast - # direction=NNW - NNW: North-northwest - # direction=NW - NW: Northwest - # direction=S - S: South - # direction=SE - SE: Southeast - # direction=SSE - SSE: South-southeast - # direction=SSW - SSW: South-southwest - # direction=SW - SW: Southwest - # direction=W - W: West - # direction=WNW - WNW: West-northwest - # direction=WSW - WSW: West-southwest - clock_direction: - # direction=* - label: Direction - options: - # direction=anticlockwise - anticlockwise: Counterclockwise - # direction=clockwise - clockwise: Clockwise - collection_times: - # collection_times=* - label: Collection Times - construction: - # construction=* - label: Type - content: - # content=* - label: Contents - country: - # country=* - label: Country - covered: - # covered=* - label: Covered - craft: - # craft=* - label: Type - crop: - # crop=* - label: Crop - crossing: - # crossing=* - label: Type - cuisine: - # cuisine=* - label: Cuisine - currency_multi: - # 'currency:=*' - label: Currency Types - cycle_network: - # cycle_network=* - label: Network - cycleway: - # 'cycleway:left=*, cycleway:right=*' - label: Bike Lanes - options: - # lane=yes - lane: - description: A bike lane separated from auto traffic by a painted line - title: Standard bike lane - # none=yes - none: - description: No bike lane - title: None - # opposite=yes - opposite: - description: A bike lane that travels in both directions on a one-way street - title: Contraflow bike lane - # opposite_lane=yes - opposite_lane: - description: A bike lane that travels in the opposite direction of traffic - title: Opposite bike lane - # share_busway=yes - share_busway: - description: A bike lane shared with a bus lane - title: Bike lane shared with bus - # shared_lane=yes - shared_lane: - description: A bike lane with no separation from auto traffic - title: Shared bike lane - # track=yes - track: - description: A bike lane separated from traffic by a physical barrier - title: Bike track - # cycleway field placeholder - placeholder: none - types: - 'cycleway:left': Left side - 'cycleway:right': Right side - date: - # date=* - label: Date - delivery: - # delivery=* - label: Delivery - denomination: - # denomination=* - label: Denomination - denotation: - # denotation=* - label: Denotation - description: - # description=* - label: Description - diaper: - # diaper=* - label: Diaper Changing Available - display: - # display=* - label: Display - dock: - # dock=* - label: Type - drive_through: - # drive_through=* - label: Drive-Through - electrified: - # electrified=* - label: Electrification - options: - # electrified=contact_line - contact_line: Contact Line - # electrified=no - 'no': 'No' - # electrified=rail - rail: Electrified Rail - # electrified=yes - 'yes': Yes (unspecified) - # electrified field placeholder - placeholder: 'Contact Line, Electrified Rail...' - elevation: - # ele=* - label: Elevation - emergency: - # emergency=* - label: Emergency - entrance: - # entrance=* - label: Type - except: - # except=* - label: Exceptions - fax: - # fax=* - label: Fax - # fax field placeholder - placeholder: +31 42 123 4567 - fee: - # fee=* - label: Fee - fire_hydrant/type: - # 'fire_hydrant:type=*' - label: Type - options: - # 'fire_hydrant:type=pillar' - pillar: Pillar/Aboveground - # 'fire_hydrant:type=pond' - pond: Pond - # 'fire_hydrant:type=underground' - underground: Underground - # 'fire_hydrant:type=wall' - wall: Wall - fixme: - # fixme=* - label: Fix Me - fuel: - # fuel=* - label: Fuel - fuel_multi: - # 'fuel:=*' - label: Fuel Types - gauge: - # gauge=* - label: Gauge - gender: - # 'male=*, female=*, unisex=*' - label: Gender - options: - # female=yes - female: Female - # male=yes - male: Male - # unisex=yes - unisex: Unisex - # gender field placeholder - placeholder: Unknown - generator/method: - # 'generator:method=*' - label: Method - generator/source: - # 'generator:source=*' - label: Source - generator/type: - # 'generator:type=*' - label: Type - golf_hole: - # ref=* - label: Reference - # golf_hole field placeholder - placeholder: Hole number (1-18) - handicap: - # handicap=* - label: Handicap - # handicap field placeholder - placeholder: 1-18 - handrail: - # handrail=* - label: Handrail - highway: - # highway=* - label: Type - historic: - # historic=* - label: Type - hoops: - # hoops=* - label: Hoops - # hoops field placeholder - placeholder: '1, 2, 4...' - iata: - # iata=* - label: IATA - icao: - # icao=* - label: ICAO - incline: - # incline=* - label: Incline - incline_steps: - # incline=* - label: Incline - options: - # incline=down - down: Down - # incline=up - up: Up - indoor: - # indoor=* - label: Indoor - information: - # information=* - label: Type - internet_access: - # internet_access=* - label: Internet Access - options: - # internet_access=no - 'no': 'No' - # internet_access=terminal - terminal: Terminal - # internet_access=wired - wired: Wired - # internet_access=wlan - wlan: Wifi - # internet_access=yes - 'yes': 'Yes' - internet_access/fee: - # 'internet_access:fee=*' - label: Internet Access Fee - kerb: - # kerb=* - label: Curb Ramp - lamp_type: - # lamp_type=* - label: Type - landuse: - # landuse=* - label: Type - lanes: - # lanes=* - label: Lanes - # lanes field placeholder - placeholder: '1, 2, 3...' - layer: - # layer=* - label: Layer - leaf_cycle: - # leaf_cycle=* - label: Leaf Cycle - options: - # leaf_cycle=deciduous - deciduous: Deciduous - # leaf_cycle=evergreen - evergreen: Evergreen - # leaf_cycle=mixed - mixed: Mixed - # leaf_cycle=semi_deciduous - semi_deciduous: Semi-Deciduous - # leaf_cycle=semi_evergreen - semi_evergreen: Semi-Evergreen - leaf_cycle_singular: - # leaf_cycle=* - label: Leaf Cycle - options: - # leaf_cycle=deciduous - deciduous: Deciduous - # leaf_cycle=evergreen - evergreen: Evergreen - # leaf_cycle=semi_deciduous - semi_deciduous: Semi-Deciduous - # leaf_cycle=semi_evergreen - semi_evergreen: Semi-Evergreen - leaf_type: - # leaf_type=* - label: Leaf Type - options: - # leaf_type=broadleaved - broadleaved: Broadleaved - # leaf_type=leafless - leafless: Leafless - # leaf_type=mixed - mixed: Mixed - # leaf_type=needleleaved - needleleaved: Needleleaved - leaf_type_singular: - # leaf_type=* - label: Leaf Type - options: - # leaf_type=broadleaved - broadleaved: Broadleaved - # leaf_type=leafless - leafless: Leafless - # leaf_type=needleleaved - needleleaved: Needleleaved - leisure: - # leisure=* - label: Type - length: - # length=* - label: Length (Meters) - level: - # level=* - label: Level - levels: - # 'building:levels=*' - label: Levels - # levels field placeholder - placeholder: '2, 4, 6...' - lit: - # lit=* - label: Lit - location: - # location=* - label: Location - man_made: - # man_made=* - label: Type - maxspeed: - # maxspeed=* - label: Speed Limit - # maxspeed field placeholder - placeholder: '40, 50, 60...' - maxstay: - # maxstay=* - label: Max Stay - mtb/scale: - # 'mtb:scale=*' - label: Mountain Biking Difficulty - options: - # 'mtb:scale=0' - '0': '0: Solid gravel/packed earth, no obstacles, wide curves' - # 'mtb:scale=1' - '1': '1: Some loose surface, small obstacles, wide curves' - # 'mtb:scale=2' - '2': '2: Much loose surface, large obstacles, easy hairpins' - # 'mtb:scale=3' - '3': '3: Slippery surface, large obstacles, tight hairpins' - # 'mtb:scale=4' - '4': '4: Loose surface or boulders, dangerous hairpins' - # 'mtb:scale=5' - '5': '5: Maximum difficulty, boulder fields, landslides' - # 'mtb:scale=6' - '6': '6: Not rideable except by the very best mountain bikers' - # mtb/scale field placeholder - placeholder: '0, 1, 2, 3...' - mtb/scale/imba: - # 'mtb:scale:imba=*' - label: IMBA Trail Difficulty - options: - # 'mtb:scale:imba=0' - '0': Easiest (white circle) - # 'mtb:scale:imba=1' - '1': Easy (green circle) - # 'mtb:scale:imba=2' - '2': Medium (blue square) - # 'mtb:scale:imba=3' - '3': Difficult (black diamond) - # 'mtb:scale:imba=4' - '4': Extremely Difficult (double black diamond) - # mtb/scale/imba field placeholder - placeholder: 'Easy, Medium, Difficult...' - mtb/scale/uphill: - # 'mtb:scale:uphill=*' - label: Mountain Biking Uphill Difficulty - options: - # 'mtb:scale:uphill=0' - '0': '0: Avg. incline <10%, gravel/packed earth, no obstacles' - # 'mtb:scale:uphill=1' - '1': '1: Avg. incline <15%, gravel/packed earth, few small objects' - # 'mtb:scale:uphill=2' - '2': '2: Avg. incline <20%, stable surface, fistsize rocks/roots' - # 'mtb:scale:uphill=3' - '3': '3: Avg. incline <25%, variable surface, fistsize rocks/branches' - # 'mtb:scale:uphill=4' - '4': '4: Avg. incline <30%, poor condition, big rocks/branches' - # 'mtb:scale:uphill=5' - '5': '5: Very steep, bike generally needs to be pushed or carried' - # mtb/scale/uphill field placeholder - placeholder: '0, 1, 2, 3...' - name: - # name=* - label: Name - # name field placeholder - placeholder: Common name (if any) - natural: - # natural=* - label: Natural - network: - # network=* - label: Network - network_bicycle: - # network=* - label: Network Type - options: - # network=icn - icn: International - # network=lcn - lcn: Local - # network=ncn - ncn: National - # network=rcn - rcn: Regional - # network_bicycle field placeholder - placeholder: 'Local, Regional, National, International' - network_foot: - # network=* - label: Network Type - options: - # network=iwn - iwn: International - # network=lwn - lwn: Local - # network=nwn - nwn: National - # network=rwn - rwn: Regional - # network_foot field placeholder - placeholder: 'Local, Regional, National, International' - network_horse: - # network=* - label: Network Type - options: - # network=ihn - ihn: International - # network=lhn - lhn: Local - # network=nhn - nhn: National - # network=rhn - rhn: Regional - # network_horse field placeholder - placeholder: 'Local, Regional, National, International' - network_road: - # network=* - label: Network - note: - # note=* - label: Note - office: - # office=* - label: Type - oneway: - # oneway=* - label: One Way - options: - # oneway=no - 'no': 'No' - # oneway=undefined - undefined: Assumed to be No - # oneway=yes - 'yes': 'Yes' - oneway_yes: - # oneway=* - label: One Way - options: - # oneway=no - 'no': 'No' - # oneway=undefined - undefined: Assumed to be Yes - # oneway=yes - 'yes': 'Yes' - opening_hours: - # opening_hours=* - label: Hours - operator: - # operator=* - label: Operator - par: - # par=* - label: Par - # par field placeholder - placeholder: '3, 4, 5...' - parallel_direction: - # direction=* - label: Direction - options: - # direction=backward - backward: Backward - # direction=forward - forward: Forward - park_ride: - # park_ride=* - label: Park and Ride - parking: - # parking=* - label: Type - options: - # parking=carports - carports: Carports - # parking=garage_boxes - garage_boxes: Garage Boxes - # parking=lane - lane: Roadside Lane - # parking=multi-storey - multi-storey: Multilevel - # parking=sheds - sheds: Sheds - # parking=surface - surface: Surface - # parking=underground - underground: Underground - payment_multi: - # 'payment:=*' - label: Payment Types - phone: - # phone=* - label: Phone - # phone field placeholder - placeholder: +31 42 123 4567 - piste/difficulty: - # 'piste:difficulty=*' - label: Difficulty - options: - # 'piste:difficulty=advanced' - advanced: Advanced (black diamond) - # 'piste:difficulty=easy' - easy: Easy (green circle) - # 'piste:difficulty=expert' - expert: Expert (double black diamond) - # 'piste:difficulty=extreme' - extreme: Extreme (climbing equipment required) - # 'piste:difficulty=freeride' - freeride: Freeride (off-piste) - # 'piste:difficulty=intermediate' - intermediate: Intermediate (blue square) - # 'piste:difficulty=novice' - novice: Novice (instructional) - # piste/difficulty field placeholder - placeholder: 'Easy, Intermediate, Advanced...' - piste/grooming: - # 'piste:grooming=*' - label: Grooming - options: - # 'piste:grooming=backcountry' - backcountry: Backcountry - # 'piste:grooming=classic' - classic: Classic - # 'piste:grooming=classic+skating' - classic+skating: Classic and Skating - # 'piste:grooming=mogul' - mogul: Mogul - # 'piste:grooming=scooter' - scooter: Scooter/Snowmobile - # 'piste:grooming=skating' - skating: Skating - piste/type: - # 'piste:type=*' - label: Type - options: - # 'piste:type=downhill' - downhill: Downhill - # 'piste:type=hike' - hike: Hike - # 'piste:type=ice_skate' - ice_skate: Ice Skate - # 'piste:type=nordic' - nordic: Nordic - # 'piste:type=playground' - playground: Playground - # 'piste:type=skitour' - skitour: Skitour - # 'piste:type=sled' - sled: Sled - # 'piste:type=sleigh' - sleigh: Sleigh - # 'piste:type=snow_park' - snow_park: Snow Park - place: - # place=* - label: Type - population: - # population=* - label: Population - power: - # power=* - label: Type - power_supply: - # power_supply=* - label: Power Supply - railway: - # railway=* - label: Type - recycling_accepts: - # 'recycling:=*' - label: Accepts - recycling_type: - # recycling_type=* - label: Recycling Type - options: - # recycling_type=centre - centre: Recycling Center - # recycling_type=container - container: Container - ref: - # ref=* - label: Reference - relation: - # type=* - label: Type - religion: - # religion=* - label: Religion - restriction: - # restriction=* - label: Type - restrictions: - label: Turn Restrictions - rooms: - # rooms=* - label: Rooms - route: - # route=* - label: Type - route_master: - # route_master=* - label: Type - sac_scale: - # sac_scale=* - label: Hiking Difficulty - options: - # sac_scale=alpine_hiking - alpine_hiking: 'T4: Alpine Hiking' - # sac_scale=demanding_alpine_hiking - demanding_alpine_hiking: 'T5: Demanding Alpine Hiking' - # sac_scale=demanding_mountain_hiking - demanding_mountain_hiking: 'T3: Demanding Mountain Hiking' - # sac_scale=difficult_alpine_hiking - difficult_alpine_hiking: 'T6: Difficult Alpine Hiking' - # sac_scale=hiking - hiking: 'T1: Hiking' - # sac_scale=mountain_hiking - mountain_hiking: 'T2: Mountain Hiking' - # sac_scale field placeholder - placeholder: 'Mountain Hiking, Alpine Hiking...' - sanitary_dump_station: - # sanitary_dump_station=* - label: Toilet Disposal - seasonal: - # seasonal=* - label: Seasonal - second_hand: - # second_hand=* - label: Sells Used - options: - # second_hand=no - 'no': 'No' - # second_hand=only - only: Only - # second_hand=yes - 'yes': 'Yes' - # second_hand field placeholder - placeholder: 'Yes, No, Only' - service: - # service=* - label: Type - service/bicycle: - # 'service:bicycle:=*' - label: Services - service_rail: - # service=* - label: Service Type - options: - # service=crossover - crossover: Crossover - # service=siding - siding: Siding - # service=spur - spur: Spur - # service=yard - yard: Yard - shelter: - # shelter=* - label: Shelter - shelter_type: - # shelter_type=* - label: Type - shop: - # shop=* - label: Type - site: - # site=* - label: Type - smoking: - # smoking=* - label: Smoking - options: - # smoking=dedicated - dedicated: Dedicated to smokers (e.g. smokers' club) - # smoking=isolated - isolated: 'In smoking areas, physically isolated' - # smoking=no - 'no': No smoking anywhere - # smoking=outside - outside: Allowed outside - # smoking=separated - separated: 'In smoking areas, not physically isolated' - # smoking=yes - 'yes': Allowed everywhere - # smoking field placeholder - placeholder: 'No, Separated, Yes...' - smoothness: - # smoothness=* - label: Smoothness - options: - # smoothness=bad - bad: 'Robust Wheels: trekking bike, car, rickshaw' - # smoothness=excellent - excellent: 'Thin Rollers: rollerblade, skateboard' - # smoothness=good - good: 'Thin Wheels: racing bike' - # smoothness=horrible - horrible: 'Off-Road: heavy duty off-road vehicle' - # smoothness=impassable - impassable: Impassable / No wheeled vehicle - # smoothness=intermediate - intermediate: 'Wheels: city bike, wheelchair, scooter' - # smoothness=very_bad - very_bad: 'High Clearance: light duty off-road vehicle' - # smoothness=very_horrible - very_horrible: 'Specialized off-road: tractor, ATV' - # smoothness field placeholder - placeholder: 'Thin Rollers, Wheels, Off-Road...' - social_facility_for: - # 'social_facility:for=*' - label: People served - # social_facility_for field placeholder - placeholder: 'Homeless, Disabled, Child, etc' - source: - # source=* - label: Source - sport: - # sport=* - label: Sport - sport_ice: - # sport=* - label: Sport - sport_racing: - # sport=* - label: Sport - stars: - # stars=* - label: Stars - stop: - # stop=* - label: Stop Type - options: - # stop=all - all: All Ways - # stop=minor - minor: Minor Road - structure: - # 'bridge=*, tunnel=*, embankment=*, cutting=*, ford=*' - label: Structure - options: - # bridge=yes - bridge: Bridge - # cutting=yes - cutting: Cutting - # embankment=yes - embankment: Embankment - # ford=yes - ford: Ford - # tunnel=yes - tunnel: Tunnel - # structure field placeholder - placeholder: Unknown - studio: - # studio=* - label: Type - substation: - # substation=* - label: Type - supervised: - # supervised=* - label: Supervised - support: - # support=* - label: Support - surface: - # surface=* - label: Surface - tactile_paving: - # tactile_paving=* - label: Tactile Paving - takeaway: - # takeaway=* - label: Takeaway - options: - # takeaway=no - 'no': 'No' - # takeaway=only - only: Takeaway Only - # takeaway=yes - 'yes': 'Yes' - # takeaway field placeholder - placeholder: 'Yes, No, Takeaway Only...' - toilets/disposal: - # 'toilets:disposal=*' - label: Disposal - options: - # 'toilets:disposal=bucket' - bucket: Bucket - # 'toilets:disposal=chemical' - chemical: Chemical - # 'toilets:disposal=flush' - flush: Flush - # 'toilets:disposal=pitlatrine' - pitlatrine: Pit/Latrine - tourism: - # tourism=* - label: Type - towertype: - # 'tower:type=*' - label: Tower type - tracktype: - # tracktype=* - label: Track Type - options: - # tracktype=grade1 - grade1: 'Solid: paved or heavily compacted hardcore surface' - # tracktype=grade2 - grade2: 'Mostly Solid: gravel/rock with some soft material mixed in' - # tracktype=grade3 - grade3: Even mixture of hard and soft materials - # tracktype=grade4 - grade4: 'Mostly Soft: soil/sand/grass with some hard material mixed in' - # tracktype=grade5 - grade5: 'Soft: soil/sand/grass' - # tracktype field placeholder - placeholder: 'Solid, Mostly Solid, Soft...' - traffic_calming: - # traffic_calming=* - label: Type - traffic_signals: - # traffic_signals=* - label: Type - trail_visibility: - # trail_visibility=* - label: Trail Visibility - options: - # trail_visibility=bad - bad: 'Bad: no markers, path sometimes invisible/pathless' - # trail_visibility=excellent - excellent: 'Excellent: unambiguous path or markers everywhere' - # trail_visibility=good - good: 'Good: markers visible, sometimes require searching' - # trail_visibility=horrible - horrible: 'Horrible: often pathless, some orientation skills required' - # trail_visibility=intermediate - intermediate: 'Intermediate: few markers, path mostly visible' - # trail_visibility=no - 'no': 'No: pathless, excellent orientation skills required' - # trail_visibility field placeholder - placeholder: 'Excellent, Good, Bad...' - trees: - # trees=* - label: Trees - tunnel: - # tunnel=* - label: Tunnel - vending: - # vending=* - label: Type of Goods - visibility: - # visibility=* - label: Visibility - options: - # visibility=area - area: Over 20m (65ft) - # visibility=house - house: Up to 5m (16ft) - # visibility=street - street: 5 to 20m (16 to 65ft) - water: - # water=* - label: Type - water_point: - # water_point=* - label: Water Point - waterway: - # waterway=* - label: Type - website: - # website=* - label: Website - # website field placeholder - placeholder: 'http://example.com/' - wetland: - # wetland=* - label: Type - wheelchair: - # wheelchair=* - label: Wheelchair Access - width: - # width=* - label: Width (Meters) - wikipedia: - # 'wikipedia=*, wikidata=*' - label: Wikipedia - presets: - address: - # 'addr:housenumber=*' - name: Address - terms: '' - advertising/billboard: - # advertising=billboard - name: Billboard - terms: '' - aerialway: - # aerialway=* - name: Aerialway - aerialway/cable_car: - # aerialway=cable_car - name: Cable Car - # 'terms: tramway,ropeway' - terms: '' - aerialway/chair_lift: - # aerialway=chair_lift - name: Chair Lift - terms: '' - aerialway/gondola: - # aerialway=gondola - name: Gondola - terms: '' - aerialway/magic_carpet: - # aerialway=magic_carpet - name: Magic Carpet Lift - terms: '' - aerialway/platter: - # aerialway=platter - name: Platter Lift - # 'terms: button lift,poma lift' - terms: '' - aerialway/pylon: - # aerialway=pylon - name: Aerialway Pylon - terms: '' - aerialway/rope_tow: - # aerialway=rope_tow - name: Rope Tow Lift - # 'terms: handle tow,bugel lift' - terms: '' - aerialway/station: - # aerialway=station - name: Aerialway Station - terms: '' - aerialway/t-bar: - # aerialway=t-bar - name: T-bar Lift - terms: '' - aeroway: - # aeroway=* - name: Aeroway - aeroway/aerodrome: - # aeroway=aerodrome - name: Airport - # 'terms: airplane,airport,aerodrome' - terms: '' - aeroway/apron: - # aeroway=apron - name: Apron - # 'terms: ramp' - terms: '' - aeroway/gate: - # aeroway=gate - name: Airport gate - terms: '' - aeroway/hangar: - # aeroway=hangar - name: Hangar - terms: '' - aeroway/helipad: - # aeroway=helipad - name: Helipad - # 'terms: helicopter,helipad,heliport' - terms: '' - aeroway/runway: - # aeroway=runway - name: Runway - # 'terms: landing strip' - terms: '' - aeroway/taxiway: - # aeroway=taxiway - name: Taxiway - terms: '' - aeroway/terminal: - # aeroway=terminal - name: Airport terminal - # 'terms: airport,aerodrome' - terms: '' - amenity: - # amenity=* - name: Amenity - amenity/arts_centre: - # amenity=arts_centre - name: Arts Center - terms: '' - amenity/atm: - # amenity=atm - name: ATM - # 'terms: money,cash,machine' - terms: '' - amenity/bank: - # amenity=bank - name: Bank - # 'terms: credit union,check,deposit,fund,investment,repository,reserve,safe,savings,stock,treasury,trust,vault' - terms: '' - amenity/bar: - # amenity=bar - name: Bar - # 'terms: dive,beer,bier,booze' - terms: '' - amenity/bbq: - # amenity=bbq - name: Barbecue/Grill - # 'terms: bbq,grill' - terms: '' - amenity/bench: - # amenity=bench - name: Bench - # 'terms: seat' - terms: '' - amenity/bicycle_parking: - # amenity=bicycle_parking - name: Bicycle Parking - # 'terms: bike' - terms: '' - amenity/bicycle_rental: - # amenity=bicycle_rental - name: Bicycle Rental - # 'terms: bike' - terms: '' - amenity/bicycle_repair_station: - # amenity=bicycle_repair_station - name: Bicycle Repair Tool Stand - # 'terms: bike,repair,chain,pump' - terms: '' - amenity/biergarten: - # amenity=biergarten - name: Beer Garden - # 'terms: beer,bier,booze' - terms: '' - amenity/boat_rental: - # amenity=boat_rental - name: Boat Rental - terms: '' - amenity/bureau_de_change: - # amenity=bureau_de_change - name: Currency Exchange - # 'terms: bureau de change,money changer' - terms: '' - amenity/bus_station: - # amenity=bus_station - name: Bus Station - terms: '' - amenity/cafe: - # amenity=cafe - name: Cafe - # 'terms: bistro,coffee,tea' - terms: '' - amenity/car_rental: - # amenity=car_rental - name: Car Rental - terms: '' - amenity/car_sharing: - # amenity=car_sharing - name: Car Sharing - terms: '' - amenity/car_wash: - # amenity=car_wash - name: Car Wash - terms: '' - amenity/casino: - # amenity=casino - name: Casino - # 'terms: gambling,roulette,craps,poker,blackjack' - terms: '' - amenity/charging_station: - # amenity=charging_station - name: Charging Station - # 'terms: EV,Electric Vehicle,Supercharger' - terms: '' - amenity/childcare: - # amenity=childcare - name: Nursery/Childcare - # 'terms: daycare,orphanage,playgroup' - terms: '' - amenity/cinema: - # amenity=cinema - name: Cinema - # 'terms: drive-in,film,flick,movie,theater,picture,show,screen' - terms: '' - amenity/clinic: - # amenity=clinic - name: Clinic - # 'terms: medical,urgentcare' - terms: '' - amenity/clock: - # amenity=clock - name: Clock - terms: '' - amenity/college: - # amenity=college - name: College Grounds - # 'terms: university' - terms: '' - amenity/community_centre: - # amenity=community_centre - name: Community Center - # 'terms: event,hall' - terms: '' - amenity/compressed_air: - # amenity=compressed_air - name: Compressed Air - terms: '' - amenity/courthouse: - # amenity=courthouse - name: Courthouse - terms: '' - amenity/coworking_space: - # amenity=coworking_space - name: Coworking Space - # 'terms: coworking,office' - terms: '' - amenity/dentist: - # amenity=dentist - name: Dentist - # 'terms: tooth,teeth' - terms: '' - amenity/doctors: - # amenity=doctors - name: Doctor - # 'terms: medic*' - terms: '' - amenity/dojo: - # amenity=dojo - name: Dojo / Martial Arts Academy - # 'terms: martial arts,dojang' - terms: '' - amenity/drinking_water: - # amenity=drinking_water - name: Drinking Water - # 'terms: fountain,potable' - terms: '' - amenity/embassy: - # amenity=embassy - name: Embassy - terms: '' - amenity/fast_food: - # amenity=fast_food - name: Fast Food - # 'terms: restaurant,takeaway' - terms: '' - amenity/ferry_terminal: - # amenity=ferry_terminal - name: Ferry Terminal - terms: '' - amenity/fire_station: - # amenity=fire_station - name: Fire Station - terms: '' - amenity/fountain: - # amenity=fountain - name: Fountain - terms: '' - amenity/fuel: - # amenity=fuel - name: Gas Station - # 'terms: petrol,fuel,gasoline,propane,diesel,lng,cng,biodiesel' - terms: '' - amenity/grave_yard: - # amenity=grave_yard - name: Graveyard - terms: '' - amenity/grit_bin: - # amenity=grit_bin - name: Grit Bin - # 'terms: salt,sand' - terms: '' - amenity/hospital: - # amenity=hospital - name: Hospital Grounds - # 'terms: clinic,doctor,emergency room,health service,hospice,infirmary,institution,nursing home,sanatorium,sanitarium,sick,surgery,ward' - terms: '' - amenity/hunting_stand: - # amenity=hunting_stand - name: Hunting Stand - terms: '' - amenity/ice_cream: - # amenity=ice_cream - name: Ice Cream Shop - # 'terms: gelato,sorbet,sherbet,frozen,yogurt' - terms: '' - amenity/kindergarten: - # amenity=kindergarten - name: Preschool/Kindergarten Grounds - # 'terms: kindergarden,pre-school' - terms: '' - amenity/library: - # amenity=library - name: Library - # 'terms: book' - terms: '' - amenity/marketplace: - # amenity=marketplace - name: Marketplace - terms: '' - amenity/motorcycle_parking: - # amenity=motorcycle_parking - name: Motorcycle Parking - terms: '' - amenity/nightclub: - # amenity=nightclub - name: Nightclub - # 'terms: disco*,night club,dancing,dance club' - terms: '' - amenity/parking: - # amenity=parking - name: Car Parking - terms: '' - amenity/parking_entrance: - # amenity=parking_entrance - name: Parking Garage Entrance/Exit - terms: '' - amenity/parking_space: - # amenity=parking_space - name: Parking Space - terms: '' - amenity/pharmacy: - # amenity=pharmacy - name: Pharmacy - # 'terms: drug*,med*,prescription' - terms: '' - amenity/place_of_worship: - # amenity=place_of_worship - name: Place of Worship - # 'terms: abbey,basilica,bethel,cathedral,chancel,chantry,chapel,church,fold,house of God,house of prayer,house of worship,minster,mission,mosque,oratory,parish,sacellum,sanctuary,shrine,synagogue,tabernacle,temple' - terms: '' - amenity/place_of_worship/buddhist: - # 'amenity=place_of_worship, religion=buddhist' - name: Buddhist Temple - # 'terms: stupa,vihara,monastery,temple,pagoda,zendo,dojo' - terms: '' - amenity/place_of_worship/christian: - # 'amenity=place_of_worship, religion=christian' - name: Church - # 'terms: christian,abbey,basilica,bethel,cathedral,chancel,chantry,chapel,fold,house of God,house of prayer,house of worship,minster,mission,oratory,parish,sacellum,sanctuary,shrine,tabernacle,temple' - terms: '' - amenity/place_of_worship/jewish: - # 'amenity=place_of_worship, religion=jewish' - name: Synagogue - # 'terms: jewish' - terms: '' - amenity/place_of_worship/muslim: - # 'amenity=place_of_worship, religion=muslim' - name: Mosque - # 'terms: muslim' - terms: '' - amenity/planetarium: - # amenity=planetarium - name: Planetarium - # 'terms: museum,astronomy,observatory' - terms: '' - amenity/police: - # amenity=police - name: Police - # 'terms: badge,constable,constabulary,cop,detective,fed,law,enforcement,officer,patrol' - terms: '' - amenity/post_box: - # amenity=post_box - name: Mailbox - # 'terms: letter,post' - terms: '' - amenity/post_office: - # amenity=post_office - name: Post Office - # 'terms: letter,mail' - terms: '' - amenity/prison: - # amenity=prison - name: Prison Grounds - # 'terms: cell,jail' - terms: '' - amenity/pub: - # amenity=pub - name: Pub - # 'terms: dive,beer,bier,booze' - terms: '' - amenity/public_bookcase: - # amenity=public_bookcase - name: Public Bookcase - # 'terms: library,bookcrossing' - terms: '' - amenity/ranger_station: - # amenity=ranger_station - name: Ranger Station - # 'terms: visitor center,visitor centre,permit center,permit centre,backcountry office,warden office,warden center' - terms: '' - amenity/recycling: - # amenity=recycling - name: Recycling - # 'terms: bin,can,bottle,glass,garbage,rubbish,scrap,trash' - terms: '' - amenity/recycling_centre: - # 'amenity=recycling, recycling_type=centre' - name: Recycling Center - # 'terms: bottle,can,dump,glass,garbage,rubbish,scrap,trash' - terms: '' - amenity/register_office: - # amenity=register_office - name: Register Office - amenity/restaurant: - # amenity=restaurant - name: Restaurant - # 'terms: bar,breakfast,cafe,café,canteen,coffee,dine,dining,dinner,drive-in,eat,grill,lunch,table' - terms: '' - amenity/sanitary_dump_station: - # amenity=sanitary_dump_station - name: RV Toilet Disposal - # 'terms: Motor Home,Camper,Sanitary,Dump Station,Elsan,CDP,CTDP,Chemical Toilet' - terms: '' - amenity/school: - # amenity=school - name: School Grounds - # 'terms: academy,elementary school,middle school,high school' - terms: '' - amenity/shelter: - # amenity=shelter - name: Shelter - # 'terms: lean-to,gazebo,picnic' - terms: '' - amenity/social_facility: - # amenity=social_facility - name: Social Facility - terms: '' - amenity/social_facility/food_bank: - # 'amenity=social_facility, social_facility=food_bank' - name: Food Bank - terms: '' - amenity/social_facility/group_home: - # 'amenity=social_facility, social_facility=group_home, social_facility:for=senior' - name: Elderly Group Home - # 'terms: old,senior,living' - terms: '' - amenity/social_facility/homeless_shelter: - # 'amenity=social_facility, social_facility=shelter, social_facility:for=homeless' - name: Homeless Shelter - # 'terms: houseless,unhoused,displaced' - terms: '' - amenity/studio: - # amenity=studio - name: Studio - # 'terms: recording,radio,television' - terms: '' - amenity/swimming_pool: - # amenity=swimming_pool - name: Swimming Pool - amenity/taxi: - # amenity=taxi - name: Taxi Stand - # 'terms: cab' - terms: '' - amenity/telephone: - # amenity=telephone - name: Telephone - # 'terms: phone' - terms: '' - amenity/theatre: - # amenity=theatre - name: Theater - # 'terms: theatre,performance,play,musical' - terms: '' - amenity/toilets: - # amenity=toilets - name: Toilets - # 'terms: bathroom,restroom,outhouse,privy,head,lavatory,latrine,water closet,WC,W.C.' - terms: '' - amenity/townhall: - # amenity=townhall - name: Town Hall - # 'terms: village,city,government,courthouse,municipal' - terms: '' - amenity/university: - # amenity=university - name: University Grounds - # 'terms: college' - terms: '' - amenity/vending_machine/cigarettes: - # 'amenity=vending_machine, vending=cigarettes' - name: Cigarette Vending Machine - # 'terms: cigarette' - terms: '' - amenity/vending_machine/condoms: - # 'amenity=vending_machine, vending=condoms' - name: Condom Vending Machine - # 'terms: condom' - terms: '' - amenity/vending_machine/drinks: - # 'amenity=vending_machine, vending=drinks' - name: Drink Vending Machine - # 'terms: drink,soda,beverage,juice,pop' - terms: '' - amenity/vending_machine/excrement_bags: - # 'amenity=vending_machine, vending=excrement_bags' - name: Excrement Bag Vending Machine - # 'terms: excrement bags,poop,dog,animal' - terms: '' - amenity/vending_machine/news_papers: - # 'amenity=vending_machine, vending=news_papers' - name: Newspaper Vending Machine - # 'terms: newspaper' - terms: '' - amenity/vending_machine/parcel_pickup_dropoff: - # 'amenity=vending_machine, vending=parcel_pickup;parcel_mail_in' - name: Parcel Pickup/Dropoff Vending Machine - # 'terms: parcel,mail,pickup' - terms: '' - amenity/vending_machine/parking_tickets: - # 'amenity=vending_machine, vending=parking_tickets' - name: Parking Ticket Vending Machine - # 'terms: parking,ticket' - terms: '' - amenity/vending_machine/public_transport_tickets: - # 'amenity=vending_machine, vending=public_transport_tickets' - name: Transit Ticket Vending Machine - # 'terms: bus,train,ferry,rail,ticket,transportation' - terms: '' - amenity/vending_machine/sweets: - # 'amenity=vending_machine, vending=sweets' - name: Snack Vending Machine - # 'terms: candy,gum,chip,pretzel,cookie,cracker' - terms: '' - amenity/vending_machine/vending_machine: - # amenity=vending_machine - name: Vending Machine - terms: '' - amenity/veterinary: - # amenity=veterinary - name: Veterinary - # 'terms: pet clinic,veterinarian,animal hospital,pet doctor' - terms: '' - amenity/waste_basket: - # amenity=waste_basket - name: Waste Basket - # 'terms: bin,garbage,rubbish,litter,trash' - terms: '' - amenity/waste_disposal: - # amenity=waste_disposal - name: Garbage Dumpster - # 'terms: garbage,rubbish,litter,trash' - terms: '' - amenity/waste_transfer_station: - # amenity=waste_transfer_station - name: Waste Transfer Station - # 'terms: dump,garbage,recycling,rubbish,scrap,trash' - terms: '' - amenity/water_point: - # amenity=water_point - name: RV Drinking Water - terms: '' - area: - # area=yes - name: Area - terms: '' - area/highway: - # 'area:highway=*' - name: Road Surface - terms: '' - barrier: - # barrier=* - name: Barrier - terms: '' - barrier/block: - # barrier=block - name: Block - terms: '' - barrier/bollard: - # barrier=bollard - name: Bollard - terms: '' - barrier/cattle_grid: - # barrier=cattle_grid - name: Cattle Grid - terms: '' - barrier/city_wall: - # barrier=city_wall - name: City Wall - terms: '' - barrier/cycle_barrier: - # barrier=cycle_barrier - name: Cycle Barrier - terms: '' - barrier/ditch: - # barrier=ditch - name: Trench - terms: '' - barrier/entrance: - # barrier=entrance - name: Entrance - barrier/fence: - # barrier=fence - name: Fence - terms: '' - barrier/gate: - # barrier=gate - name: Gate - terms: '' - barrier/hedge: - # barrier=hedge - name: Hedge - terms: '' - barrier/kissing_gate: - # barrier=kissing_gate - name: Kissing Gate - terms: '' - barrier/lift_gate: - # barrier=lift_gate - name: Lift Gate - terms: '' - barrier/retaining_wall: - # barrier=retaining_wall - name: Retaining Wall - terms: '' - barrier/stile: - # barrier=stile - name: Stile - terms: '' - barrier/toll_booth: - # barrier=toll_booth - name: Toll Booth - terms: '' - barrier/wall: - # barrier=wall - name: Wall - terms: '' - boundary/administrative: - # boundary=administrative - name: Administrative Boundary - terms: '' - building: - # building=* - name: Building - terms: '' - building/apartments: - # building=apartments - name: Apartments - terms: '' - building/barn: - # building=barn - name: Barn - terms: '' - building/bunker: - # building=bunker - name: Bunker - building/cabin: - # building=cabin - name: Cabin - terms: '' - building/cathedral: - # building=cathedral - name: Cathedral Building - terms: '' - building/chapel: - # building=chapel - name: Chapel Building - terms: '' - building/church: - # building=church - name: Church Building - terms: '' - building/college: - # building=college - name: College Building - # 'terms: university' - terms: '' - building/commercial: - # building=commercial - name: Commercial Building - terms: '' - building/construction: - # building=construction - name: Building Under Construction - terms: '' - building/detached: - # building=detached - name: Detached House - # 'terms: home,single,family,residence,dwelling' - terms: '' - building/dormitory: - # building=dormitory - name: Dormitory - terms: '' - building/entrance: - # building=entrance - name: Entrance/Exit - building/garage: - # building=garage - name: Garage - terms: '' - building/garages: - # building=garages - name: Garages - terms: '' - building/greenhouse: - # building=greenhouse - name: Greenhouse - terms: '' - building/hospital: - # building=hospital - name: Hospital Building - terms: '' - building/hotel: - # building=hotel - name: Hotel Building - terms: '' - building/house: - # building=house - name: House - # 'terms: home,family,residence,dwelling' - terms: '' - building/hut: - # building=hut - name: Hut - terms: '' - building/industrial: - # building=industrial - name: Industrial Building - terms: '' - building/kindergarten: - # building=kindergarten - name: Preschool/Kindergarten Building - # 'terms: kindergarden,pre-school' - terms: '' - building/public: - # building=public - name: Public Building - terms: '' - building/residential: - # building=residential - name: Residential Building - terms: '' - building/retail: - # building=retail - name: Retail Building - terms: '' - building/roof: - # building=roof - name: Roof - terms: '' - building/school: - # building=school - name: School Building - # 'terms: academy,elementary school,middle school,high school' - terms: '' - building/semidetached_house: - # building=semidetached_house - name: Semi-Detached House - # 'terms: home,double,duplex,twin,family,residence,dwelling' - terms: '' - building/shed: - # building=shed - name: Shed - terms: '' - building/stable: - # building=stable - name: Stable - terms: '' - building/static_caravan: - # building=static_caravan - name: Static Mobile Home - terms: '' - building/terrace: - # building=terrace - name: Row Houses - # 'terms: home,terrace,brownstone,family,residence,dwelling' - terms: '' - building/train_station: - # building=train_station - name: Train Station - building/university: - # building=university - name: University Building - # 'terms: college' - terms: '' - building/warehouse: - # building=warehouse - name: Warehouse - terms: '' - camp_site/camp_pitch: - # camp_site=camp_pitch - name: Camp Pitch - # 'terms: tent,rv' - terms: '' - craft: - # craft=* - name: Craft - terms: '' - craft/basket_maker: - # craft=basket_maker - name: Basket Maker - terms: '' - craft/beekeeper: - # craft=beekeeper - name: Beekeeper - terms: '' - craft/blacksmith: - # craft=blacksmith - name: Blacksmith - terms: '' - craft/boatbuilder: - # craft=boatbuilder - name: Boat Builder - terms: '' - craft/bookbinder: - # craft=bookbinder - name: Bookbinder - # 'terms: book repair' - terms: '' - craft/brewery: - # craft=brewery - name: Brewery - # 'terms: beer,bier' - terms: '' - craft/carpenter: - # craft=carpenter - name: Carpenter - # 'terms: woodworker' - terms: '' - craft/carpet_layer: - # craft=carpet_layer - name: Carpet Layer - terms: '' - craft/caterer: - # craft=caterer - name: Caterer - terms: '' - craft/clockmaker: - # craft=clockmaker - name: Clockmaker - terms: '' - craft/confectionery: - # craft=confectionery - name: Confectionery - # 'terms: sweets,candy' - terms: '' - craft/dressmaker: - # craft=dressmaker - name: Dressmaker - # 'terms: seamstress' - terms: '' - craft/electrician: - # craft=electrician - name: Electrician - # 'terms: power,wire' - terms: '' - craft/gardener: - # craft=gardener - name: Gardener - # 'terms: landscaper,grounds keeper' - terms: '' - craft/glaziery: - # craft=glaziery - name: Glaziery - # 'terms: glass,stained-glass,window' - terms: '' - craft/handicraft: - # craft=handicraft - name: Handicraft - terms: '' - craft/hvac: - # craft=hvac - name: HVAC - # 'terms: heat*,vent*,air conditioning' - terms: '' - craft/insulator: - # craft=insulation - name: Insulator - terms: '' - craft/jeweler: - # craft=jeweler - name: Jeweler - craft/key_cutter: - # craft=key_cutter - name: Key Cutter - terms: '' - craft/locksmith: - # craft=locksmith - name: Locksmith - craft/metal_construction: - # craft=metal_construction - name: Metal Construction - terms: '' - craft/optician: - # craft=optician - name: Optician - craft/painter: - # craft=painter - name: Painter - terms: '' - craft/photographer: - # craft=photographer - name: Photographer - terms: '' - craft/photographic_laboratory: - # craft=photographic_laboratory - name: Photographic Laboratory - # 'terms: film' - terms: '' - craft/plasterer: - # craft=plasterer - name: Plasterer - terms: '' - craft/plumber: - # craft=plumber - name: Plumber - # 'terms: pipe' - terms: '' - craft/pottery: - # craft=pottery - name: Pottery - # 'terms: ceramic' - terms: '' - craft/rigger: - # craft=rigger - name: Rigger - terms: '' - craft/roofer: - # craft=roofer - name: Roofer - terms: '' - craft/saddler: - # craft=saddler - name: Saddler - terms: '' - craft/sailmaker: - # craft=sailmaker - name: Sailmaker - terms: '' - craft/sawmill: - # craft=sawmill - name: Sawmill - # 'terms: lumber' - terms: '' - craft/scaffolder: - # craft=scaffolder - name: Scaffolder - terms: '' - craft/sculpter: - # craft=sculpter - name: Sculpter - terms: '' - craft/shoemaker: - # craft=shoemaker - name: Shoemaker - # 'terms: cobbler' - terms: '' - craft/stonemason: - # craft=stonemason - name: Stonemason - # 'terms: masonry' - terms: '' - craft/sweep: - # craft=sweep - name: Chimney Sweep - terms: '' - craft/tailor: - # craft=tailor - name: Tailor - craft/tiler: - # craft=tiler - name: Tiler - terms: '' - craft/tinsmith: - # craft=tinsmith - name: Tinsmith - terms: '' - craft/upholsterer: - # craft=upholsterer - name: Upholsterer - terms: '' - craft/watchmaker: - # craft=watchmaker - name: Watchmaker - terms: '' - craft/window_construction: - # craft=window_construction - name: Window Construction - # 'terms: glass' - terms: '' - craft/winery: - # craft=winery - name: Winery - terms: '' - embankment: - # embankment=yes - name: Embankment - terms: '' - emergency/ambulance_station: - # emergency=ambulance_station - name: Ambulance Station - # 'terms: EMS,EMT,rescue' - terms: '' - emergency/defibrillator: - # emergency=defibrillator - name: Defibrillator - # 'terms: AED' - terms: '' - emergency/designated: - # emergency=designated - name: Emergency Access Designated - emergency/destination: - # emergency=destination - name: Emergency Access Destination - emergency/fire_hydrant: - # emergency=fire_hydrant - name: Fire Hydrant - terms: '' - emergency/no: - # emergency=no - name: Emergency Access No - emergency/official: - # emergency=official - name: Emergency Access Official - emergency/phone: - # emergency=phone - name: Emergency Phone - terms: '' - emergency/private: - # emergency=private - name: Emergency Access Private - emergency/yes: - # emergency=yes - name: Emergency Access Yes - entrance: - # entrance=* - name: Entrance/Exit - terms: '' - footway/crossing: - # 'highway=footway, footway=crossing' - name: Street Crossing - terms: '' - footway/crosswalk: - # 'highway=footway, footway=crossing, crossing=zebra' - name: Pedestrian Crosswalk - # 'terms: zebra crossing' - terms: '' - footway/sidewalk: - # 'highway=footway, footway=sidewalk' - name: Sidewalk - terms: '' - ford: - # ford=yes - name: Ford - terms: '' - golf/bunker: - # 'golf=bunker, natural=sand' - name: Sand Trap - # 'terms: hazard,bunker' - terms: '' - golf/fairway: - # 'golf=fairway, landuse=grass' - name: Fairway - terms: '' - golf/green: - # 'golf=green, landuse=grass, leisure=pitch, sport=golf' - name: Putting Green - terms: '' - golf/hole: - # golf=hole - name: Golf Hole - terms: '' - golf/lateral_water_hazard_area: - # 'golf=lateral_water_hazard, natural=water' - name: Lateral Water Hazard - terms: '' - golf/lateral_water_hazard_line: - # golf=lateral_water_hazard - name: Lateral Water Hazard - terms: '' - golf/rough: - # 'golf=rough, landuse=grass' - name: Rough - terms: '' - golf/tee: - # 'golf=tee, landuse=grass' - name: Tee Box - # 'terms: teeing ground' - terms: '' - golf/water_hazard_area: - # 'golf=water_hazard, natural=water' - name: Water Hazard - terms: '' - golf/water_hazard_line: - # golf=water_hazard - name: Water Hazard - terms: '' - healthcare/blood_donation: - # healthcare=blood_donation - name: Blood Donor Center - # 'terms: blood bank,blood donation,blood transfusion,apheresis,plasmapheresis,plateletpheresis,stem cell donation' - terms: '' - highway: - # highway=* - name: Highway - highway/bridleway: - # highway=bridleway - name: Bridle Path - # 'terms: bridleway,equestrian,horse' - terms: '' - highway/bus_stop: - # highway=bus_stop - name: Bus Stop - terms: '' - highway/corridor: - # highway=corridor - name: Indoor Corridor - # 'terms: gallery,hall,hallway,indoor,passage,passageway' - terms: '' - highway/crossing: - # highway=crossing - name: Street Crossing - terms: '' - highway/crosswalk: - # 'highway=crossing, crossing=zebra' - name: Pedestrian Crosswalk - # 'terms: zebra crossing' - terms: '' - highway/cycleway: - # highway=cycleway - name: Cycle Path - # 'terms: bike' - terms: '' - highway/footway: - # highway=footway - name: Foot Path - # 'terms: hike,hiking,trackway,trail,walk' - terms: '' - highway/give_way: - # highway=give_way - name: Yield Sign - # 'terms: give way,yield,sign' - terms: '' - highway/living_street: - # highway=living_street - name: Living Street - terms: '' - highway/mini_roundabout: - # highway=mini_roundabout - name: Mini-Roundabout - terms: '' - highway/motorway: - # highway=motorway - name: Motorway - terms: '' - highway/motorway_junction: - # highway=motorway_junction - name: Motorway Junction / Exit - terms: '' - highway/motorway_link: - # highway=motorway_link - name: Motorway Link - # 'terms: ramp,on ramp,off ramp' - terms: '' - highway/path: - # highway=path - name: Path - # 'terms: hike,hiking,trackway,trail,walk' - terms: '' - highway/pedestrian: - # highway=pedestrian - name: Pedestrian Street - terms: '' - highway/primary: - # highway=primary - name: Primary Road - terms: '' - highway/primary_link: - # highway=primary_link - name: Primary Link - # 'terms: ramp,on ramp,off ramp' - terms: '' - highway/raceway: - # highway=raceway - name: Motor Raceway - # 'terms: auto*,race*,nascar' - terms: '' - highway/residential: - # highway=residential - name: Residential Road - terms: '' - highway/rest_area: - # highway=rest_area - name: Rest Area - # 'terms: rest stop' - terms: '' - highway/road: - # highway=road - name: Unknown Road - terms: '' - highway/secondary: - # highway=secondary - name: Secondary Road - terms: '' - highway/secondary_link: - # highway=secondary_link - name: Secondary Link - # 'terms: ramp,on ramp,off ramp' - terms: '' - highway/service: - # highway=service - name: Service Road - terms: '' - highway/service/alley: - # 'highway=service, service=alley' - name: Alley - terms: '' - highway/service/drive-through: - # 'highway=service, service=drive-through' - name: Drive-Through - terms: '' - highway/service/driveway: - # 'highway=service, service=driveway' - name: Driveway - terms: '' - highway/service/emergency_access: - # 'highway=service, service=emergency_access' - name: Emergency Access - terms: '' - highway/service/parking_aisle: - # 'highway=service, service=parking_aisle' - name: Parking Aisle - terms: '' - highway/services: - # highway=services - name: Service Area - # 'terms: services,travel plaza,service station' - terms: '' - highway/steps: - # highway=steps - name: Steps - # 'terms: stairs,staircase' - terms: '' - highway/stop: - # highway=stop - name: Stop Sign - # 'terms: stop,halt,sign' - terms: '' - highway/street_lamp: - # highway=street_lamp - name: Street Lamp - # 'terms: streetlight,street light,lamp,light,gaslight' - terms: '' - highway/tertiary: - # highway=tertiary - name: Tertiary Road - terms: '' - highway/tertiary_link: - # highway=tertiary_link - name: Tertiary Link - # 'terms: ramp,on ramp,off ramp' - terms: '' - highway/track: - # highway=track - name: Unmaintained Track Road - # 'terms: woods road,forest road,logging road,fire road,farm road,agricultural road,ranch road,carriage road,primitive,unmaintained,rut,offroad,4wd,4x4,four wheel drive,atv,quad,jeep,double track,two track' - terms: '' - highway/traffic_signals: - # highway=traffic_signals - name: Traffic Signals - # 'terms: light,stoplight,traffic light' - terms: '' - highway/trunk: - # highway=trunk - name: Trunk Road - terms: '' - highway/trunk_link: - # highway=trunk_link - name: Trunk Link - # 'terms: ramp,on ramp,off ramp' - terms: '' - highway/turning_circle: - # highway=turning_circle - name: Turning Circle - # 'terms: cul-de-sac' - terms: '' - highway/unclassified: - # highway=unclassified - name: Minor/Unclassified Road - terms: '' - historic: - # historic=* - name: Historic Site - terms: '' - historic/archaeological_site: - # historic=archaeological_site - name: Archaeological Site - terms: '' - historic/boundary_stone: - # historic=boundary_stone - name: Boundary Stone - terms: '' - historic/castle: - # historic=castle - name: Castle - terms: '' - historic/memorial: - # historic=memorial - name: Memorial - terms: '' - historic/monument: - # historic=monument - name: Monument - terms: '' - historic/ruins: - # historic=ruins - name: Ruins - terms: '' - historic/wayside_cross: - # historic=wayside_cross - name: Wayside Cross - terms: '' - historic/wayside_shrine: - # historic=wayside_shrine - name: Wayside Shrine - terms: '' - junction: - # junction=yes - name: Junction - terms: '' - landuse: - # landuse=* - name: Land Use - terms: '' - landuse/allotments: - # landuse=allotments - name: Community Garden - # 'terms: allotment,garden' - terms: '' - landuse/basin: - # landuse=basin - name: Basin - terms: '' - landuse/cemetery: - # landuse=cemetery - name: Cemetery - terms: '' - landuse/churchyard: - # landuse=churchyard - name: Churchyard - terms: '' - landuse/commercial: - # landuse=commercial - name: Commercial Area - terms: '' - landuse/construction: - # landuse=construction - name: Construction - terms: '' - landuse/farm: - # landuse=farm - name: Farmland - landuse/farmland: - # landuse=farmland - name: Farmland - terms: '' - landuse/farmyard: - # landuse=farmyard - name: Farmyard - terms: '' - landuse/forest: - # landuse=forest - name: Forest - # 'terms: tree' - terms: '' - landuse/garages: - # landuse=garages - name: Garages - terms: '' - landuse/grass: - # landuse=grass - name: Grass - terms: '' - landuse/industrial: - # landuse=industrial - name: Industrial Area - terms: '' - landuse/landfill: - # landuse=landfill - name: Landfill - # 'terms: dump' - terms: '' - landuse/meadow: - # landuse=meadow - name: Meadow - terms: '' - landuse/military: - # landuse=military - name: Military Area - terms: '' - landuse/orchard: - # landuse=orchard - name: Orchard - terms: '' - landuse/plant_nursery: - # landuse=plant_nursery - name: Plant Nursery - # 'terms: vivero' - terms: '' - landuse/quarry: - # landuse=quarry - name: Quarry - terms: '' - landuse/recreation_ground: - # landuse=recreation_ground - name: Recreation Ground - # 'terms: playing fields' - terms: '' - landuse/residential: - # landuse=residential - name: Residential Area - terms: '' - landuse/retail: - # landuse=retail - name: Retail Area - terms: '' - landuse/vineyard: - # landuse=vineyard - name: Vineyard - terms: '' - leisure: - # leisure=* - name: Leisure - terms: '' - leisure/adult_gaming_centre: - # leisure=adult_gaming_centre - name: Adult Gaming Center - # 'terms: gambling,slot machine' - terms: '' - leisure/bird_hide: - # leisure=bird_hide - name: Bird Hide - # 'terms: machan,ornithology' - terms: '' - leisure/bowling_alley: - # leisure=bowling_alley - name: Bowling Alley - terms: '' - leisure/common: - # leisure=common - name: Common - # 'terms: open space' - terms: '' - leisure/dog_park: - # leisure=dog_park - name: Dog Park - terms: '' - leisure/firepit: - # leisure=firepit - name: Firepit - # 'terms: fireplace,campfire' - terms: '' - leisure/fitness_centre: - # leisure=fitness_centre - name: Gym / Fitness Center - # 'terms: health,gym,leisure,studio' - terms: '' - leisure/fitness_centre/yoga: - # 'leisure=fitness_centre, sport=yoga' - name: Yoga Studio - # 'terms: studio' - terms: '' - leisure/fitness_station: - # leisure=fitness_station - name: Outdoor Fitness Station - # 'terms: fitness,gym' - terms: '' - leisure/garden: - # leisure=garden - name: Garden - terms: '' - leisure/golf_course: - # leisure=golf_course - name: Golf Course - # 'terms: links' - terms: '' - leisure/ice_rink: - # leisure=ice_rink - name: Ice Rink - # 'terms: hockey,skating,curling' - terms: '' - leisure/marina: - # leisure=marina - name: Marina - # 'terms: boat' - terms: '' - leisure/miniature_golf: - # leisure=miniature_golf - name: Miniature Golf - # 'terms: crazy golf,mini golf,putt-putt' - terms: '' - leisure/nature_reserve: - # leisure=nature_reserve - name: Nature Reserve - # 'terms: protected,wildlife' - terms: '' - leisure/park: - # leisure=park - name: Park - # 'terms: esplanade,estate,forest,garden,grass,green,grounds,lawn,lot,meadow,parkland,place,playground,plaza,pleasure garden,recreation area,square,tract,village green,woodland' - terms: '' - leisure/picnic_table: - # leisure=picnic_table - name: Picnic Table - # 'terms: bench' - terms: '' - leisure/pitch: - # leisure=pitch - name: Sport Pitch - # 'terms: field' - terms: '' - leisure/pitch/american_football: - # 'leisure=pitch, sport=american_football' - name: American Football Field - terms: '' - leisure/pitch/baseball: - # 'leisure=pitch, sport=baseball' - name: Baseball Diamond - terms: '' - leisure/pitch/basketball: - # 'leisure=pitch, sport=basketball' - name: Basketball Court - terms: '' - leisure/pitch/bowls: - # 'leisure=pitch, sport=bowls' - name: Bowling Green - terms: '' - leisure/pitch/rugby_league: - # 'leisure=pitch, sport=rugby_league' - name: Rugby League Field - terms: '' - leisure/pitch/rugby_union: - # 'leisure=pitch, sport=rugby_union' - name: Rugby Union Field - terms: '' - leisure/pitch/skateboard: - # 'leisure=pitch, sport=skateboard' - name: Skate Park - terms: '' - leisure/pitch/soccer: - # 'leisure=pitch, sport=soccer' - name: Soccer Field - terms: '' - leisure/pitch/tennis: - # 'leisure=pitch, sport=tennis' - name: Tennis Court - terms: '' - leisure/pitch/volleyball: - # 'leisure=pitch, sport=volleyball' - name: Volleyball Court - terms: '' - leisure/playground: - # leisure=playground - name: Playground - # 'terms: jungle gym,play area' - terms: '' - leisure/running_track: - # 'leisure=track, sport=running' - name: Running Track - terms: '' - leisure/slipway: - # leisure=slipway - name: Slipway - # 'terms: boat launch,boat ramp' - terms: '' - leisure/sports_centre: - # leisure=sports_centre - name: Sports Center / Complex - terms: '' - leisure/sports_centre/swimming: - # 'leisure=sports_centre, sport=swimming' - name: Swimming Pool Facility - # 'terms: dive,water' - terms: '' - leisure/stadium: - # leisure=stadium - name: Stadium - terms: '' - leisure/swimming_pool: - # leisure=swimming_pool - name: Swimming Pool - # 'terms: dive,water' - terms: '' - leisure/track: - # leisure=track - name: Racetrack (non-Motorsport) - terms: '' - leisure/water_park: - # leisure=water_park - name: Water Park - # 'terms: swim,pool,dive' - terms: '' - line: - name: Line - terms: '' - man_made: - # man_made=* - name: Man Made - terms: '' - man_made/adit: - # man_made=adit - name: Adit - # 'terms: entrance,underground,mine,cave' - terms: '' - man_made/breakwater: - # man_made=breakwater - name: Breakwater - terms: '' - man_made/bridge: - # man_made=bridge - name: Bridge - terms: '' - man_made/chimney: - # man_made=chimney - name: Chimney - terms: '' - man_made/cutline: - # man_made=cutline - name: Cut line - terms: '' - man_made/embankment: - # man_made=embankment - name: Embankment - man_made/flagpole: - # man_made=flagpole - name: Flagpole - terms: '' - man_made/gasometer: - # man_made=gasometer - name: Gasometer - # 'terms: gas holder' - terms: '' - man_made/groyne: - # man_made=groyne - name: Groyne - terms: '' - man_made/lighthouse: - # man_made=lighthouse - name: Lighthouse - terms: '' - man_made/mast: - # man_made=mast - name: Radio Mast - # 'terms: broadcast tower,cell phone tower,cell tower,guyed tower,mobile phone tower,radio tower,television tower,transmission mast,transmission tower,tv tower' - terms: '' - man_made/observation: - # 'man_made=tower, tower:type=observation' - name: Observation Tower - # 'terms: lookout tower,fire tower' - terms: '' - man_made/petroleum_well: - # man_made=petroleum_well - name: Oil Well - # 'terms: drilling rig,oil derrick,oil drill,oil horse,oil rig,oil pump,petroleum well,pumpjack' - terms: '' - man_made/pier: - # man_made=pier - name: Pier - # 'terms: dock' - terms: '' - man_made/pipeline: - # man_made=pipeline - name: Pipeline - terms: '' - man_made/pumping_station: - # man_made=pumping_station - name: Pumping Station - terms: '' - man_made/silo: - # man_made=silo - name: Silo - # 'terms: grain,corn,wheat' - terms: '' - man_made/storage_tank: - # man_made=storage_tank - name: Storage Tank - # 'terms: water,oil,gas,petrol' - terms: '' - man_made/surveillance: - # man_made=surveillance - name: Surveillance - # 'terms: cctv' - terms: '' - man_made/survey_point: - # man_made=survey_point - name: Survey Point - terms: '' - man_made/tower: - # man_made=tower - name: Tower - terms: '' - man_made/wastewater_plant: - # man_made=wastewater_plant - name: Wastewater Plant - # 'terms: sewage*,water treatment plant,reclamation plant' - terms: '' - man_made/water_tower: - # man_made=water_tower - name: Water Tower - terms: '' - man_made/water_well: - # man_made=water_well - name: Water Well - terms: '' - man_made/water_works: - # man_made=water_works - name: Water Works - terms: '' - man_made/works: - # man_made=works - name: Works - # 'terms: car assembly plant,aluminium processing plant,brewery,furniture manufacture factory,oil refinery,plastic recycling' - terms: '' - military/airfield: - # military=airfield - name: Airfield - terms: '' - military/barracks: - # military=barracks - name: Barracks - terms: '' - military/bunker: - # military=bunker - name: Bunker - terms: '' - military/checkpoint: - # military=checkpoint - name: Checkpoint - terms: '' - military/danger_area: - # military=danger_area - name: Danger Area - terms: '' - military/naval_base: - # military=naval_base - name: Naval Base - terms: '' - military/obstacle_course: - # military=obstacle_course - name: Obstacle Course - terms: '' - military/range: - # military=range - name: Military Range - terms: '' - military/training_area: - # military=training_area - name: Training area - terms: '' - natural: - # natural=* - name: Natural - terms: '' - natural/bay: - # natural=bay - name: Bay - terms: '' - natural/beach: - # natural=beach - name: Beach - terms: '' - natural/cave_entrance: - # natural=cave_entrance - name: Cave Entrance - # 'terms: cavern,hollow,grotto,shelter,cavity' - terms: '' - natural/cliff: - # natural=cliff - name: Cliff - terms: '' - natural/coastline: - # natural=coastline - name: Coastline - # 'terms: shore' - terms: '' - natural/fell: - # natural=fell - name: Fell - terms: '' - natural/glacier: - # natural=glacier - name: Glacier - terms: '' - natural/grassland: - # natural=grassland - name: Grassland - terms: '' - natural/heath: - # natural=heath - name: Heath - terms: '' - natural/peak: - # natural=peak - name: Peak - # 'terms: acme,aiguille,alp,climax,crest,crown,hill,mount,mountain,pinnacle,summit,tip,top' - terms: '' - natural/saddle: - # natural=saddle - name: Saddle - # 'terms: pass,mountain pass,top' - terms: '' - natural/scree: - # natural=scree - name: Scree - # 'terms: loose rocks' - terms: '' - natural/scrub: - # natural=scrub - name: Scrub - # 'terms: bush,shrubs' - terms: '' - natural/spring: - # natural=spring - name: Spring - terms: '' - natural/tree: - # natural=tree - name: Tree - terms: '' - natural/tree_row: - # natural=tree_row - name: Tree row - terms: '' - natural/volcano: - # natural=volcano - name: Volcano - # 'terms: mountain,crater' - terms: '' - natural/water: - # natural=water - name: Water - terms: '' - natural/water/lake: - # 'natural=water, water=lake' - name: Lake - # 'terms: lakelet,loch,mere' - terms: '' - natural/water/pond: - # 'natural=water, water=pond' - name: Pond - # 'terms: lakelet,millpond,tarn,pool,mere' - terms: '' - natural/water/reservoir: - # 'natural=water, water=reservoir' - name: Reservoir - terms: '' - natural/wetland: - # natural=wetland - name: Wetland - terms: '' - natural/wood: - # natural=wood - name: Wood - # 'terms: tree' - terms: '' - office: - # office=* - name: Office - terms: '' - office/accountant: - # office=accountant - name: Accountant - terms: '' - office/administrative: - # office=administrative - name: Administrative Office - terms: '' - office/architect: - # office=architect - name: Architect - terms: '' - office/company: - # office=company - name: Company Office - terms: '' - office/educational_institution: - # office=educational_institution - name: Educational Institution - terms: '' - office/employment_agency: - # office=employment_agency - name: Employment Agency - # 'terms: job' - terms: '' - office/estate_agent: - # office=estate_agent - name: Real Estate Office - terms: '' - office/financial: - # office=financial - name: Financial Office - terms: '' - office/government: - # office=government - name: Government Office - terms: '' - office/government/register_office: - # 'office=government, government=register_office' - name: Register Office - # 'terms: clerk,marriage,death,birth,certificate' - terms: '' - office/insurance: - # office=insurance - name: Insurance Office - terms: '' - office/it: - # office=it - name: IT Office - terms: '' - office/lawyer: - # office=lawyer - name: Law Office - terms: '' - office/newspaper: - # office=newspaper - name: Newspaper - terms: '' - office/ngo: - # office=ngo - name: NGO Office - terms: '' - office/physician: - # office=physician - name: Physician - terms: '' - office/political_party: - # office=political_party - name: Political Party - terms: '' - office/research: - # office=research - name: Research Office - terms: '' - office/telecommunication: - # office=telecommunication - name: Telecom Office - terms: '' - office/therapist: - # office=therapist - name: Therapist - terms: '' - office/travel_agent: - # office=travel_agent - name: Travel Agency - piste: - # 'piste:type=*' - name: Piste/Ski Trail - # 'terms: ski,sled,sleigh,snowboard,nordic,downhill,snowmobile' - terms: '' - place: - # place=* - name: Place - place/city: - # place=city - name: City - terms: '' - place/farm: - # place=farm - name: Farm - terms: '' - place/hamlet: - # place=hamlet - name: Hamlet - terms: '' - place/island: - # place=island - name: Island - # 'terms: archipelago,atoll,bar,cay,isle,islet,key,reef' - terms: '' - place/isolated_dwelling: - # place=isolated_dwelling - name: Isolated Dwelling - terms: '' - place/locality: - # place=locality - name: Locality - terms: '' - place/neighbourhood: - # place=neighbourhood - name: Neighborhood - # 'terms: neighbourhood' - terms: '' - place/suburb: - # place=suburb - name: Borough - # 'terms: Boro,Quarter' - terms: '' - place/town: - # place=town - name: Town - terms: '' - place/village: - # place=village - name: Village - terms: '' - point: - name: Point - terms: '' - power: - # power=* - name: Power - power/generator: - # power=generator - name: Power Generator - terms: '' - power/line: - # power=line - name: Power Line - terms: '' - power/minor_line: - # power=minor_line - name: Minor Power Line - terms: '' - power/pole: - # power=pole - name: Power Pole - terms: '' - power/sub_station: - # power=sub_station - name: Substation - power/substation: - # power=substation - name: Substation - terms: '' - power/tower: - # power=tower - name: High-Voltage Tower - terms: '' - power/transformer: - # power=transformer - name: Transformer - terms: '' - public_transport/platform: - # public_transport=platform - name: Platform - terms: '' - public_transport/stop_position: - # public_transport=stop_position - name: Stop Position - terms: '' - railway: - # railway=* - name: Railway - railway/abandoned: - # railway=abandoned - name: Abandoned Railway - terms: '' - railway/crossing: - # railway=crossing - name: Railway Crossing (Path) - # 'terms: crossing,pedestrian crossing,railroad crossing,level crossing,grade crossing,path through railroad,train crossing' - terms: '' - railway/disused: - # railway=disused - name: Disused Railway - terms: '' - railway/funicular: - # railway=funicular - name: Funicular - # 'terms: venicular,cliff railway,cable car,cable railway,funicular railway' - terms: '' - railway/halt: - # railway=halt - name: Railway Halt - # 'terms: break,interrupt,rest,wait,interruption' - terms: '' - railway/level_crossing: - # railway=level_crossing - name: Railway Crossing (Road) - # 'terms: crossing,railroad crossing,level crossing,grade crossing,road through railroad,train crossing' - terms: '' - railway/monorail: - # railway=monorail - name: Monorail - terms: '' - railway/narrow_gauge: - # railway=narrow_gauge - name: Narrow Gauge Rail - # 'terms: narrow gauge railway,narrow gauge railroad' - terms: '' - railway/platform: - # railway=platform - name: Railway Platform - terms: '' - railway/rail: - # railway=rail - name: Rail - terms: '' - railway/station: - # railway=station - name: Railway Station - # 'terms: train station,station' - terms: '' - railway/subway: - # railway=subway - name: Subway - terms: '' - railway/subway_entrance: - # railway=subway_entrance - name: Subway Entrance - terms: '' - railway/tram: - # railway=tram - name: Tram - # 'terms: streetcar' - terms: '' - relation: - name: Relation - terms: '' - roundabout: - # junction=roundabout - name: Roundabout - route/ferry: - # route=ferry - name: Ferry Route - terms: '' - shop: - # shop=* - name: Shop - terms: '' - shop/alcohol: - # shop=alcohol - name: Liquor Store - # 'terms: alcohol,beer,booze,wine' - terms: '' - shop/anime: - # shop=anime - name: Anime Shop - # 'terms: manga,japan,cosplay,figurine,dakimakura' - terms: '' - shop/antiques: - # shop=antiques - name: Antiques Shop - terms: '' - shop/art: - # shop=art - name: Art Store - # 'terms: art*,exhibit*,gallery' - terms: '' - shop/baby_goods: - # shop=baby_goods - name: Baby Goods Store - terms: '' - shop/bag: - # shop=bag - name: Bag/Luggage Store - # 'terms: handbag,purse' - terms: '' - shop/bakery: - # shop=bakery - name: Bakery - terms: '' - shop/bathroom_furnishing: - # shop=bathroom_furnishing - name: Bathroom Furnishing Store - terms: '' - shop/beauty: - # shop=beauty - name: Beauty Shop - # 'terms: spa,salon,tanning' - terms: '' - shop/beauty/nails: - # 'shop=beauty, beauty=nails' - name: Nail Salon - # 'terms: manicure,pedicure' - terms: '' - shop/beauty/tanning: - # 'shop=beauty, beauty=tanning' - name: Tanning Salon - terms: '' - shop/bed: - # shop=bed - name: Bedding/Mattress Store - terms: '' - shop/beverages: - # shop=beverages - name: Beverage Store - terms: '' - shop/bicycle: - # shop=bicycle - name: Bicycle Shop - # 'terms: bike,repair' - terms: '' - shop/bookmaker: - # shop=bookmaker - name: Bookmaker - # 'terms: betting' - terms: '' - shop/books: - # shop=books - name: Book Store - terms: '' - shop/boutique: - # shop=boutique - name: Boutique - terms: '' - shop/butcher: - # shop=butcher - name: Butcher - # 'terms: meat' - terms: '' - shop/candles: - # shop=candles - name: Candle Shop - terms: '' - shop/car: - # shop=car - name: Car Dealership - # 'terms: auto' - terms: '' - shop/car_parts: - # shop=car_parts - name: Car Parts Store - # 'terms: auto' - terms: '' - shop/car_repair: - # shop=car_repair - name: Car Repair Shop - # 'terms: auto,garage,service' - terms: '' - shop/carpet: - # shop=carpet - name: Carpet Store - # 'terms: rug' - terms: '' - shop/charity: - # shop=charity - name: Charity Store - # 'terms: thrift,op shop,nonprofit' - terms: '' - shop/cheese: - # shop=cheese - name: Cheese Store - terms: '' - shop/chemist: - # shop=chemist - name: Drugstore - # 'terms: med*,drug*,gift' - terms: '' - shop/chocolate: - # shop=chocolate - name: Chocolate Store - terms: '' - shop/clothes: - # shop=clothes - name: Clothing Store - terms: '' - shop/coffee: - # shop=coffee - name: Coffee Store - terms: '' - shop/computer: - # shop=computer - name: Computer Store - terms: '' - shop/confectionery: - # shop=confectionery - name: Candy Store - terms: '' - shop/convenience: - # shop=convenience - name: Convenience Store - terms: '' - shop/copyshop: - # shop=copyshop - name: Copy Store - terms: '' - shop/cosmetics: - # shop=cosmetics - name: Cosmetics Store - terms: '' - shop/craft: - # shop=craft - name: Arts and Crafts Store - # 'terms: art*,paint*,frame' - terms: '' - shop/curtain: - # shop=curtain - name: Curtain Store - # 'terms: drape*,window' - terms: '' - shop/dairy: - # shop=dairy - name: Dairy Store - # 'terms: milk,egg,cheese' - terms: '' - shop/deli: - # shop=deli - name: Deli - # 'terms: lunch,meat,sandwich' - terms: '' - shop/department_store: - # shop=department_store - name: Department Store - terms: '' - shop/doityourself: - # shop=doityourself - name: DIY Store - terms: '' - shop/dry_cleaning: - # shop=dry_cleaning - name: Dry Cleaner - terms: '' - shop/e-cigarette: - # shop=e-cigarette - name: E-Cigarette Shop - # 'terms: electronic,vapor' - terms: '' - shop/electronics: - # shop=electronics - name: Electronics Store - # 'terms: appliance,audio,computer,tv' - terms: '' - shop/erotic: - # shop=erotic - name: Erotic Store - # 'terms: sex,porn' - terms: '' - shop/fabric: - # shop=fabric - name: Fabric Store - # 'terms: sew' - terms: '' - shop/farm: - # shop=farm - name: Produce Stand - # 'terms: farm shop,farm stand' - terms: '' - shop/fashion: - # shop=fashion - name: Fashion Store - terms: '' - shop/fishmonger: - # shop=fishmonger - name: Fishmonger - shop/florist: - # shop=florist - name: Florist - # 'terms: flower' - terms: '' - shop/frame: - # shop=frame - name: Framing Shop - # 'terms: art*,paint*,photo*,frame' - terms: '' - shop/funeral_directors: - # shop=funeral_directors - name: Funeral Home - # 'terms: undertaker,memorial home' - terms: '' - shop/furnace: - # shop=furnace - name: Furnace Store - # 'terms: oven,stove' - terms: '' - shop/furniture: - # shop=furniture - name: Furniture Store - # 'terms: chair,sofa,table' - terms: '' - shop/garden_centre: - # shop=garden_centre - name: Garden Center - # 'terms: landscape,mulch,shrub,tree' - terms: '' - shop/gift: - # shop=gift - name: Gift Shop - # 'terms: souvenir' - terms: '' - shop/greengrocer: - # shop=greengrocer - name: Greengrocer - # 'terms: fruit,vegetable' - terms: '' - shop/hairdresser: - # shop=hairdresser - name: Hairdresser - # 'terms: barber' - terms: '' - shop/hardware: - # shop=hardware - name: Hardware Store - terms: '' - shop/hearing_aids: - # shop=hearing_aids - name: Hearing Aids Store - terms: '' - shop/herbalist: - # shop=herbalist - name: Herbalist - terms: '' - shop/hifi: - # shop=hifi - name: Hifi Store - # 'terms: stereo,video' - terms: '' - shop/houseware: - # shop=houseware - name: Houseware Store - # 'terms: home,household' - terms: '' - shop/interior_decoration: - # shop=interior_decoration - name: Interior Decoration Store - terms: '' - shop/jewelry: - # shop=jewelry - name: Jeweler - # 'terms: diamond,gem,ring' - terms: '' - shop/kiosk: - # shop=kiosk - name: News Kiosk - terms: '' - shop/kitchen: - # shop=kitchen - name: Kitchen Design Store - terms: '' - shop/laundry: - # shop=laundry - name: Laundry - terms: '' - shop/leather: - # shop=leather - name: Leather Store - terms: '' - shop/locksmith: - # shop=locksmith - name: Locksmith - # 'terms: key,lockpick' - terms: '' - shop/lottery: - # shop=lottery - name: Lottery Shop - terms: '' - shop/mall: - # shop=mall - name: Mall - # 'terms: shopping' - terms: '' - shop/massage: - # shop=massage - name: Massage Shop - terms: '' - shop/medical_supply: - # shop=medical_supply - name: Medical Supply Store - terms: '' - shop/mobile_phone: - # shop=mobile_phone - name: Mobile Phone Store - terms: '' - shop/money_lender: - # shop=money_lender - name: Money Lender - terms: '' - shop/motorcycle: - # shop=motorcycle - name: Motorcycle Dealership - # 'terms: bike' - terms: '' - shop/music: - # shop=music - name: Music Store - # 'terms: CD,vinyl' - terms: '' - shop/musical_instrument: - # shop=musical_instrument - name: Musical Instrument Store - # 'terms: guitar' - terms: '' - shop/newsagent: - # shop=newsagent - name: Newspaper/Magazine Shop - terms: '' - shop/nutrition_supplements: - # shop=nutrition_supplements - name: Nutrition Supplements Store - terms: '' - shop/optician: - # shop=optician - name: Optician - # 'terms: eye,glasses' - terms: '' - shop/organic: - # 'shop=supermarket, organic=only' - name: Organic Goods Store - terms: '' - shop/outdoor: - # shop=outdoor - name: Outdoors Store - # 'terms: camping,climbing,hiking' - terms: '' - shop/paint: - # shop=paint - name: Paint Store - terms: '' - shop/pastry: - # shop=pastry - name: Pastry Shop - # 'terms: patisserie,cake shop,cakery' - terms: '' - shop/pawnbroker: - # shop=pawnbroker - name: Pawn Shop - terms: '' - shop/pet: - # shop=pet - name: Pet Store - # 'terms: cat,dog,fish' - terms: '' - shop/photo: - # shop=photo - name: Photography Store - # 'terms: camera,film' - terms: '' - shop/pyrotechnics: - # shop=pyrotechnics - name: Fireworks Store - terms: '' - shop/radiotechnics: - # shop=radiotechnics - name: Radio/Electronic Component Store - terms: '' - shop/religion: - # shop=religion - name: Religious Store - terms: '' - shop/scuba_diving: - # shop=scuba_diving - name: Scuba Diving Shop - terms: '' - shop/seafood: - # shop=seafood - name: Seafood Shop - # 'terms: fishmonger' - terms: '' - shop/second_hand: - # shop=second_hand - name: Consignment/Thrift Store - # 'terms: secondhand,second hand,resale,thrift,used' - terms: '' - shop/shoes: - # shop=shoes - name: Shoe Store - terms: '' - shop/sports: - # shop=sports - name: Sporting Goods Store - terms: '' - shop/stationery: - # shop=stationery - name: Stationery Store - # 'terms: card,paper' - terms: '' - shop/storage_rental: - # shop=storage_rental - name: Storage Rental - terms: '' - shop/supermarket: - # shop=supermarket - name: Supermarket - # 'terms: grocery,store,shop' - terms: '' - shop/tailor: - # shop=tailor - name: Tailor - # 'terms: clothes,suit' - terms: '' - shop/tattoo: - # shop=tattoo - name: Tattoo Parlor - terms: '' - shop/tea: - # shop=tea - name: Tea Store - terms: '' - shop/ticket: - # shop=ticket - name: Ticket Seller - terms: '' - shop/tobacco: - # shop=tobacco - name: Tobacco Shop - terms: '' - shop/toys: - # shop=toys - name: Toy Store - terms: '' - shop/travel_agency: - # shop=travel_agency - name: Travel Agency - terms: '' - shop/tyres: - # shop=tyres - name: Tire Store - terms: '' - shop/vacant: - # shop=vacant - name: Vacant Shop - shop/vacuum_cleaner: - # shop=vacuum_cleaner - name: Vacuum Cleaner Store - terms: '' - shop/variety_store: - # shop=variety_store - name: Variety Store - terms: '' - shop/video: - # shop=video - name: Video Store - # 'terms: DVD' - terms: '' - shop/video_games: - # shop=video_games - name: Video Game Store - terms: '' - shop/water_sports: - # shop=water_sports - name: Watersport/Swim Shop - terms: '' - shop/weapons: - # shop=weapons - name: Weapon Shop - # 'terms: ammo,gun,knife,knives' - terms: '' - shop/window_blind: - # shop=window_blind - name: Window Blind Store - terms: '' - shop/wine: - # shop=wine - name: Wine Shop - terms: '' - tourism: - # tourism=* - name: Tourism - terms: '' - tourism/alpine_hut: - # tourism=alpine_hut - name: Alpine Hut - terms: '' - tourism/apartment: - # tourism=apartment - name: Guest Apartment / Condo - terms: '' - tourism/artwork: - # tourism=artwork - name: Artwork - # 'terms: mural,sculpture,statue' - terms: '' - tourism/attraction: - # tourism=attraction - name: Tourist Attraction - terms: '' - tourism/camp_site: - # tourism=camp_site - name: Campground - # 'terms: tent,rv' - terms: '' - tourism/caravan_site: - # tourism=caravan_site - name: RV Park - # 'terms: Motor Home,Camper' - terms: '' - tourism/chalet: - # tourism=chalet - name: Chalet - terms: '' - tourism/gallery: - # tourism=gallery - name: Art Gallery - # 'terms: art*,exhibit*,paint*,photo*,sculpt*' - terms: '' - tourism/guest_house: - # tourism=guest_house - name: Guest House - # 'terms: B&B,Bed and Breakfast' - terms: '' - tourism/hostel: - # tourism=hostel - name: Hostel - terms: '' - tourism/hotel: - # tourism=hotel - name: Hotel - terms: '' - tourism/information: - # tourism=information - name: Information - terms: '' - tourism/motel: - # tourism=motel - name: Motel - terms: '' - tourism/museum: - # tourism=museum - name: Museum - # 'terms: art*,exhibit*,gallery,foundation,hall,institution,paint*,photo*,sculpt*' - terms: '' - tourism/picnic_site: - # tourism=picnic_site - name: Picnic Site - # 'terms: camp' - terms: '' - tourism/theme_park: - # tourism=theme_park - name: Theme Park - terms: '' - tourism/viewpoint: - # tourism=viewpoint - name: Viewpoint - terms: '' - tourism/zoo: - # tourism=zoo - name: Zoo - terms: '' - traffic_calming: - # traffic_calming=* - name: Traffic Calming - # 'terms: bump,hump,slow,speed' - terms: '' - traffic_calming/bump: - # traffic_calming=bump - name: Speed Bump - # 'terms: hump,speed,slow' - terms: '' - traffic_calming/chicane: - # traffic_calming=chicane - name: Traffic Chicane - # 'terms: driveway link,speed,slow' - terms: '' - traffic_calming/choker: - # traffic_calming=choker - name: Traffic Choker - # 'terms: speed,slow' - terms: '' - traffic_calming/cushion: - # traffic_calming=cushion - name: Speed Cushion - # 'terms: bump,hump,speed,slow' - terms: '' - traffic_calming/dip: - # traffic_calming=dip - name: Dip - # 'terms: speed,slow' - terms: '' - traffic_calming/hump: - # traffic_calming=hump - name: Speed Hump - # 'terms: bump,speed,slow' - terms: '' - traffic_calming/island: - # traffic_calming=island - name: Traffic Island - # 'terms: circle,roundabout,slow' - terms: '' - traffic_calming/rumble_strip: - # traffic_calming=rumble_strip - name: Rumble Strip - # 'terms: audible lines,sleeper lines,growlers' - terms: '' - traffic_calming/table: - # 'highway=crossing, traffic_calming=table' - name: Raised Pedestrian Crossing - # 'terms: flat top,hump,speed,slow' - terms: '' - type/boundary: - # type=boundary - name: Boundary - terms: '' - type/boundary/administrative: - # 'type=boundary, boundary=administrative' - name: Administrative Boundary - terms: '' - type/multipolygon: - # type=multipolygon - name: Multipolygon - type/restriction: - # type=restriction - name: Restriction - terms: '' - type/restriction/no_left_turn: - # 'type=restriction, restriction=no_left_turn' - name: No Left Turn - terms: '' - type/restriction/no_right_turn: - # 'type=restriction, restriction=no_right_turn' - name: No Right Turn - terms: '' - type/restriction/no_straight_on: - # 'type=restriction, restriction=no_straight_on' - name: No Straight On - terms: '' - type/restriction/no_u_turn: - # 'type=restriction, restriction=no_u_turn' - name: No U-turn - terms: '' - type/restriction/only_left_turn: - # 'type=restriction, restriction=only_left_turn' - name: Left Turn Only - terms: '' - type/restriction/only_right_turn: - # 'type=restriction, restriction=only_right_turn' - name: Right Turn Only - terms: '' - type/restriction/only_straight_on: - # 'type=restriction, restriction=only_straight_on' - name: No Turns - terms: '' - type/route: - # type=route - name: Route - terms: '' - type/route/bicycle: - # 'type=route, route=bicycle' - name: Cycle Route - terms: '' - type/route/bus: - # 'type=route, route=bus' - name: Bus Route - terms: '' - type/route/detour: - # 'type=route, route=detour' - name: Detour Route - terms: '' - type/route/ferry: - # 'type=route, route=ferry' - name: Ferry Route - terms: '' - type/route/foot: - # 'type=route, route=foot' - name: Foot Route - terms: '' - type/route/hiking: - # 'type=route, route=hiking' - name: Hiking Route - terms: '' - type/route/horse: - # 'type=route, route=horse' - name: Riding Route - terms: '' - type/route/pipeline: - # 'type=route, route=pipeline' - name: Pipeline Route - terms: '' - type/route/power: - # 'type=route, route=power' - name: Power Route - terms: '' - type/route/road: - # 'type=route, route=road' - name: Road Route - terms: '' - type/route/train: - # 'type=route, route=train' - name: Train Route - terms: '' - type/route/tram: - # 'type=route, route=tram' - name: Tram Route - terms: '' - type/route_master: - # type=route_master - name: Route Master - terms: '' - type/site: - # type=site - name: Site - terms: '' - vertex: - name: Other - terms: '' - waterway: - # waterway=* - name: Waterway - waterway/boatyard: - # waterway=boatyard - name: Boatyard - terms: '' - waterway/canal: - # waterway=canal - name: Canal - terms: '' - waterway/dam: - # waterway=dam - name: Dam - terms: '' - waterway/ditch: - # waterway=ditch - name: Ditch - terms: '' - waterway/dock: - # waterway=dock - name: Wet Dock / Dry Dock - # 'terms: boat,ship,vessel,marine' - terms: '' - waterway/drain: - # waterway=drain - name: Drain - terms: '' - waterway/fuel: - # waterway=fuel - name: Marine Fuel Station - # 'terms: petrol,gas,diesel,boat' - terms: '' - waterway/river: - # waterway=river - name: River - # 'terms: beck,branch,brook,course,creek,estuary,rill,rivulet,run,runnel,stream,tributary,watercourse' - terms: '' - waterway/riverbank: - # waterway=riverbank - name: Riverbank - terms: '' - waterway/sanitary_dump_station: - # waterway=sanitary_dump_station - name: Marine Toilet Disposal - # 'terms: Boat,Watercraft,Sanitary,Dump Station,Pumpout,Pump out,Elsan,CDP,CTDP,Chemical Toilet' - terms: '' - waterway/stream: - # waterway=stream - name: Stream - # 'terms: beck,branch,brook,burn,course,creek,current,drift,flood,flow,freshet,race,rill,rindle,rivulet,run,runnel,rush,spate,spritz,surge,tide,torrent,tributary,watercourse' - terms: '' - waterway/water_point: - # waterway=water_point - name: Marine Drinking Water - terms: '' - waterway/weir: - # waterway=weir - name: Weir - terms: '' diff --git a/data/presets/categories.json b/data/presets/categories.json deleted file mode 100644 index 4cdc1beb6b..0000000000 --- a/data/presets/categories.json +++ /dev/null @@ -1,169 +0,0 @@ -{ - "categories": { - "category-barrier": { - "geometry": "line", - "name": "Barrier Features", - "icon": "roadblock", - "members": [ - "barrier/fence", - "barrier/wall", - "barrier/ditch", - "barrier/gate", - "barrier" - ] - }, - "category-building": { - "geometry": "area", - "name": "Building Features", - "icon": "building", - "members": [ - "building", - "building/house", - "building/apartments", - "building/commercial", - "building/industrial", - "building/residential" - ] - }, - "category-golf": { - "geometry": "area", - "name": "Golf Features", - "icon": "golf", - "members": [ - "golf/fairway", - "golf/green", - "golf/lateral_water_hazard_area", - "golf/rough", - "golf/bunker", - "golf/tee", - "golf/water_hazard_area" - ] - }, - "category-landuse": { - "geometry": "area", - "name": "Land Use Features", - "icon": "land-use", - "members": [ - "landuse/residential", - "landuse/industrial", - "landuse/commercial", - "landuse/retail", - "landuse/farmland", - "landuse/farmyard", - "landuse/forest", - "landuse/meadow", - "landuse/cemetery", - "landuse/military" - ] - }, - "category-path": { - "geometry": "line", - "name": "Path Features", - "icon": "category-path", - "members": [ - "highway/pedestrian", - "footway/crosswalk", - "footway/sidewalk", - "highway/steps", - "highway/path", - "highway/footway", - "highway/cycleway", - "highway/bridleway" - ] - }, - "category-rail": { - "geometry": "line", - "name": "Rail Features", - "icon": "category-rail", - "members": [ - "railway/rail", - "railway/subway", - "railway/tram", - "railway/monorail", - "railway/disused", - "railway/abandoned" - ] - }, - "category-restriction": { - "geometry": "relation", - "name": "Restriction Features", - "icon": "restriction", - "members": [ - "type/restriction/no_left_turn", - "type/restriction/no_right_turn", - "type/restriction/no_straight_on", - "type/restriction/no_u_turn", - "type/restriction/only_left_turn", - "type/restriction/only_right_turn", - "type/restriction/only_straight_on", - "type/restriction" - ] - }, - "category-road": { - "geometry": "line", - "name": "Road Features", - "icon": "category-roads", - "members": [ - "highway/residential", - "highway/motorway", - "highway/trunk", - "highway/primary", - "highway/secondary", - "highway/tertiary", - "highway/unclassified", - "highway/service", - "highway/track", - "highway/motorway_link", - "highway/trunk_link", - "highway/primary_link", - "highway/secondary_link", - "highway/tertiary_link", - "highway/road" - ] - }, - "category-route": { - "geometry": "relation", - "name": "Route Features", - "icon": "route", - "members": [ - "type/route/road", - "type/route/bicycle", - "type/route/foot", - "type/route/hiking", - "type/route/horse", - "type/route/bus", - "type/route/train", - "type/route/tram", - "type/route/ferry", - "type/route/power", - "type/route/pipeline", - "type/route/detour", - "type/route_master", - "type/route" - ] - }, - "category-water-area": { - "geometry": "area", - "name": "Water Features", - "icon": "water", - "members": [ - "natural/water/lake", - "natural/water/pond", - "natural/water/reservoir", - "natural/water" - ] - }, - "category-water-line": { - "geometry": "line", - "name": "Water Features", - "icon": "category-water", - "members": [ - "waterway/river", - "waterway/stream", - "waterway/canal", - "waterway/ditch", - "waterway/drain" - ] - } - } -} \ No newline at end of file diff --git a/data/presets/fields.json b/data/presets/fields.json deleted file mode 100644 index 07b14a6c0a..0000000000 --- a/data/presets/fields.json +++ /dev/null @@ -1,1585 +0,0 @@ -{ - "fields": { - "access_simple": { - "key": "access", - "type": "combo", - "label": "Allowed Access", - "options": [ - "permissive", - "private", - "customers", - "no" - ] - }, - "access_toilets": { - "key": "access", - "type": "combo", - "label": "Access", - "options": [ - "yes", - "permissive", - "private", - "customers" - ] - }, - "access": { - "keys": [ - "access", - "foot", - "motor_vehicle", - "bicycle", - "horse" - ], - "reference": { - "key": "access" - }, - "type": "access", - "label": "Allowed Access", - "placeholder": "Not Specified", - "strings": { - "types": { - "access": "All", - "foot": "Foot", - "motor_vehicle": "Motor Vehicles", - "bicycle": "Bicycles", - "horse": "Horses" - }, - "options": { - "yes": { - "title": "Allowed", - "description": "Access permitted by law; a right of way" - }, - "no": { - "title": "Prohibited", - "description": "Access not permitted to the general public" - }, - "permissive": { - "title": "Permissive", - "description": "Access permitted until such time as the owner revokes the permission" - }, - "private": { - "title": "Private", - "description": "Access permitted only with permission of the owner on an individual basis" - }, - "designated": { - "title": "Designated", - "description": "Access permitted according to signs or specific local laws" - }, - "destination": { - "title": "Destination", - "description": "Access permitted only to reach a destination" - }, - "dismount": { - "title": "Dismount", - "description": "Access permitted but rider must dismount" - } - } - } - }, - "address": { - "type": "address", - "keys": [ - "addr:city", - "addr:conscriptionnumber", - "addr:country", - "addr:district", - "addr:floor", - "addr:hamlet", - "addr:housename", - "addr:housenumber", - "addr:place", - "addr:postcode", - "addr:province", - "addr:state", - "addr:street", - "addr:subdistrict", - "addr:suburb" - ], - "reference": { - "key": "addr" - }, - "icon": "address", - "universal": true, - "label": "Address", - "strings": { - "placeholders": { - "city": "City", - "conscriptionnumber": "123", - "country": "Country", - "district": "District", - "floor": "Floor", - "hamlet": "Hamlet", - "housename": "Housename", - "housenumber": "123", - "place": "Place", - "postcode": "Postcode", - "province": "Province", - "state": "State", - "street": "Street", - "subdistrict": "Subdistrict", - "suburb": "Suburb" - } - } - }, - "admin_level": { - "key": "admin_level", - "type": "number", - "label": "Admin Level" - }, - "aerialway": { - "key": "aerialway", - "type": "typeCombo", - "label": "Type" - }, - "aerialway/access": { - "key": "aerialway:access", - "type": "combo", - "label": "Access", - "strings": { - "options": { - "entry": "Entry", - "exit": "Exit", - "both": "Both" - } - } - }, - "aerialway/bubble": { - "key": "aerialway:bubble", - "type": "check", - "label": "Bubble" - }, - "aerialway/capacity": { - "key": "aerialway:capacity", - "type": "number", - "label": "Capacity (per hour)", - "placeholder": "500, 2500, 5000..." - }, - "aerialway/duration": { - "key": "aerialway:duration", - "type": "number", - "label": "Duration (minutes)", - "placeholder": "1, 2, 3..." - }, - "aerialway/heating": { - "key": "aerialway:heating", - "type": "check", - "label": "Heated" - }, - "aerialway/occupancy": { - "key": "aerialway:occupancy", - "type": "number", - "label": "Occupancy", - "placeholder": "2, 4, 8..." - }, - "aerialway/summer/access": { - "key": "aerialway:summer:access", - "type": "combo", - "label": "Access (summer)", - "strings": { - "options": { - "entry": "Entry", - "exit": "Exit", - "both": "Both" - } - } - }, - "aeroway": { - "key": "aeroway", - "type": "typeCombo", - "label": "Type" - }, - "amenity": { - "key": "amenity", - "type": "typeCombo", - "label": "Type" - }, - "area/highway": { - "key": "area:highway", - "type": "typeCombo", - "label": "Type" - }, - "artist": { - "key": "artist_name", - "type": "text", - "label": "Artist" - }, - "artwork_type": { - "key": "artwork_type", - "type": "combo", - "label": "Type" - }, - "atm": { - "key": "atm", - "type": "check", - "label": "ATM" - }, - "backrest": { - "key": "backrest", - "type": "check", - "label": "Backrest" - }, - "barrier": { - "key": "barrier", - "type": "typeCombo", - "label": "Type" - }, - "beauty": { - "key": "beauty", - "type": "combo", - "label": "Shop Type" - }, - "bench": { - "key": "bench", - "type": "check", - "label": "Bench" - }, - "bicycle_parking": { - "key": "bicycle_parking", - "type": "combo", - "label": "Type" - }, - "bin": { - "key": "bin", - "type": "check", - "label": "Waste Bin" - }, - "blood_components": { - "key": "blood:", - "type": "multiCombo", - "label": "Blood Components", - "strings": { - "options": { - "whole": "whole blood", - "plasma": "plasma", - "platelets": "platelets", - "stemcells": "stem cell samples" - } - } - }, - "boundary": { - "key": "boundary", - "type": "combo", - "label": "Type" - }, - "brand": { - "key": "brand", - "type": "text", - "label": "Brand" - }, - "building_area": { - "key": "building", - "type": "combo", - "default": "yes", - "geometry": "area", - "label": "Building" - }, - "building": { - "key": "building", - "type": "combo", - "label": "Building" - }, - "capacity": { - "key": "capacity", - "type": "number", - "label": "Capacity", - "placeholder": "50, 100, 200..." - }, - "cardinal_direction": { - "key": "direction", - "type": "combo", - "label": "Direction", - "strings": { - "options": { - "N": "North", - "E": "East", - "S": "South", - "W": "West", - "NE": "Northeast", - "SE": "Southeast", - "SW": "Southwest", - "NW": "Northwest", - "NNE": "North-northeast", - "ENE": "East-northeast", - "ESE": "East-southeast", - "SSE": "South-southeast", - "SSW": "South-southwest", - "WSW": "West-southwest", - "WNW": "West-northwest", - "NNW": "North-northwest" - } - } - }, - "clock_direction": { - "key": "direction", - "type": "combo", - "label": "Direction", - "strings": { - "options": { - "clockwise": "Clockwise", - "anticlockwise": "Counterclockwise" - } - } - }, - "collection_times": { - "key": "collection_times", - "type": "text", - "label": "Collection Times" - }, - "construction": { - "key": "construction", - "type": "combo", - "label": "Type" - }, - "content": { - "key": "content", - "type": "combo", - "label": "Contents" - }, - "country": { - "key": "country", - "type": "combo", - "label": "Country" - }, - "covered": { - "key": "covered", - "type": "check", - "label": "Covered" - }, - "craft": { - "key": "craft", - "type": "typeCombo", - "label": "Type" - }, - "crop": { - "key": "crop", - "type": "combo", - "label": "Crop" - }, - "crossing": { - "key": "crossing", - "type": "combo", - "label": "Type" - }, - "cuisine": { - "key": "cuisine", - "type": "combo", - "label": "Cuisine" - }, - "currency_multi": { - "key": "currency:", - "type": "multiCombo", - "label": "Currency Types" - }, - "cycle_network": { - "key": "cycle_network", - "type": "networkCombo", - "label": "Network" - }, - "cycleway": { - "keys": [ - "cycleway:left", - "cycleway:right" - ], - "reference": { - "key": "cycleway" - }, - "type": "cycleway", - "label": "Bike Lanes", - "placeholder": "none", - "strings": { - "types": { - "cycleway:left": "Left side", - "cycleway:right": "Right side" - }, - "options": { - "none": { - "title": "None", - "description": "No bike lane" - }, - "lane": { - "title": "Standard bike lane", - "description": "A bike lane separated from auto traffic by a painted line" - }, - "shared_lane": { - "title": "Shared bike lane", - "description": "A bike lane with no separation from auto traffic" - }, - "track": { - "title": "Bike track", - "description": "A bike lane separated from traffic by a physical barrier" - }, - "share_busway": { - "title": "Bike lane shared with bus", - "description": "A bike lane shared with a bus lane" - }, - "opposite_lane": { - "title": "Opposite bike lane", - "description": "A bike lane that travels in the opposite direction of traffic" - }, - "opposite": { - "title": "Contraflow bike lane", - "description": "A bike lane that travels in both directions on a one-way street" - } - } - } - }, - "date": { - "key": "date", - "type": "check", - "label": "Date" - }, - "delivery": { - "key": "delivery", - "type": "check", - "label": "Delivery" - }, - "denomination": { - "key": "denomination", - "type": "combo", - "label": "Denomination" - }, - "denotation": { - "key": "denotation", - "type": "combo", - "label": "Denotation" - }, - "description": { - "key": "description", - "type": "textarea", - "label": "Description", - "universal": true - }, - "diaper": { - "key": "diaper", - "type": "combo", - "label": "Diaper Changing Available", - "options": [ - "yes", - "no", - "room", - "1", - "2", - "3", - "4", - "5" - ] - }, - "display": { - "key": "display", - "type": "combo", - "label": "Display", - "options": [ - "analog", - "digital", - "sundial", - "unorthodox" - ] - }, - "dock": { - "key": "dock", - "type": "combo", - "label": "Type" - }, - "drive_through": { - "key": "drive_through", - "type": "check", - "label": "Drive-Through" - }, - "electrified": { - "key": "electrified", - "type": "combo", - "label": "Electrification", - "placeholder": "Contact Line, Electrified Rail...", - "strings": { - "options": { - "contact_line": "Contact Line", - "rail": "Electrified Rail", - "yes": "Yes (unspecified)", - "no": "No" - } - } - }, - "elevation": { - "key": "ele", - "type": "number", - "icon": "elevation", - "universal": true, - "label": "Elevation" - }, - "emergency": { - "key": "emergency", - "type": "check", - "label": "Emergency" - }, - "entrance": { - "key": "entrance", - "type": "typeCombo", - "label": "Type" - }, - "except": { - "key": "except", - "type": "combo", - "label": "Exceptions" - }, - "fax": { - "key": "fax", - "type": "tel", - "label": "Fax", - "placeholder": "+31 42 123 4567" - }, - "fee": { - "key": "fee", - "type": "check", - "label": "Fee" - }, - "fire_hydrant/type": { - "key": "fire_hydrant:type", - "type": "combo", - "label": "Type", - "strings": { - "options": { - "pillar": "Pillar/Aboveground", - "underground": "Underground", - "wall": "Wall", - "pond": "Pond" - } - } - }, - "fixme": { - "key": "fixme", - "type": "textarea", - "label": "Fix Me", - "universal": true - }, - "fuel_multi": { - "key": "fuel:", - "type": "multiCombo", - "label": "Fuel Types" - }, - "fuel": { - "key": "fuel", - "type": "combo", - "label": "Fuel" - }, - "gauge": { - "key": "gauge", - "type": "combo", - "label": "Gauge" - }, - "gender": { - "type": "radio", - "keys": [ - "male", - "female", - "unisex" - ], - "label": "Gender", - "placeholder": "Unknown", - "strings": { - "options": { - "male": "Male", - "female": "Female", - "unisex": "Unisex" - } - } - }, - "generator/method": { - "key": "generator:method", - "type": "combo", - "label": "Method" - }, - "generator/source": { - "key": "generator:source", - "type": "combo", - "label": "Source" - }, - "generator/type": { - "key": "generator:type", - "type": "combo", - "label": "Type" - }, - "golf_hole": { - "key": "ref", - "type": "text", - "label": "Reference", - "placeholder": "Hole number (1-18)" - }, - "handicap": { - "key": "handicap", - "type": "number", - "label": "Handicap", - "placeholder": "1-18" - }, - "handrail": { - "key": "handrail", - "type": "check", - "label": "Handrail" - }, - "highway": { - "key": "highway", - "type": "typeCombo", - "label": "Type" - }, - "historic": { - "key": "historic", - "type": "typeCombo", - "label": "Type" - }, - "hoops": { - "key": "hoops", - "type": "number", - "label": "Hoops", - "placeholder": "1, 2, 4..." - }, - "iata": { - "key": "iata", - "type": "text", - "label": "IATA" - }, - "icao": { - "key": "icao", - "type": "text", - "label": "ICAO" - }, - "incline_steps": { - "key": "incline", - "type": "combo", - "label": "Incline", - "strings": { - "options": { - "up": "Up", - "down": "Down" - } - } - }, - "incline": { - "key": "incline", - "type": "combo", - "label": "Incline" - }, - "indoor": { - "key": "indoor", - "type": "check", - "label": "Indoor" - }, - "information": { - "key": "information", - "type": "typeCombo", - "label": "Type" - }, - "internet_access": { - "key": "internet_access", - "type": "combo", - "label": "Internet Access", - "strings": { - "options": { - "yes": "Yes", - "no": "No", - "wlan": "Wifi", - "wired": "Wired", - "terminal": "Terminal" - } - } - }, - "internet_access/fee": { - "key": "internet_access:fee", - "type": "check", - "label": "Internet Access Fee" - }, - "kerb": { - "key": "kerb", - "type": "combo", - "label": "Curb Ramp" - }, - "lamp_type": { - "key": "lamp_type", - "type": "combo", - "label": "Type" - }, - "landuse": { - "key": "landuse", - "type": "typeCombo", - "label": "Type" - }, - "lanes": { - "key": "lanes", - "type": "number", - "label": "Lanes", - "placeholder": "1, 2, 3..." - }, - "layer": { - "key": "layer", - "type": "combo", - "label": "Layer" - }, - "leaf_cycle_singular": { - "key": "leaf_cycle", - "type": "combo", - "label": "Leaf Cycle", - "strings": { - "options": { - "evergreen": "Evergreen", - "deciduous": "Deciduous", - "semi_evergreen": "Semi-Evergreen", - "semi_deciduous": "Semi-Deciduous" - } - } - }, - "leaf_cycle": { - "key": "leaf_cycle", - "type": "combo", - "label": "Leaf Cycle", - "strings": { - "options": { - "evergreen": "Evergreen", - "deciduous": "Deciduous", - "semi_evergreen": "Semi-Evergreen", - "semi_deciduous": "Semi-Deciduous", - "mixed": "Mixed" - } - } - }, - "leaf_type_singular": { - "key": "leaf_type", - "type": "combo", - "label": "Leaf Type", - "strings": { - "options": { - "broadleaved": "Broadleaved", - "needleleaved": "Needleleaved", - "leafless": "Leafless" - } - } - }, - "leaf_type": { - "key": "leaf_type", - "type": "combo", - "label": "Leaf Type", - "strings": { - "options": { - "broadleaved": "Broadleaved", - "needleleaved": "Needleleaved", - "mixed": "Mixed", - "leafless": "Leafless" - } - } - }, - "leisure": { - "key": "leisure", - "type": "typeCombo", - "label": "Type" - }, - "length": { - "key": "length", - "type": "number", - "label": "Length (Meters)" - }, - "level": { - "key": "level", - "type": "combo", - "label": "Level", - "universal": true - }, - "levels": { - "key": "building:levels", - "type": "number", - "label": "Levels", - "placeholder": "2, 4, 6..." - }, - "lit": { - "key": "lit", - "type": "check", - "label": "Lit" - }, - "location": { - "key": "location", - "type": "combo", - "label": "Location" - }, - "man_made": { - "key": "man_made", - "type": "typeCombo", - "label": "Type" - }, - "maxspeed": { - "key": "maxspeed", - "type": "maxspeed", - "label": "Speed Limit", - "placeholder": "40, 50, 60..." - }, - "maxstay": { - "key": "maxstay", - "type": "combo", - "label": "Max Stay", - "options": [ - "15 min", - "30 min", - "45 min", - "1 hr", - "1.5 hr", - "2 hr", - "2.5 hr", - "3 hr", - "4 hr", - "1 day", - "2 day" - ], - "snake_case": false - }, - "mtb/scale": { - "key": "mtb:scale", - "type": "combo", - "label": "Mountain Biking Difficulty", - "placeholder": "0, 1, 2, 3...", - "strings": { - "options": { - "0": "0: Solid gravel/packed earth, no obstacles, wide curves", - "1": "1: Some loose surface, small obstacles, wide curves", - "2": "2: Much loose surface, large obstacles, easy hairpins", - "3": "3: Slippery surface, large obstacles, tight hairpins", - "4": "4: Loose surface or boulders, dangerous hairpins", - "5": "5: Maximum difficulty, boulder fields, landslides", - "6": "6: Not rideable except by the very best mountain bikers" - } - } - }, - "mtb/scale/imba": { - "key": "mtb:scale:imba", - "type": "combo", - "label": "IMBA Trail Difficulty", - "placeholder": "Easy, Medium, Difficult...", - "strings": { - "options": { - "0": "Easiest (white circle)", - "1": "Easy (green circle)", - "2": "Medium (blue square)", - "3": "Difficult (black diamond)", - "4": "Extremely Difficult (double black diamond)" - } - } - }, - "mtb/scale/uphill": { - "key": "mtb:scale:uphill", - "type": "combo", - "label": "Mountain Biking Uphill Difficulty", - "placeholder": "0, 1, 2, 3...", - "strings": { - "options": { - "0": "0: Avg. incline <10%, gravel/packed earth, no obstacles", - "1": "1: Avg. incline <15%, gravel/packed earth, few small objects", - "2": "2: Avg. incline <20%, stable surface, fistsize rocks/roots", - "3": "3: Avg. incline <25%, variable surface, fistsize rocks/branches", - "4": "4: Avg. incline <30%, poor condition, big rocks/branches", - "5": "5: Very steep, bike generally needs to be pushed or carried" - } - } - }, - "name": { - "key": "name", - "type": "localized", - "label": "Name", - "placeholder": "Common name (if any)" - }, - "natural": { - "key": "natural", - "type": "typeCombo", - "label": "Natural" - }, - "network_bicycle": { - "key": "network", - "type": "combo", - "label": "Network Type", - "placeholder": "Local, Regional, National, International", - "strings": { - "options": { - "lcn": "Local", - "rcn": "Regional", - "ncn": "National", - "icn": "International" - } - } - }, - "network_foot": { - "key": "network", - "type": "combo", - "label": "Network Type", - "placeholder": "Local, Regional, National, International", - "strings": { - "options": { - "lwn": "Local", - "rwn": "Regional", - "nwn": "National", - "iwn": "International" - } - } - }, - "network_horse": { - "key": "network", - "type": "combo", - "label": "Network Type", - "placeholder": "Local, Regional, National, International", - "strings": { - "options": { - "lhn": "Local", - "rhn": "Regional", - "nhn": "National", - "ihn": "International" - } - } - }, - "network_road": { - "key": "network", - "type": "networkCombo", - "label": "Network" - }, - "network": { - "key": "network", - "type": "text", - "label": "Network" - }, - "note": { - "key": "note", - "type": "textarea", - "universal": true, - "icon": "note", - "label": "Note" - }, - "office": { - "key": "office", - "type": "typeCombo", - "label": "Type" - }, - "oneway_yes": { - "key": "oneway", - "type": "check", - "label": "One Way", - "strings": { - "options": { - "undefined": "Assumed to be Yes", - "yes": "Yes", - "no": "No" - } - } - }, - "oneway": { - "key": "oneway", - "type": "check", - "label": "One Way", - "strings": { - "options": { - "undefined": "Assumed to be No", - "yes": "Yes", - "no": "No" - } - } - }, - "opening_hours": { - "key": "opening_hours", - "type": "text", - "label": "Hours" - }, - "operator": { - "key": "operator", - "type": "text", - "label": "Operator" - }, - "par": { - "key": "par", - "type": "number", - "label": "Par", - "placeholder": "3, 4, 5..." - }, - "parallel_direction": { - "key": "direction", - "type": "combo", - "label": "Direction", - "strings": { - "options": { - "forward": "Forward", - "backward": "Backward" - } - } - }, - "park_ride": { - "key": "park_ride", - "type": "check", - "label": "Park and Ride" - }, - "parking": { - "key": "parking", - "type": "combo", - "label": "Type", - "strings": { - "options": { - "surface": "Surface", - "multi-storey": "Multilevel", - "underground": "Underground", - "sheds": "Sheds", - "carports": "Carports", - "garage_boxes": "Garage Boxes", - "lane": "Roadside Lane" - } - } - }, - "payment_multi": { - "key": "payment:", - "type": "multiCombo", - "label": "Payment Types" - }, - "phone": { - "key": "phone", - "type": "tel", - "icon": "telephone", - "universal": true, - "label": "Phone", - "placeholder": "+31 42 123 4567" - }, - "piste/difficulty": { - "key": "piste:difficulty", - "type": "combo", - "label": "Difficulty", - "placeholder": "Easy, Intermediate, Advanced...", - "strings": { - "options": { - "novice": "Novice (instructional)", - "easy": "Easy (green circle)", - "intermediate": "Intermediate (blue square)", - "advanced": "Advanced (black diamond)", - "expert": "Expert (double black diamond)", - "freeride": "Freeride (off-piste)", - "extreme": "Extreme (climbing equipment required)" - } - } - }, - "piste/grooming": { - "key": "piste:grooming", - "type": "combo", - "label": "Grooming", - "strings": { - "options": { - "classic": "Classic", - "mogul": "Mogul", - "backcountry": "Backcountry", - "classic+skating": "Classic and Skating", - "scooter": "Scooter/Snowmobile", - "skating": "Skating" - } - } - }, - "piste/type": { - "key": "piste:type", - "type": "typeCombo", - "label": "Type", - "strings": { - "options": { - "downhill": "Downhill", - "nordic": "Nordic", - "skitour": "Skitour", - "sled": "Sled", - "hike": "Hike", - "sleigh": "Sleigh", - "ice_skate": "Ice Skate", - "snow_park": "Snow Park", - "playground": "Playground" - } - } - }, - "place": { - "key": "place", - "type": "typeCombo", - "label": "Type" - }, - "population": { - "key": "population", - "type": "text", - "label": "Population" - }, - "power_supply": { - "key": "power_supply", - "type": "check", - "label": "Power Supply" - }, - "power": { - "key": "power", - "type": "typeCombo", - "label": "Type" - }, - "railway": { - "key": "railway", - "type": "typeCombo", - "label": "Type" - }, - "recycling_accepts": { - "key": "recycling:", - "type": "multiCombo", - "label": "Accepts" - }, - "recycling_type": { - "key": "recycling_type", - "default": "container", - "type": "combo", - "label": "Recycling Type", - "strings": { - "options": { - "container": "Container", - "centre": "Recycling Center" - } - } - }, - "ref": { - "key": "ref", - "type": "text", - "label": "Reference" - }, - "relation": { - "key": "type", - "type": "combo", - "label": "Type" - }, - "religion": { - "key": "religion", - "type": "combo", - "label": "Religion" - }, - "restriction": { - "key": "restriction", - "type": "combo", - "label": "Type" - }, - "restrictions": { - "type": "restrictions", - "geometry": "vertex", - "icon": "restrictions", - "reference": { - "rtype": "restriction" - }, - "label": "Turn Restrictions" - }, - "rooms": { - "key": "rooms", - "type": "number", - "label": "Rooms" - }, - "route_master": { - "key": "route_master", - "type": "combo", - "label": "Type" - }, - "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" - }, - "seasonal": { - "key": "seasonal", - "type": "check", - "label": "Seasonal" - }, - "second_hand": { - "key": "second_hand", - "type": "combo", - "label": "Sells Used", - "placeholder": "Yes, No, Only", - "strings": { - "options": { - "yes": "Yes", - "no": "No", - "only": "Only" - } - } - }, - "service_rail": { - "key": "service", - "type": "combo", - "label": "Service Type", - "strings": { - "options": { - "spur": "Spur", - "yard": "Yard", - "siding": "Siding", - "crossover": "Crossover" - } - } - }, - "service": { - "key": "service", - "type": "combo", - "label": "Type", - "options": [ - "parking_aisle", - "driveway", - "alley", - "emergency_access", - "drive-through" - ] - }, - "service/bicycle": { - "key": "service:bicycle:", - "type": "multiCombo", - "label": "Services" - }, - "shelter_type": { - "key": "shelter_type", - "type": "combo", - "label": "Type" - }, - "shelter": { - "key": "shelter", - "type": "check", - "label": "Shelter" - }, - "shop": { - "key": "shop", - "type": "typeCombo", - "label": "Type" - }, - "site": { - "key": "site", - "type": "combo", - "label": "Type" - }, - "smoking": { - "key": "smoking", - "type": "combo", - "label": "Smoking", - "placeholder": "No, Separated, Yes...", - "strings": { - "options": { - "no": "No smoking anywhere", - "separated": "In smoking areas, not physically isolated", - "isolated": "In smoking areas, physically isolated", - "outside": "Allowed outside", - "yes": "Allowed everywhere", - "dedicated": "Dedicated to smokers (e.g. smokers' club)" - } - } - }, - "smoothness": { - "key": "smoothness", - "type": "combo", - "label": "Smoothness", - "placeholder": "Thin Rollers, Wheels, Off-Road...", - "strings": { - "options": { - "excellent": "Thin Rollers: rollerblade, skateboard", - "good": "Thin Wheels: racing bike", - "intermediate": "Wheels: city bike, wheelchair, scooter", - "bad": "Robust Wheels: trekking bike, car, rickshaw", - "very_bad": "High Clearance: light duty off-road vehicle", - "horrible": "Off-Road: heavy duty off-road vehicle", - "very_horrible": "Specialized off-road: tractor, ATV", - "impassable": "Impassable / No wheeled vehicle" - } - } - }, - "social_facility_for": { - "key": "social_facility:for", - "type": "radio", - "label": "People served", - "placeholder": "Homeless, Disabled, Child, etc", - "options": [ - "abused", - "child", - "disabled", - "diseased", - "drug_addicted", - "homeless", - "juvenile", - "mental_health", - "migrant", - "orphan", - "senior", - "underprivileged", - "unemployed", - "victim" - ] - }, - "source": { - "key": "source", - "type": "text", - "icon": "source", - "universal": true, - "label": "Source" - }, - "sport_ice": { - "key": "sport", - "type": "combo", - "label": "Sport", - "options": [ - "skating", - "hockey", - "multi", - "curling", - "ice_stock" - ] - }, - "sport_racing": { - "key": "sport", - "type": "combo", - "label": "Sport", - "options": [ - "cycling", - "dog_racing", - "horse_racing", - "karting", - "motor", - "motocross", - "running" - ] - }, - "sport": { - "key": "sport", - "type": "combo", - "label": "Sport" - }, - "stars": { - "key": "stars", - "type": "number", - "label": "Stars" - }, - "stop": { - "key": "stop", - "type": "combo", - "label": "Stop Type", - "strings": { - "options": { - "all": "All Ways", - "minor": "Minor Road" - } - } - }, - "structure": { - "type": "radio", - "keys": [ - "bridge", - "tunnel", - "embankment", - "cutting", - "ford" - ], - "label": "Structure", - "placeholder": "Unknown", - "strings": { - "options": { - "bridge": "Bridge", - "tunnel": "Tunnel", - "embankment": "Embankment", - "cutting": "Cutting", - "ford": "Ford" - } - } - }, - "studio": { - "key": "studio", - "type": "combo", - "label": "Type" - }, - "substation": { - "key": "substation", - "type": "typeCombo", - "label": "Type" - }, - "supervised": { - "key": "supervised", - "type": "check", - "label": "Supervised" - }, - "support": { - "key": "support", - "type": "combo", - "label": "Support" - }, - "surface": { - "key": "surface", - "type": "combo", - "label": "Surface" - }, - "tactile_paving": { - "key": "tactile_paving", - "type": "check", - "label": "Tactile Paving" - }, - "takeaway": { - "key": "takeaway", - "type": "combo", - "label": "Takeaway", - "placeholder": "Yes, No, Takeaway Only...", - "strings": { - "options": { - "yes": "Yes", - "no": "No", - "only": "Takeaway Only" - } - } - }, - "toilets/disposal": { - "key": "toilets:disposal", - "type": "combo", - "label": "Disposal", - "strings": { - "options": { - "flush": "Flush", - "pitlatrine": "Pit/Latrine", - "chemical": "Chemical", - "bucket": "Bucket" - } - } - }, - "tourism": { - "key": "tourism", - "type": "typeCombo", - "label": "Type" - }, - "towertype": { - "key": "tower:type", - "type": "combo", - "label": "Tower type" - }, - "tracktype": { - "key": "tracktype", - "type": "combo", - "label": "Track Type", - "placeholder": "Solid, Mostly Solid, Soft...", - "strings": { - "options": { - "grade1": "Solid: paved or heavily compacted hardcore surface", - "grade2": "Mostly Solid: gravel/rock with some soft material mixed in", - "grade3": "Even mixture of hard and soft materials", - "grade4": "Mostly Soft: soil/sand/grass with some hard material mixed in", - "grade5": "Soft: soil/sand/grass" - } - } - }, - "traffic_calming": { - "key": "traffic_calming", - "type": "typeCombo", - "label": "Type" - }, - "traffic_signals": { - "key": "traffic_signals", - "type": "combo", - "label": "Type", - "default": "signal" - }, - "trail_visibility": { - "key": "trail_visibility", - "type": "combo", - "label": "Trail Visibility", - "placeholder": "Excellent, Good, Bad...", - "strings": { - "options": { - "excellent": "Excellent: unambiguous path or markers everywhere", - "good": "Good: markers visible, sometimes require searching", - "intermediate": "Intermediate: few markers, path mostly visible", - "bad": "Bad: no markers, path sometimes invisible/pathless", - "horrible": "Horrible: often pathless, some orientation skills required", - "no": "No: pathless, excellent orientation skills required" - } - } - }, - "trees": { - "key": "trees", - "type": "combo", - "label": "Trees" - }, - "tunnel": { - "key": "tunnel", - "type": "combo", - "label": "Tunnel" - }, - "vending": { - "key": "vending", - "type": "combo", - "label": "Type of Goods" - }, - "visibility": { - "key": "visibility", - "type": "combo", - "label": "Visibility", - "strings": { - "options": { - "house": "Up to 5m (16ft)", - "street": "5 to 20m (16 to 65ft)", - "area": "Over 20m (65ft)" - } - } - }, - "water_point": { - "key": "water_point", - "type": "check", - "label": "Water Point" - }, - "water": { - "key": "water", - "type": "combo", - "label": "Type" - }, - "waterway": { - "key": "waterway", - "type": "typeCombo", - "label": "Type" - }, - "website": { - "key": "website", - "type": "url", - "icon": "website", - "placeholder": "http://example.com/", - "universal": true, - "label": "Website" - }, - "wetland": { - "key": "wetland", - "type": "combo", - "label": "Type" - }, - "wheelchair": { - "key": "wheelchair", - "type": "radio", - "options": [ - "yes", - "limited", - "no" - ], - "icon": "wheelchair", - "universal": true, - "label": "Wheelchair Access" - }, - "width": { - "key": "width", - "type": "number", - "label": "Width (Meters)" - }, - "wikipedia": { - "key": "wikipedia", - "keys": [ - "wikipedia", - "wikidata" - ], - "type": "wikipedia", - "icon": "wikipedia", - "universal": true, - "label": "Wikipedia" - } - } -} \ No newline at end of file diff --git a/data/presets/presets.json b/data/presets/presets.json deleted file mode 100644 index 71e01def04..0000000000 --- a/data/presets/presets.json +++ /dev/null @@ -1,40623 +0,0 @@ -{ - "presets": { - "aerialway": { - "fields": [ - "aerialway" - ], - "geometry": [ - "point", - "vertex", - "line" - ], - "tags": { - "aerialway": "*" - }, - "terms": [ - "ski lift", - "funifor", - "funitel" - ], - "searchable": false, - "name": "Aerialway" - }, - "aeroway": { - "icon": "airport", - "fields": [ - "aeroway" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "aeroway": "*" - }, - "searchable": false, - "name": "Aeroway" - }, - "amenity": { - "fields": [ - "amenity" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "amenity": "*" - }, - "searchable": false, - "name": "Amenity" - }, - "highway": { - "fields": [ - "highway" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "highway": "*" - }, - "searchable": false, - "name": "Highway" - }, - "place": { - "fields": [ - "place" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "place": "*" - }, - "searchable": false, - "name": "Place" - }, - "power": { - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "power": "*" - }, - "fields": [ - "power" - ], - "searchable": false, - "name": "Power" - }, - "railway": { - "fields": [ - "railway" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "railway": "*" - }, - "searchable": false, - "name": "Railway" - }, - "roundabout": { - "geometry": [ - "vertex", - "line" - ], - "tags": { - "junction": "roundabout" - }, - "name": "Roundabout", - "searchable": false - }, - "waterway": { - "fields": [ - "waterway" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "waterway": "*" - }, - "searchable": false, - "name": "Waterway" - }, - "address": { - "fields": [ - "address" - ], - "geometry": [ - "point" - ], - "tags": { - "addr:housenumber": "*" - }, - "addTags": {}, - "removeTags": {}, - "matchScore": 0.2, - "name": "Address" - }, - "advertising/billboard": { - "fields": [ - "parallel_direction", - "lit" - ], - "geometry": [ - "point", - "vertex", - "line" - ], - "tags": { - "advertising": "billboard" - }, - "name": "Billboard" - }, - "aerialway/cable_car": { - "geometry": [ - "line" - ], - "terms": [ - "tramway", - "ropeway" - ], - "fields": [ - "aerialway/occupancy", - "aerialway/capacity", - "aerialway/duration", - "aerialway/heating" - ], - "tags": { - "aerialway": "cable_car" - }, - "name": "Cable Car" - }, - "aerialway/chair_lift": { - "geometry": [ - "line" - ], - "fields": [ - "aerialway/occupancy", - "aerialway/capacity", - "aerialway/duration", - "aerialway/bubble", - "aerialway/heating" - ], - "tags": { - "aerialway": "chair_lift" - }, - "name": "Chair Lift" - }, - "aerialway/gondola": { - "geometry": [ - "line" - ], - "fields": [ - "aerialway/occupancy", - "aerialway/capacity", - "aerialway/duration", - "aerialway/bubble", - "aerialway/heating" - ], - "tags": { - "aerialway": "gondola" - }, - "name": "Gondola" - }, - "aerialway/magic_carpet": { - "geometry": [ - "line" - ], - "fields": [ - "aerialway/capacity", - "aerialway/duration", - "aerialway/heating" - ], - "tags": { - "aerialway": "magic_carpet" - }, - "name": "Magic Carpet Lift" - }, - "aerialway/platter": { - "geometry": [ - "line" - ], - "terms": [ - "button lift", - "poma lift" - ], - "fields": [ - "aerialway/capacity", - "aerialway/duration" - ], - "tags": { - "aerialway": "platter" - }, - "name": "Platter Lift" - }, - "aerialway/pylon": { - "geometry": [ - "point", - "vertex" - ], - "fields": [ - "ref" - ], - "tags": { - "aerialway": "pylon" - }, - "name": "Aerialway Pylon" - }, - "aerialway/rope_tow": { - "geometry": [ - "line" - ], - "terms": [ - "handle tow", - "bugel lift" - ], - "fields": [ - "aerialway/capacity", - "aerialway/duration" - ], - "tags": { - "aerialway": "rope_tow" - }, - "name": "Rope Tow Lift" - }, - "aerialway/station": { - "geometry": [ - "point", - "vertex" - ], - "fields": [ - "aerialway/access", - "aerialway/summer/access", - "elevation" - ], - "tags": { - "aerialway": "station" - }, - "name": "Aerialway Station" - }, - "aerialway/t-bar": { - "geometry": [ - "line" - ], - "fields": [ - "aerialway/capacity", - "aerialway/duration" - ], - "tags": { - "aerialway": "t-bar" - }, - "name": "T-bar Lift" - }, - "aeroway/aerodrome": { - "icon": "airport", - "geometry": [ - "point", - "area" - ], - "terms": [ - "airplane", - "airport", - "aerodrome" - ], - "fields": [ - "ref", - "iata", - "icao", - "operator" - ], - "tags": { - "aeroway": "aerodrome" - }, - "name": "Airport" - }, - "aeroway/apron": { - "icon": "airport", - "geometry": [ - "area" - ], - "terms": [ - "ramp" - ], - "fields": [ - "ref", - "surface" - ], - "tags": { - "aeroway": "apron" - }, - "name": "Apron" - }, - "aeroway/gate": { - "icon": "airport", - "geometry": [ - "point" - ], - "fields": [ - "ref" - ], - "tags": { - "aeroway": "gate" - }, - "name": "Airport gate" - }, - "aeroway/hangar": { - "geometry": [ - "area" - ], - "fields": [ - "building_area" - ], - "tags": { - "aeroway": "hangar" - }, - "name": "Hangar" - }, - "aeroway/helipad": { - "icon": "heliport", - "geometry": [ - "point", - "area" - ], - "terms": [ - "helicopter", - "helipad", - "heliport" - ], - "tags": { - "aeroway": "helipad" - }, - "name": "Helipad" - }, - "aeroway/runway": { - "geometry": [ - "line", - "area" - ], - "terms": [ - "landing strip" - ], - "fields": [ - "ref", - "surface", - "length", - "width" - ], - "tags": { - "aeroway": "runway" - }, - "name": "Runway" - }, - "aeroway/taxiway": { - "geometry": [ - "line" - ], - "fields": [ - "ref", - "surface" - ], - "tags": { - "aeroway": "taxiway" - }, - "name": "Taxiway" - }, - "aeroway/terminal": { - "geometry": [ - "point", - "area" - ], - "terms": [ - "airport", - "aerodrome" - ], - "fields": [ - "operator", - "building_area" - ], - "tags": { - "aeroway": "terminal" - }, - "name": "Airport terminal" - }, - "amenity/register_office": { - "icon": "town-hall", - "fields": [ - "address", - "building_area", - "opening_hours", - "operator" - ], - "geometry": [ - "point", - "area" - ], - "terms": [], - "tags": { - "amenity": "register_office" - }, - "name": "Register Office", - "searchable": false - }, - "amenity/swimming_pool": { - "icon": "swimming", - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "amenity": "swimming_pool" - }, - "name": "Swimming Pool", - "searchable": false - }, - "amenity/arts_centre": { - "icon": "theatre", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [], - "tags": { - "amenity": "arts_centre" - }, - "name": "Arts Center" - }, - "amenity/atm": { - "icon": "bank", - "fields": [ - "operator", - "currency_multi", - "drive_through" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "money", - "cash", - "machine" - ], - "tags": { - "amenity": "atm" - }, - "name": "ATM" - }, - "amenity/bank": { - "icon": "bank", - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "credit union", - "check", - "deposit", - "fund", - "investment", - "repository", - "reserve", - "safe", - "savings", - "stock", - "treasury", - "trust", - "vault" - ], - "tags": { - "amenity": "bank" - }, - "name": "Bank" - }, - "amenity/bar": { - "icon": "bar", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "dive", - "beer", - "bier", - "booze" - ], - "tags": { - "amenity": "bar" - }, - "name": "Bar" - }, - "amenity/bbq": { - "fields": [ - "covered", - "fuel" - ], - "geometry": [ - "point" - ], - "terms": [ - "bbq", - "grill" - ], - "tags": { - "amenity": "bbq" - }, - "name": "Barbecue/Grill" - }, - "amenity/bench": { - "fields": [ - "backrest" - ], - "geometry": [ - "point", - "vertex", - "line" - ], - "terms": [ - "seat" - ], - "tags": { - "amenity": "bench" - }, - "name": "Bench" - }, - "amenity/bicycle_parking": { - "icon": "bicycle", - "fields": [ - "bicycle_parking", - "capacity", - "operator", - "covered", - "access_simple" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "bike" - ], - "tags": { - "amenity": "bicycle_parking" - }, - "name": "Bicycle Parking" - }, - "amenity/bicycle_rental": { - "icon": "bicycle", - "fields": [ - "capacity", - "network", - "operator" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "bike" - ], - "tags": { - "amenity": "bicycle_rental" - }, - "name": "Bicycle Rental" - }, - "amenity/bicycle_repair_station": { - "icon": "bicycle", - "fields": [ - "operator", - "brand", - "opening_hours", - "fee", - "service/bicycle" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "bike", - "repair", - "chain", - "pump" - ], - "tags": { - "amenity": "bicycle_repair_station" - }, - "name": "Bicycle Repair Tool Stand" - }, - "amenity/biergarten": { - "icon": "beer", - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "biergarten" - }, - "terms": [ - "beer", - "bier", - "booze" - ], - "name": "Beer Garden" - }, - "amenity/boat_rental": { - "fields": [ - "operator" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "boat_rental" - }, - "name": "Boat Rental" - }, - "amenity/bureau_de_change": { - "icon": "bank", - "fields": [ - "operator", - "currency_multi" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "bureau de change", - "money changer" - ], - "tags": { - "amenity": "bureau_de_change" - }, - "name": "Currency Exchange" - }, - "amenity/bus_station": { - "icon": "bus", - "fields": [ - "building_area", - "operator" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "bus_station" - }, - "name": "Bus Station" - }, - "amenity/cafe": { - "icon": "cafe", - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "bistro", - "coffee", - "tea" - ], - "tags": { - "amenity": "cafe" - }, - "name": "Cafe" - }, - "amenity/car_rental": { - "icon": "car", - "fields": [ - "operator" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "car_rental" - }, - "name": "Car Rental" - }, - "amenity/car_sharing": { - "icon": "car", - "fields": [ - "operator", - "capacity" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "car_sharing" - }, - "name": "Car Sharing" - }, - "amenity/car_wash": { - "icon": "car", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "car_wash" - }, - "name": "Car Wash" - }, - "amenity/casino": { - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "gambling", - "roulette", - "craps", - "poker", - "blackjack" - ], - "tags": { - "amenity": "casino" - }, - "name": "Casino" - }, - "amenity/charging_station": { - "icon": "car", - "fields": [ - "operator", - "capacity" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "charging_station" - }, - "terms": [ - "EV", - "Electric Vehicle", - "Supercharger" - ], - "name": "Charging Station" - }, - "amenity/childcare": { - "icon": "school", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "daycare", - "orphanage", - "playgroup" - ], - "tags": { - "amenity": "childcare" - }, - "name": "Nursery/Childcare" - }, - "amenity/cinema": { - "icon": "cinema", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "drive-in", - "film", - "flick", - "movie", - "theater", - "picture", - "show", - "screen" - ], - "tags": { - "amenity": "cinema" - }, - "name": "Cinema" - }, - "amenity/clinic": { - "icon": "hospital", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "medical", - "urgentcare" - ], - "tags": { - "amenity": "clinic" - }, - "name": "Clinic" - }, - "amenity/clock": { - "fields": [ - "support", - "display", - "visibility", - "date" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "amenity": "clock" - }, - "name": "Clock" - }, - "amenity/college": { - "icon": "college", - "fields": [ - "operator", - "address" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "university" - ], - "tags": { - "amenity": "college" - }, - "name": "College Grounds" - }, - "amenity/community_centre": { - "icon": "town-hall", - "fields": [ - "operator", - "address", - "building_area" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "event", - "hall" - ], - "tags": { - "amenity": "community_centre" - }, - "name": "Community Center" - }, - "amenity/compressed_air": { - "icon": "car", - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "compressed_air" - }, - "name": "Compressed Air" - }, - "amenity/courthouse": { - "icon": "town-hall", - "fields": [ - "operator", - "address", - "building_area" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "courthouse" - }, - "name": "Courthouse" - }, - "amenity/coworking_space": { - "icon": "commercial", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "coworking", - "office" - ], - "tags": { - "amenity": "coworking_space" - }, - "name": "Coworking Space" - }, - "amenity/dentist": { - "icon": "dentist", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "tooth", - "teeth" - ], - "tags": { - "amenity": "dentist" - }, - "name": "Dentist" - }, - "amenity/doctors": { - "icon": "hospital", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "medic*" - ], - "tags": { - "amenity": "doctors" - }, - "name": "Doctor" - }, - "amenity/dojo": { - "icon": "pitch", - "fields": [ - "sport", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "martial arts", - "dojang" - ], - "tags": { - "amenity": "dojo" - }, - "name": "Dojo / Martial Arts Academy" - }, - "amenity/drinking_water": { - "icon": "water", - "geometry": [ - "point" - ], - "tags": { - "amenity": "drinking_water" - }, - "terms": [ - "fountain", - "potable" - ], - "name": "Drinking Water" - }, - "amenity/embassy": { - "icon": "embassy", - "fields": [ - "country", - "address", - "building_area" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "embassy" - }, - "name": "Embassy" - }, - "amenity/fast_food": { - "icon": "fast-food", - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "fast_food" - }, - "terms": [ - "restaurant", - "takeaway" - ], - "name": "Fast Food" - }, - "amenity/ferry_terminal": { - "icon": "ferry", - "fields": [ - "network", - "operator", - "address", - "building_area" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [], - "tags": { - "amenity": "ferry_terminal" - }, - "name": "Ferry Terminal" - }, - "amenity/fire_station": { - "icon": "fire-station", - "fields": [ - "operator", - "address", - "building_area" - ], - "geometry": [ - "point", - "area" - ], - "terms": [], - "tags": { - "amenity": "fire_station" - }, - "name": "Fire Station" - }, - "amenity/fountain": { - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "fountain" - }, - "name": "Fountain" - }, - "amenity/fuel": { - "icon": "fuel", - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "petrol", - "fuel", - "gasoline", - "propane", - "diesel", - "lng", - "cng", - "biodiesel" - ], - "tags": { - "amenity": "fuel" - }, - "name": "Gas Station" - }, - "amenity/grave_yard": { - "icon": "cemetery", - "fields": [ - "religion", - "denomination" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "grave_yard" - }, - "name": "Graveyard" - }, - "amenity/grit_bin": { - "fields": [ - "access_simple" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "amenity": "grit_bin" - }, - "terms": [ - "salt", - "sand" - ], - "name": "Grit Bin" - }, - "amenity/hospital": { - "icon": "hospital", - "fields": [ - "operator", - "address", - "emergency" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "clinic", - "doctor", - "emergency room", - "health service", - "hospice", - "infirmary", - "institution", - "nursing home", - "sanatorium", - "sanitarium", - "sick", - "surgery", - "ward" - ], - "tags": { - "amenity": "hospital" - }, - "name": "Hospital Grounds" - }, - "amenity/hunting_stand": { - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [], - "tags": { - "amenity": "hunting_stand" - }, - "name": "Hunting Stand" - }, - "amenity/ice_cream": { - "icon": "ice-cream", - "fields": [ - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "gelato", - "sorbet", - "sherbet", - "frozen", - "yogurt" - ], - "tags": { - "amenity": "ice_cream" - }, - "name": "Ice Cream Shop" - }, - "amenity/kindergarten": { - "icon": "school", - "fields": [ - "operator", - "address" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "kindergarden", - "pre-school" - ], - "tags": { - "amenity": "kindergarten" - }, - "name": "Preschool/Kindergarten Grounds" - }, - "amenity/library": { - "icon": "library", - "fields": [ - "operator", - "building_area", - "address", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "book" - ], - "tags": { - "amenity": "library" - }, - "name": "Library" - }, - "amenity/marketplace": { - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "marketplace" - }, - "name": "Marketplace" - }, - "amenity/motorcycle_parking": { - "icon": "scooter", - "fields": [ - "capacity", - "operator", - "covered", - "access_simple" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "amenity": "motorcycle_parking" - }, - "name": "Motorcycle Parking" - }, - "amenity/nightclub": { - "icon": "bar", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "nightclub" - }, - "terms": [ - "disco*", - "night club", - "dancing", - "dance club" - ], - "name": "Nightclub" - }, - "amenity/parking_entrance": { - "icon": "entrance", - "fields": [ - "access_simple", - "ref" - ], - "geometry": [ - "vertex" - ], - "tags": { - "amenity": "parking_entrance" - }, - "name": "Parking Garage Entrance/Exit" - }, - "amenity/parking_space": { - "fields": [ - "capacity" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [], - "tags": { - "amenity": "parking_space" - }, - "name": "Parking Space" - }, - "amenity/parking": { - "icon": "parking", - "fields": [ - "operator", - "parking", - "capacity", - "fee", - "access_simple", - "supervised", - "park_ride", - "surface", - "maxstay", - "address" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "amenity": "parking" - }, - "terms": [], - "name": "Car Parking" - }, - "amenity/pharmacy": { - "icon": "pharmacy", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "pharmacy" - }, - "terms": [ - "drug*", - "med*", - "prescription" - ], - "name": "Pharmacy" - }, - "amenity/place_of_worship": { - "icon": "place-of-worship", - "fields": [ - "religion", - "denomination", - "address", - "building_area" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "abbey", - "basilica", - "bethel", - "cathedral", - "chancel", - "chantry", - "chapel", - "church", - "fold", - "house of God", - "house of prayer", - "house of worship", - "minster", - "mission", - "mosque", - "oratory", - "parish", - "sacellum", - "sanctuary", - "shrine", - "synagogue", - "tabernacle", - "temple" - ], - "tags": { - "amenity": "place_of_worship" - }, - "name": "Place of Worship" - }, - "amenity/place_of_worship/buddhist": { - "icon": "place-of-worship", - "fields": [ - "denomination", - "building_area", - "address" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "stupa", - "vihara", - "monastery", - "temple", - "pagoda", - "zendo", - "dojo" - ], - "tags": { - "amenity": "place_of_worship", - "religion": "buddhist" - }, - "name": "Buddhist Temple" - }, - "amenity/place_of_worship/christian": { - "icon": "religious-christian", - "fields": [ - "denomination", - "building_area", - "address" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "christian", - "abbey", - "basilica", - "bethel", - "cathedral", - "chancel", - "chantry", - "chapel", - "fold", - "house of God", - "house of prayer", - "house of worship", - "minster", - "mission", - "oratory", - "parish", - "sacellum", - "sanctuary", - "shrine", - "tabernacle", - "temple" - ], - "tags": { - "amenity": "place_of_worship", - "religion": "christian" - }, - "name": "Church" - }, - "amenity/place_of_worship/jewish": { - "icon": "religious-jewish", - "fields": [ - "denomination", - "building_area", - "address" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "jewish" - ], - "tags": { - "amenity": "place_of_worship", - "religion": "jewish" - }, - "name": "Synagogue" - }, - "amenity/place_of_worship/muslim": { - "icon": "religious-muslim", - "fields": [ - "denomination", - "building_area", - "address" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "muslim" - ], - "tags": { - "amenity": "place_of_worship", - "religion": "muslim" - }, - "name": "Mosque" - }, - "amenity/planetarium": { - "icon": "museum", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "museum", - "astronomy", - "observatory" - ], - "tags": { - "amenity": "planetarium" - }, - "name": "Planetarium" - }, - "amenity/police": { - "icon": "police", - "fields": [ - "operator", - "address", - "building_area" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "badge", - "constable", - "constabulary", - "cop", - "detective", - "fed", - "law", - "enforcement", - "officer", - "patrol" - ], - "tags": { - "amenity": "police" - }, - "name": "Police" - }, - "amenity/post_box": { - "icon": "post", - "fields": [ - "operator", - "collection_times", - "drive_through", - "ref" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "amenity": "post_box" - }, - "terms": [ - "letter", - "post" - ], - "name": "Mailbox" - }, - "amenity/post_office": { - "icon": "post", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "letter", - "mail" - ], - "tags": { - "amenity": "post_office" - }, - "name": "Post Office" - }, - "amenity/prison": { - "icon": "prison", - "fields": [ - "operator", - "address" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "cell", - "jail" - ], - "tags": { - "amenity": "prison" - }, - "name": "Prison Grounds" - }, - "amenity/pub": { - "icon": "beer", - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "pub" - }, - "terms": [ - "dive", - "beer", - "bier", - "booze" - ], - "name": "Pub" - }, - "amenity/public_bookcase": { - "icon": "library", - "fields": [ - "name", - "operator", - "capacity", - "website" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "library", - "bookcrossing" - ], - "tags": { - "amenity": "public_bookcase" - }, - "name": "Public Bookcase" - }, - "amenity/ranger_station": { - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "visitor center", - "visitor centre", - "permit center", - "permit centre", - "backcountry office", - "warden office", - "warden center" - ], - "tags": { - "amenity": "ranger_station" - }, - "name": "Ranger Station" - }, - "amenity/recycling_centre": { - "icon": "waste-basket", - "fields": [ - "operator", - "address", - "opening_hours", - "recycling_accepts" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "bottle", - "can", - "dump", - "glass", - "garbage", - "rubbish", - "scrap", - "trash" - ], - "tags": { - "amenity": "recycling", - "recycling_type": "centre" - }, - "name": "Recycling Center" - }, - "amenity/recycling": { - "icon": "waste-basket", - "fields": [ - "recycling_type", - "recycling_accepts", - "collection_times" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "bin", - "can", - "bottle", - "glass", - "garbage", - "rubbish", - "scrap", - "trash" - ], - "tags": { - "amenity": "recycling" - }, - "name": "Recycling" - }, - "amenity/restaurant": { - "icon": "restaurant", - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "bar", - "breakfast", - "cafe", - "café", - "canteen", - "coffee", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table" - ], - "tags": { - "amenity": "restaurant" - }, - "name": "Restaurant" - }, - "amenity/sanitary_dump_station": { - "fields": [ - "operator", - "access_toilets", - "fee", - "water_point" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "Motor Home", - "Camper", - "Sanitary", - "Dump Station", - "Elsan", - "CDP", - "CTDP", - "Chemical Toilet" - ], - "tags": { - "amenity": "sanitary_dump_station" - }, - "name": "RV Toilet Disposal" - }, - "amenity/school": { - "icon": "school", - "fields": [ - "operator", - "address" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "academy", - "elementary school", - "middle school", - "high school" - ], - "tags": { - "amenity": "school" - }, - "name": "School Grounds" - }, - "amenity/shelter": { - "fields": [ - "shelter_type", - "bin" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "lean-to", - "gazebo", - "picnic" - ], - "tags": { - "amenity": "shelter" - }, - "name": "Shelter" - }, - "amenity/social_facility": { - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "wheelchair", - "social_facility_for" - ], - "geometry": [ - "point", - "area" - ], - "terms": [], - "tags": { - "amenity": "social_facility" - }, - "name": "Social Facility" - }, - "amenity/social_facility/food_bank": { - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "social_facility_for" - ], - "geometry": [ - "point", - "area" - ], - "terms": [], - "tags": { - "amenity": "social_facility", - "social_facility": "food_bank" - }, - "name": "Food Bank" - }, - "amenity/social_facility/group_home": { - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "wheelchair", - "social_facility_for" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "old", - "senior", - "living" - ], - "tags": { - "amenity": "social_facility", - "social_facility": "group_home", - "social_facility:for": "senior" - }, - "name": "Elderly Group Home" - }, - "amenity/social_facility/homeless_shelter": { - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "wheelchair", - "social_facility_for" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "houseless", - "unhoused", - "displaced" - ], - "tags": { - "amenity": "social_facility", - "social_facility": "shelter", - "social_facility:for": "homeless" - }, - "name": "Homeless Shelter" - }, - "amenity/studio": { - "icon": "music", - "fields": [ - "studio", - "address", - "building_area" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "recording", - "radio", - "television" - ], - "tags": { - "amenity": "studio" - }, - "name": "Studio" - }, - "amenity/taxi": { - "icon": "car", - "fields": [ - "operator", - "capacity" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "cab" - ], - "tags": { - "amenity": "taxi" - }, - "name": "Taxi Stand" - }, - "amenity/telephone": { - "icon": "telephone", - "geometry": [ - "point", - "vertex" - ], - "tags": { - "amenity": "telephone" - }, - "terms": [ - "phone" - ], - "name": "Telephone" - }, - "amenity/theatre": { - "icon": "theatre", - "fields": [ - "operator", - "address", - "building_area" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "theatre", - "performance", - "play", - "musical" - ], - "tags": { - "amenity": "theatre" - }, - "name": "Theater" - }, - "amenity/toilets": { - "icon": "toilets", - "fields": [ - "toilets/disposal", - "operator", - "building_area", - "access_toilets", - "gender", - "fee", - "diaper" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "bathroom", - "restroom", - "outhouse", - "privy", - "head", - "lavatory", - "latrine", - "water closet", - "WC", - "W.C." - ], - "tags": { - "amenity": "toilets" - }, - "name": "Toilets" - }, - "amenity/townhall": { - "icon": "town-hall", - "fields": [ - "operator", - "address", - "building_area" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "village", - "city", - "government", - "courthouse", - "municipal" - ], - "tags": { - "amenity": "townhall" - }, - "name": "Town Hall" - }, - "amenity/university": { - "icon": "college", - "fields": [ - "operator", - "address" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "college" - ], - "tags": { - "amenity": "university" - }, - "name": "University Grounds" - }, - "amenity/vending_machine/cigarettes": { - "fields": [ - "operator", - "payment_multi", - "currency_multi" - ], - "geometry": [ - "point" - ], - "terms": [ - "cigarette" - ], - "tags": { - "amenity": "vending_machine", - "vending": "cigarettes" - }, - "name": "Cigarette Vending Machine" - }, - "amenity/vending_machine/condoms": { - "fields": [ - "operator", - "payment_multi", - "currency_multi" - ], - "geometry": [ - "point" - ], - "terms": [ - "condom" - ], - "tags": { - "amenity": "vending_machine", - "vending": "condoms" - }, - "name": "Condom Vending Machine" - }, - "amenity/vending_machine/drinks": { - "fields": [ - "operator", - "payment_multi", - "currency_multi" - ], - "geometry": [ - "point" - ], - "terms": [ - "drink", - "soda", - "beverage", - "juice", - "pop" - ], - "tags": { - "amenity": "vending_machine", - "vending": "drinks" - }, - "name": "Drink Vending Machine" - }, - "amenity/vending_machine/excrement_bags": { - "fields": [ - "operator", - "fee", - "bin", - "payment_multi", - "currency_multi" - ], - "geometry": [ - "point" - ], - "terms": [ - "excrement bags", - "poop", - "dog", - "animal" - ], - "tags": { - "amenity": "vending_machine", - "vending": "excrement_bags" - }, - "name": "Excrement Bag Vending Machine" - }, - "amenity/vending_machine/news_papers": { - "fields": [ - "operator", - "fee", - "payment_multi", - "currency_multi" - ], - "geometry": [ - "point" - ], - "terms": [ - "newspaper" - ], - "tags": { - "amenity": "vending_machine", - "vending": "news_papers" - }, - "name": "Newspaper Vending Machine" - }, - "amenity/vending_machine/parcel_pickup_dropoff": { - "fields": [ - "operator", - "payment_multi", - "currency_multi" - ], - "geometry": [ - "point" - ], - "terms": [ - "parcel", - "mail", - "pickup" - ], - "tags": { - "amenity": "vending_machine", - "vending": "parcel_pickup;parcel_mail_in" - }, - "name": "Parcel Pickup/Dropoff Vending Machine" - }, - "amenity/vending_machine/parking_tickets": { - "fields": [ - "operator", - "payment_multi", - "currency_multi" - ], - "geometry": [ - "point" - ], - "terms": [ - "parking", - "ticket" - ], - "tags": { - "amenity": "vending_machine", - "vending": "parking_tickets" - }, - "name": "Parking Ticket Vending Machine" - }, - "amenity/vending_machine/public_transport_tickets": { - "fields": [ - "operator", - "payment_multi", - "currency_multi" - ], - "geometry": [ - "point" - ], - "terms": [ - "bus", - "train", - "ferry", - "rail", - "ticket", - "transportation" - ], - "tags": { - "amenity": "vending_machine", - "vending": "public_transport_tickets" - }, - "name": "Transit Ticket Vending Machine" - }, - "amenity/vending_machine/sweets": { - "fields": [ - "operator", - "payment_multi", - "currency_multi" - ], - "geometry": [ - "point" - ], - "terms": [ - "candy", - "gum", - "chip", - "pretzel", - "cookie", - "cracker" - ], - "tags": { - "amenity": "vending_machine", - "vending": "sweets" - }, - "name": "Snack Vending Machine" - }, - "amenity/vending_machine/vending_machine": { - "fields": [ - "vending", - "operator", - "payment_multi", - "currency_multi" - ], - "geometry": [ - "point" - ], - "terms": [], - "tags": { - "amenity": "vending_machine" - }, - "name": "Vending Machine" - }, - "amenity/veterinary": { - "icon": "dog-park", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "pet clinic", - "veterinarian", - "animal hospital", - "pet doctor" - ], - "tags": { - "amenity": "veterinary" - }, - "name": "Veterinary" - }, - "amenity/waste_basket": { - "icon": "waste-basket", - "fields": [ - "collection_times" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "amenity": "waste_basket" - }, - "terms": [ - "bin", - "garbage", - "rubbish", - "litter", - "trash" - ], - "name": "Waste Basket" - }, - "amenity/waste_disposal": { - "icon": "waste-basket", - "fields": [ - "collection_times" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "amenity": "waste_disposal" - }, - "terms": [ - "garbage", - "rubbish", - "litter", - "trash" - ], - "name": "Garbage Dumpster" - }, - "amenity/waste_transfer_station": { - "icon": "waste-basket", - "fields": [ - "operator", - "address", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "dump", - "garbage", - "recycling", - "rubbish", - "scrap", - "trash" - ], - "tags": { - "amenity": "waste_transfer_station" - }, - "name": "Waste Transfer Station" - }, - "amenity/water_point": { - "icon": "water", - "geometry": [ - "area", - "vertex", - "point" - ], - "tags": { - "amenity": "water_point" - }, - "name": "RV Drinking Water" - }, - "area": { - "name": "Area", - "tags": { - "area": "yes" - }, - "geometry": [ - "area" - ], - "matchScore": 0.1 - }, - "area/highway": { - "fields": [ - "area/highway" - ], - "geometry": [ - "area" - ], - "tags": { - "area:highway": "*" - }, - "name": "Road Surface" - }, - "barrier": { - "icon": "roadblock", - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "barrier": "*" - }, - "fields": [ - "barrier" - ], - "name": "Barrier" - }, - "barrier/entrance": { - "icon": "entrance", - "geometry": [ - "vertex" - ], - "tags": { - "barrier": "entrance" - }, - "name": "Entrance", - "searchable": false - }, - "barrier/block": { - "icon": "roadblock", - "fields": [ - "access" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "barrier": "block" - }, - "name": "Block" - }, - "barrier/bollard": { - "icon": "roadblock", - "fields": [ - "access" - ], - "geometry": [ - "point", - "vertex", - "line" - ], - "tags": { - "barrier": "bollard" - }, - "name": "Bollard" - }, - "barrier/cattle_grid": { - "icon": "prison", - "geometry": [ - "vertex" - ], - "tags": { - "barrier": "cattle_grid" - }, - "name": "Cattle Grid" - }, - "barrier/city_wall": { - "icon": "prison", - "geometry": [ - "line", - "area" - ], - "tags": { - "barrier": "city_wall" - }, - "name": "City Wall" - }, - "barrier/cycle_barrier": { - "icon": "roadblock", - "fields": [ - "access" - ], - "geometry": [ - "vertex" - ], - "tags": { - "barrier": "cycle_barrier" - }, - "name": "Cycle Barrier" - }, - "barrier/ditch": { - "icon": "roadblock", - "geometry": [ - "line", - "area" - ], - "tags": { - "barrier": "ditch" - }, - "name": "Trench" - }, - "barrier/fence": { - "icon": "prison", - "geometry": [ - "line" - ], - "tags": { - "barrier": "fence" - }, - "name": "Fence" - }, - "barrier/gate": { - "icon": "prison", - "fields": [ - "access" - ], - "geometry": [ - "point", - "vertex", - "line" - ], - "tags": { - "barrier": "gate" - }, - "name": "Gate" - }, - "barrier/hedge": { - "geometry": [ - "line", - "area" - ], - "tags": { - "barrier": "hedge" - }, - "name": "Hedge" - }, - "barrier/kissing_gate": { - "icon": "prison", - "fields": [ - "access" - ], - "geometry": [ - "vertex" - ], - "tags": { - "barrier": "kissing_gate" - }, - "name": "Kissing Gate" - }, - "barrier/lift_gate": { - "icon": "roadblock", - "fields": [ - "access" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "barrier": "lift_gate" - }, - "name": "Lift Gate" - }, - "barrier/retaining_wall": { - "geometry": [ - "line", - "area" - ], - "tags": { - "barrier": "retaining_wall" - }, - "name": "Retaining Wall" - }, - "barrier/stile": { - "icon": "roadblock", - "fields": [ - "access" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "barrier": "stile" - }, - "name": "Stile" - }, - "barrier/toll_booth": { - "icon": "roadblock", - "fields": [ - "access" - ], - "geometry": [ - "vertex" - ], - "tags": { - "barrier": "toll_booth" - }, - "name": "Toll Booth" - }, - "barrier/wall": { - "icon": "prison", - "geometry": [ - "line", - "area" - ], - "tags": { - "barrier": "wall" - }, - "name": "Wall" - }, - "boundary/administrative": { - "name": "Administrative Boundary", - "geometry": [ - "line" - ], - "tags": { - "boundary": "administrative" - }, - "fields": [ - "admin_level" - ] - }, - "building": { - "icon": "building", - "fields": [ - "building", - "levels", - "address" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "building": "*" - }, - "matchScore": 0.4, - "terms": [], - "name": "Building" - }, - "building/bunker": { - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "bunker" - }, - "matchScore": 0.5, - "name": "Bunker", - "searchable": false - }, - "building/entrance": { - "icon": "entrance", - "geometry": [ - "vertex" - ], - "tags": { - "building": "entrance" - }, - "name": "Entrance/Exit", - "searchable": false - }, - "building/train_station": { - "icon": "building", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "building": "train_station" - }, - "matchScore": 0.5, - "name": "Train Station", - "searchable": false - }, - "building/apartments": { - "icon": "commercial", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "apartments" - }, - "matchScore": 0.5, - "name": "Apartments" - }, - "building/barn": { - "icon": "building", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "barn" - }, - "matchScore": 0.5, - "name": "Barn" - }, - "building/cabin": { - "icon": "building", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "cabin" - }, - "matchScore": 0.5, - "name": "Cabin" - }, - "building/cathedral": { - "icon": "place-of-worship", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "cathedral" - }, - "matchScore": 0.5, - "name": "Cathedral Building" - }, - "building/chapel": { - "icon": "place-of-worship", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "chapel" - }, - "matchScore": 0.5, - "name": "Chapel Building" - }, - "building/church": { - "icon": "place-of-worship", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "church" - }, - "matchScore": 0.5, - "name": "Church Building" - }, - "building/college": { - "icon": "building", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "terms": [ - "university" - ], - "tags": { - "building": "college" - }, - "matchScore": 0.5, - "name": "College Building" - }, - "building/commercial": { - "icon": "commercial", - "fields": [ - "address", - "levels", - "smoking" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "commercial" - }, - "matchScore": 0.5, - "name": "Commercial Building" - }, - "building/construction": { - "icon": "building", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "construction" - }, - "matchScore": 0.5, - "name": "Building Under Construction" - }, - "building/detached": { - "icon": "building", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "detached" - }, - "terms": [ - "home", - "single", - "family", - "residence", - "dwelling" - ], - "matchScore": 0.5, - "name": "Detached House" - }, - "building/dormitory": { - "icon": "building", - "fields": [ - "address", - "levels", - "smoking" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "dormitory" - }, - "matchScore": 0.5, - "name": "Dormitory" - }, - "building/garage": { - "icon": "warehouse", - "fields": [ - "capacity" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "garage" - }, - "matchScore": 0.5, - "name": "Garage" - }, - "building/garages": { - "icon": "warehouse", - "fields": [ - "capacity" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "garages" - }, - "matchScore": 0.5, - "name": "Garages" - }, - "building/greenhouse": { - "icon": "building", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "greenhouse" - }, - "matchScore": 0.5, - "name": "Greenhouse" - }, - "building/hospital": { - "icon": "building", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "hospital" - }, - "matchScore": 0.5, - "name": "Hospital Building" - }, - "building/hotel": { - "icon": "building", - "fields": [ - "address", - "levels", - "smoking" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "hotel" - }, - "matchScore": 0.5, - "name": "Hotel Building" - }, - "building/house": { - "icon": "building", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "house" - }, - "terms": [ - "home", - "family", - "residence", - "dwelling" - ], - "matchScore": 0.5, - "name": "House" - }, - "building/hut": { - "geometry": [ - "area" - ], - "tags": { - "building": "hut" - }, - "matchScore": 0.5, - "name": "Hut" - }, - "building/industrial": { - "icon": "industrial", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "industrial" - }, - "matchScore": 0.5, - "name": "Industrial Building" - }, - "building/kindergarten": { - "icon": "building", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "terms": [ - "kindergarden", - "pre-school" - ], - "tags": { - "building": "kindergarten" - }, - "matchScore": 0.5, - "name": "Preschool/Kindergarten Building" - }, - "building/public": { - "icon": "building", - "fields": [ - "address", - "levels", - "smoking" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "public" - }, - "matchScore": 0.5, - "name": "Public Building" - }, - "building/residential": { - "icon": "building", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "residential" - }, - "matchScore": 0.5, - "name": "Residential Building" - }, - "building/retail": { - "icon": "building", - "fields": [ - "address", - "levels", - "smoking" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "retail" - }, - "matchScore": 0.5, - "name": "Retail Building" - }, - "building/roof": { - "icon": "building", - "fields": [ - "address" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "roof" - }, - "matchScore": 0.5, - "name": "Roof" - }, - "building/school": { - "icon": "building", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "terms": [ - "academy", - "elementary school", - "middle school", - "high school" - ], - "tags": { - "building": "school" - }, - "matchScore": 0.5, - "name": "School Building" - }, - "building/semidetached_house": { - "icon": "building", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "semidetached_house" - }, - "terms": [ - "home", - "double", - "duplex", - "twin", - "family", - "residence", - "dwelling" - ], - "matchScore": 0.5, - "name": "Semi-Detached House" - }, - "building/shed": { - "icon": "building", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "shed" - }, - "matchScore": 0.5, - "name": "Shed" - }, - "building/stable": { - "icon": "building", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "stable" - }, - "matchScore": 0.5, - "name": "Stable" - }, - "building/static_caravan": { - "icon": "building", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "static_caravan" - }, - "matchScore": 0.5, - "name": "Static Mobile Home" - }, - "building/terrace": { - "icon": "building", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "terrace" - }, - "terms": [ - "home", - "terrace", - "brownstone", - "family", - "residence", - "dwelling" - ], - "matchScore": 0.5, - "name": "Row Houses" - }, - "building/university": { - "icon": "building", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "terms": [ - "college" - ], - "tags": { - "building": "university" - }, - "matchScore": 0.5, - "name": "University Building" - }, - "building/warehouse": { - "icon": "warehouse", - "fields": [ - "address", - "levels" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "warehouse" - }, - "matchScore": 0.5, - "name": "Warehouse" - }, - "camp_site/camp_pitch": { - "icon": "campsite", - "fields": [ - "ref" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "tent", - "rv" - ], - "tags": { - "camp_site": "camp_pitch" - }, - "name": "Camp Pitch" - }, - "craft": { - "icon": "marker-stroked", - "fields": [ - "craft", - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "*" - }, - "terms": [], - "name": "Craft" - }, - "craft/jeweler": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "jeweler" - }, - "name": "Jeweler", - "searchable": false - }, - "craft/locksmith": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "locksmith" - }, - "name": "Locksmith", - "searchable": false - }, - "craft/optician": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "optician" - }, - "name": "Optician", - "searchable": false - }, - "craft/tailor": { - "icon": "clothing-store", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "clothes", - "suit" - ], - "tags": { - "craft": "tailor" - }, - "name": "Tailor", - "searchable": false - }, - "craft/basket_maker": { - "icon": "art-gallery", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "basket_maker" - }, - "name": "Basket Maker" - }, - "craft/beekeeper": { - "icon": "farm", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "beekeeper" - }, - "name": "Beekeeper" - }, - "craft/blacksmith": { - "icon": "farm", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "blacksmith" - }, - "name": "Blacksmith" - }, - "craft/boatbuilder": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "boatbuilder" - }, - "name": "Boat Builder" - }, - "craft/bookbinder": { - "icon": "library", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "book repair" - ], - "tags": { - "craft": "bookbinder" - }, - "name": "Bookbinder" - }, - "craft/brewery": { - "icon": "beer", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "beer", - "bier" - ], - "tags": { - "craft": "brewery" - }, - "name": "Brewery" - }, - "craft/carpenter": { - "icon": "logging", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "woodworker" - ], - "tags": { - "craft": "carpenter" - }, - "name": "Carpenter" - }, - "craft/carpet_layer": { - "icon": "square", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "carpet_layer" - }, - "name": "Carpet Layer" - }, - "craft/caterer": { - "icon": "bakery", - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "caterer" - }, - "name": "Caterer" - }, - "craft/clockmaker": { - "icon": "circle-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "clockmaker" - }, - "name": "Clockmaker" - }, - "craft/confectionery": { - "icon": "bakery", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "sweets", - "candy" - ], - "tags": { - "craft": "confectionery" - }, - "name": "Confectionery" - }, - "craft/dressmaker": { - "icon": "clothing-store", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "seamstress" - ], - "tags": { - "craft": "dressmaker" - }, - "name": "Dressmaker" - }, - "craft/electrician": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "power", - "wire" - ], - "tags": { - "craft": "electrician" - }, - "name": "Electrician" - }, - "craft/gardener": { - "icon": "garden", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "landscaper", - "grounds keeper" - ], - "tags": { - "craft": "gardener" - }, - "name": "Gardener" - }, - "craft/glaziery": { - "icon": "fire-station", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "glass", - "stained-glass", - "window" - ], - "tags": { - "craft": "glaziery" - }, - "name": "Glaziery" - }, - "craft/handicraft": { - "icon": "art-gallery", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "handicraft" - }, - "name": "Handicraft" - }, - "craft/hvac": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "heat*", - "vent*", - "air conditioning" - ], - "tags": { - "craft": "hvac" - }, - "name": "HVAC" - }, - "craft/insulator": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "insulation" - }, - "name": "Insulator" - }, - "craft/key_cutter": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "key_cutter" - }, - "name": "Key Cutter" - }, - "craft/metal_construction": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "metal_construction" - }, - "name": "Metal Construction" - }, - "craft/painter": { - "icon": "art-gallery", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "painter" - }, - "name": "Painter" - }, - "craft/photographer": { - "icon": "camera", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "photographer" - }, - "name": "Photographer" - }, - "craft/photographic_laboratory": { - "icon": "camera", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "film" - ], - "tags": { - "craft": "photographic_laboratory" - }, - "name": "Photographic Laboratory" - }, - "craft/plasterer": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "plasterer" - }, - "name": "Plasterer" - }, - "craft/plumber": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "pipe" - ], - "tags": { - "craft": "plumber" - }, - "name": "Plumber" - }, - "craft/pottery": { - "icon": "art-gallery", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "ceramic" - ], - "tags": { - "craft": "pottery" - }, - "name": "Pottery" - }, - "craft/rigger": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "rigger" - }, - "name": "Rigger" - }, - "craft/roofer": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "roofer" - }, - "name": "Roofer" - }, - "craft/saddler": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "saddler" - }, - "name": "Saddler" - }, - "craft/sailmaker": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "sailmaker" - }, - "name": "Sailmaker" - }, - "craft/sawmill": { - "icon": "park", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "lumber" - ], - "tags": { - "craft": "sawmill" - }, - "name": "Sawmill" - }, - "craft/scaffolder": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "scaffolder" - }, - "name": "Scaffolder" - }, - "craft/sculpter": { - "icon": "art-gallery", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "sculpter" - }, - "name": "Sculpter" - }, - "craft/shoemaker": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "cobbler" - ], - "tags": { - "craft": "shoemaker" - }, - "name": "Shoemaker" - }, - "craft/stonemason": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "masonry" - ], - "tags": { - "craft": "stonemason" - }, - "name": "Stonemason" - }, - "craft/sweep": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "sweep" - }, - "name": "Chimney Sweep" - }, - "craft/tiler": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "tiler" - }, - "name": "Tiler" - }, - "craft/tinsmith": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "tinsmith" - }, - "name": "Tinsmith" - }, - "craft/upholsterer": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "upholsterer" - }, - "name": "Upholsterer" - }, - "craft/watchmaker": { - "icon": "circle-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "watchmaker" - }, - "name": "Watchmaker" - }, - "craft/window_construction": { - "icon": "marker-stroked", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "glass" - ], - "tags": { - "craft": "window_construction" - }, - "name": "Window Construction" - }, - "craft/winery": { - "icon": "alcohol-shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "winery" - }, - "name": "Winery" - }, - "embankment": { - "geometry": [ - "line" - ], - "tags": { - "embankment": "yes" - }, - "name": "Embankment", - "matchScore": 0.2 - }, - "emergency/designated": { - "fields": [], - "geometry": [ - "line" - ], - "tags": { - "emergency": "designated" - }, - "terms": [], - "name": "Emergency Access Designated", - "searchable": false, - "matchScore": 0.01 - }, - "emergency/destination": { - "fields": [], - "geometry": [ - "line" - ], - "tags": { - "emergency": "destination" - }, - "terms": [], - "name": "Emergency Access Destination", - "searchable": false, - "matchScore": 0.01 - }, - "emergency/no": { - "fields": [], - "geometry": [ - "line" - ], - "tags": { - "emergency": "no" - }, - "terms": [], - "name": "Emergency Access No", - "searchable": false, - "matchScore": 0.01 - }, - "emergency/official": { - "fields": [], - "geometry": [ - "line" - ], - "tags": { - "emergency": "official" - }, - "terms": [], - "name": "Emergency Access Official", - "searchable": false, - "matchScore": 0.01 - }, - "emergency/private": { - "fields": [], - "geometry": [ - "line" - ], - "tags": { - "emergency": "private" - }, - "terms": [], - "name": "Emergency Access Private", - "searchable": false, - "matchScore": 0.01 - }, - "emergency/yes": { - "fields": [], - "geometry": [ - "line" - ], - "tags": { - "emergency": "yes" - }, - "terms": [], - "name": "Emergency Access Yes", - "searchable": false, - "matchScore": 0.01 - }, - "emergency/ambulance_station": { - "icon": "hospital", - "fields": [ - "operator", - "building_area", - "address" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "EMS", - "EMT", - "rescue" - ], - "tags": { - "emergency": "ambulance_station" - }, - "name": "Ambulance Station" - }, - "emergency/defibrillator": { - "fields": [ - "access", - "opening_hours", - "indoor", - "phone" - ], - "geometry": [ - "point" - ], - "terms": [ - "AED" - ], - "tags": { - "emergency": "defibrillator" - }, - "name": "Defibrillator" - }, - "emergency/fire_hydrant": { - "icon": "fire-station", - "fields": [ - "fire_hydrant/type" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "emergency": "fire_hydrant" - }, - "name": "Fire Hydrant" - }, - "emergency/phone": { - "icon": "emergency-telephone", - "fields": [ - "operator" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "emergency": "phone" - }, - "name": "Emergency Phone" - }, - "entrance": { - "icon": "entrance", - "geometry": [ - "vertex" - ], - "tags": { - "entrance": "*" - }, - "fields": [ - "entrance", - "access_simple", - "address" - ], - "name": "Entrance/Exit" - }, - "footway/crossing": { - "fields": [ - "crossing", - "access", - "surface", - "kerb", - "tactile_paving" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "footway", - "footway": "crossing" - }, - "terms": [], - "name": "Street Crossing" - }, - "footway/crosswalk": { - "icon": "highway-footway", - "fields": [ - "crossing", - "access", - "surface", - "kerb", - "tactile_paving" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "footway", - "footway": "crossing", - "crossing": "zebra" - }, - "terms": [ - "zebra crossing" - ], - "name": "Pedestrian Crosswalk" - }, - "footway/sidewalk": { - "icon": "highway-footway", - "fields": [ - "surface", - "lit", - "width", - "structure", - "access" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "footway", - "footway": "sidewalk" - }, - "terms": [], - "name": "Sidewalk" - }, - "ford": { - "geometry": [ - "vertex" - ], - "tags": { - "ford": "yes" - }, - "name": "Ford" - }, - "golf/bunker": { - "icon": "golf", - "geometry": [ - "area" - ], - "tags": { - "golf": "bunker", - "natural": "sand" - }, - "terms": [ - "hazard", - "bunker" - ], - "name": "Sand Trap" - }, - "golf/fairway": { - "icon": "golf", - "geometry": [ - "area" - ], - "tags": { - "golf": "fairway", - "landuse": "grass" - }, - "name": "Fairway" - }, - "golf/green": { - "icon": "golf", - "geometry": [ - "area" - ], - "tags": { - "golf": "green", - "landuse": "grass", - "leisure": "pitch", - "sport": "golf" - }, - "name": "Putting Green" - }, - "golf/hole": { - "icon": "golf", - "fields": [ - "golf_hole", - "par", - "handicap" - ], - "geometry": [ - "line" - ], - "tags": { - "golf": "hole" - }, - "name": "Golf Hole" - }, - "golf/lateral_water_hazard_area": { - "icon": "golf", - "geometry": [ - "area" - ], - "tags": { - "golf": "lateral_water_hazard", - "natural": "water" - }, - "name": "Lateral Water Hazard" - }, - "golf/lateral_water_hazard_line": { - "icon": "golf", - "geometry": [ - "line" - ], - "tags": { - "golf": "lateral_water_hazard" - }, - "name": "Lateral Water Hazard" - }, - "golf/rough": { - "icon": "golf", - "geometry": [ - "area" - ], - "tags": { - "golf": "rough", - "landuse": "grass" - }, - "name": "Rough" - }, - "golf/tee": { - "icon": "golf", - "geometry": [ - "area" - ], - "tags": { - "golf": "tee", - "landuse": "grass" - }, - "terms": [ - "teeing ground" - ], - "name": "Tee Box" - }, - "golf/water_hazard_area": { - "icon": "golf", - "geometry": [ - "area" - ], - "tags": { - "golf": "water_hazard", - "natural": "water" - }, - "name": "Water Hazard" - }, - "golf/water_hazard_line": { - "icon": "golf", - "geometry": [ - "line" - ], - "tags": { - "golf": "water_hazard" - }, - "name": "Water Hazard" - }, - "healthcare/blood_donation": { - "icon": "hospital", - "fields": [ - "operator", - "address", - "blood_components", - "opening_hours", - "ref" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "blood bank", - "blood donation", - "blood transfusion", - "apheresis", - "plasmapheresis", - "plateletpheresis", - "stem cell donation" - ], - "tags": { - "healthcare": "blood_donation" - }, - "name": "Blood Donor Center" - }, - "highway/bridleway": { - "fields": [ - "surface", - "width", - "structure", - "access" - ], - "icon": "highway-bridleway", - "geometry": [ - "line" - ], - "tags": { - "highway": "bridleway" - }, - "terms": [ - "bridleway", - "equestrian", - "horse" - ], - "name": "Bridle Path" - }, - "highway/bus_stop": { - "icon": "bus", - "fields": [ - "network", - "operator", - "bench", - "shelter", - "covered" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "highway": "bus_stop" - }, - "terms": [], - "name": "Bus Stop" - }, - "highway/corridor": { - "icon": "highway-footway", - "fields": [ - "width", - "level", - "access_simple" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "corridor" - }, - "terms": [ - "gallery", - "hall", - "hallway", - "indoor", - "passage", - "passageway" - ], - "name": "Indoor Corridor" - }, - "highway/crossing": { - "fields": [ - "crossing", - "kerb", - "tactile_paving" - ], - "geometry": [ - "vertex" - ], - "tags": { - "highway": "crossing" - }, - "terms": [], - "name": "Street Crossing" - }, - "highway/crosswalk": { - "fields": [ - "crossing", - "kerb", - "tactile_paving" - ], - "geometry": [ - "vertex" - ], - "tags": { - "highway": "crossing", - "crossing": "zebra" - }, - "terms": [ - "zebra crossing" - ], - "name": "Pedestrian Crosswalk" - }, - "highway/cycleway": { - "icon": "highway-cycleway", - "fields": [ - "surface", - "lit", - "width", - "oneway", - "structure", - "access" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "cycleway" - }, - "terms": [ - "bike" - ], - "name": "Cycle Path" - }, - "highway/footway": { - "icon": "highway-footway", - "fields": [ - "surface", - "lit", - "width", - "structure", - "access" - ], - "geometry": [ - "line", - "area" - ], - "terms": [ - "hike", - "hiking", - "trackway", - "trail", - "walk" - ], - "tags": { - "highway": "footway" - }, - "name": "Foot Path" - }, - "highway/give_way": { - "fields": [ - "parallel_direction" - ], - "geometry": [ - "vertex" - ], - "tags": { - "highway": "give_way" - }, - "terms": [ - "give way", - "yield", - "sign" - ], - "name": "Yield Sign" - }, - "highway/living_street": { - "icon": "highway-living-street", - "fields": [ - "oneway", - "maxspeed", - "structure", - "access", - "surface", - "cycleway" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "living_street" - }, - "name": "Living Street" - }, - "highway/mini_roundabout": { - "geometry": [ - "vertex" - ], - "tags": { - "highway": "mini_roundabout" - }, - "fields": [ - "clock_direction" - ], - "name": "Mini-Roundabout" - }, - "highway/motorway_junction": { - "geometry": [ - "vertex" - ], - "tags": { - "highway": "motorway_junction" - }, - "fields": [ - "ref" - ], - "name": "Motorway Junction / Exit" - }, - "highway/motorway_link": { - "icon": "highway-motorway-link", - "fields": [ - "oneway_yes", - "maxspeed", - "structure", - "access", - "surface", - "ref" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "motorway_link" - }, - "addTags": { - "highway": "motorway_link", - "oneway": "yes" - }, - "removeTags": { - "highway": "motorway_link", - "oneway": "yes" - }, - "terms": [ - "ramp", - "on ramp", - "off ramp" - ], - "name": "Motorway Link" - }, - "highway/motorway": { - "icon": "highway-motorway", - "fields": [ - "oneway_yes", - "maxspeed", - "structure", - "access", - "lanes", - "surface", - "ref" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "motorway" - }, - "terms": [], - "name": "Motorway" - }, - "highway/path": { - "icon": "highway-path", - "fields": [ - "surface", - "width", - "structure", - "access", - "incline", - "sac_scale", - "trail_visibility", - "mtb/scale", - "mtb/scale/uphill", - "mtb/scale/imba", - "ref" - ], - "geometry": [ - "line" - ], - "terms": [ - "hike", - "hiking", - "trackway", - "trail", - "walk" - ], - "tags": { - "highway": "path" - }, - "name": "Path" - }, - "highway/pedestrian": { - "icon": "highway-footway", - "fields": [ - "surface", - "lit", - "width", - "oneway", - "structure", - "access" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "highway": "pedestrian" - }, - "terms": [], - "name": "Pedestrian Street" - }, - "highway/primary_link": { - "icon": "highway-primary-link", - "fields": [ - "oneway", - "maxspeed", - "structure", - "access", - "surface", - "ref", - "cycleway" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "primary_link" - }, - "terms": [ - "ramp", - "on ramp", - "off ramp" - ], - "name": "Primary Link" - }, - "highway/primary": { - "icon": "highway-primary", - "fields": [ - "oneway", - "maxspeed", - "structure", - "access", - "lanes", - "surface", - "ref", - "cycleway" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "primary" - }, - "terms": [], - "name": "Primary Road" - }, - "highway/raceway": { - "icon": "highway-unclassified", - "fields": [ - "oneway", - "surface", - "sport_racing", - "structure" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "raceway" - }, - "addTags": { - "highway": "raceway", - "sport": "motor" - }, - "terms": [ - "auto*", - "race*", - "nascar" - ], - "name": "Motor Raceway" - }, - "highway/residential": { - "icon": "highway-residential", - "fields": [ - "oneway", - "maxspeed", - "structure", - "access", - "surface", - "cycleway" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "residential" - }, - "terms": [], - "name": "Residential Road" - }, - "highway/rest_area": { - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "highway": "rest_area" - }, - "terms": [ - "rest stop" - ], - "name": "Rest Area" - }, - "highway/road": { - "icon": "highway-road", - "fields": [ - "oneway", - "maxspeed", - "structure", - "access", - "surface" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "road" - }, - "terms": [], - "name": "Unknown Road" - }, - "highway/secondary_link": { - "icon": "highway-secondary-link", - "fields": [ - "oneway", - "maxspeed", - "structure", - "access", - "surface", - "ref", - "cycleway" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "secondary_link" - }, - "terms": [ - "ramp", - "on ramp", - "off ramp" - ], - "name": "Secondary Link" - }, - "highway/secondary": { - "icon": "highway-secondary", - "fields": [ - "oneway", - "maxspeed", - "structure", - "access", - "lanes", - "surface", - "ref", - "cycleway" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "secondary" - }, - "terms": [], - "name": "Secondary Road" - }, - "highway/service": { - "icon": "highway-service", - "fields": [ - "service", - "oneway", - "maxspeed", - "structure", - "access", - "surface", - "cycleway" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "service" - }, - "terms": [], - "name": "Service Road" - }, - "highway/service/alley": { - "icon": "highway-service", - "fields": [ - "oneway", - "access", - "surface" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "service", - "service": "alley" - }, - "name": "Alley" - }, - "highway/service/drive-through": { - "icon": "highway-service", - "fields": [ - "oneway", - "access", - "surface" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "service", - "service": "drive-through" - }, - "name": "Drive-Through" - }, - "highway/service/driveway": { - "icon": "highway-service", - "fields": [ - "oneway", - "access", - "surface" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "service", - "service": "driveway" - }, - "name": "Driveway" - }, - "highway/service/emergency_access": { - "icon": "highway-service", - "fields": [ - "oneway", - "access", - "surface" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "service", - "service": "emergency_access" - }, - "name": "Emergency Access" - }, - "highway/service/parking_aisle": { - "icon": "highway-service", - "fields": [ - "oneway", - "access", - "surface" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "service", - "service": "parking_aisle" - }, - "name": "Parking Aisle" - }, - "highway/services": { - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "highway": "services" - }, - "terms": [ - "services", - "travel plaza", - "service station" - ], - "name": "Service Area" - }, - "highway/steps": { - "fields": [ - "surface", - "lit", - "width", - "incline_steps", - "handrail" - ], - "icon": "highway-steps", - "geometry": [ - "line" - ], - "tags": { - "highway": "steps" - }, - "terms": [ - "stairs", - "staircase" - ], - "name": "Steps" - }, - "highway/stop": { - "fields": [ - "stop", - "parallel_direction" - ], - "geometry": [ - "vertex" - ], - "tags": { - "highway": "stop" - }, - "terms": [ - "stop", - "halt", - "sign" - ], - "name": "Stop Sign" - }, - "highway/street_lamp": { - "geometry": [ - "point", - "vertex" - ], - "tags": { - "highway": "street_lamp" - }, - "fields": [ - "lamp_type", - "ref" - ], - "terms": [ - "streetlight", - "street light", - "lamp", - "light", - "gaslight" - ], - "name": "Street Lamp" - }, - "highway/tertiary_link": { - "icon": "highway-tertiary-link", - "fields": [ - "oneway", - "maxspeed", - "structure", - "access", - "surface", - "ref", - "cycleway" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "tertiary_link" - }, - "terms": [ - "ramp", - "on ramp", - "off ramp" - ], - "name": "Tertiary Link" - }, - "highway/tertiary": { - "icon": "highway-tertiary", - "fields": [ - "oneway", - "maxspeed", - "structure", - "access", - "lanes", - "surface", - "ref", - "cycleway" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "tertiary" - }, - "terms": [], - "name": "Tertiary Road" - }, - "highway/track": { - "icon": "highway-track", - "fields": [ - "surface", - "width", - "structure", - "access", - "incline", - "tracktype", - "smoothness", - "mtb/scale", - "mtb/scale/uphill", - "mtb/scale/imba" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "track" - }, - "terms": [ - "woods road", - "forest road", - "logging road", - "fire road", - "farm road", - "agricultural road", - "ranch road", - "carriage road", - "primitive", - "unmaintained", - "rut", - "offroad", - "4wd", - "4x4", - "four wheel drive", - "atv", - "quad", - "jeep", - "double track", - "two track" - ], - "name": "Unmaintained Track Road" - }, - "highway/traffic_signals": { - "geometry": [ - "vertex" - ], - "tags": { - "highway": "traffic_signals" - }, - "fields": [ - "traffic_signals" - ], - "terms": [ - "light", - "stoplight", - "traffic light" - ], - "name": "Traffic Signals" - }, - "highway/trunk_link": { - "icon": "highway-trunk-link", - "fields": [ - "oneway", - "maxspeed", - "structure", - "access", - "surface", - "ref" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "trunk_link" - }, - "terms": [ - "ramp", - "on ramp", - "off ramp" - ], - "name": "Trunk Link" - }, - "highway/trunk": { - "icon": "highway-trunk", - "fields": [ - "oneway", - "maxspeed", - "structure", - "access", - "lanes", - "surface", - "ref" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "trunk" - }, - "terms": [], - "name": "Trunk Road" - }, - "highway/turning_circle": { - "icon": "circle", - "geometry": [ - "vertex" - ], - "tags": { - "highway": "turning_circle" - }, - "terms": [ - "cul-de-sac" - ], - "name": "Turning Circle" - }, - "highway/unclassified": { - "icon": "highway-unclassified", - "fields": [ - "oneway", - "maxspeed", - "structure", - "access", - "surface", - "cycleway" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "unclassified" - }, - "terms": [], - "name": "Minor/Unclassified Road" - }, - "historic": { - "fields": [ - "historic" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "historic": "*" - }, - "name": "Historic Site" - }, - "historic/archaeological_site": { - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "historic": "archaeological_site" - }, - "name": "Archaeological Site" - }, - "historic/boundary_stone": { - "geometry": [ - "point", - "vertex" - ], - "tags": { - "historic": "boundary_stone" - }, - "name": "Boundary Stone" - }, - "historic/castle": { - "geometry": [ - "point", - "area" - ], - "tags": { - "historic": "castle" - }, - "name": "Castle" - }, - "historic/memorial": { - "icon": "monument", - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "historic": "memorial" - }, - "name": "Memorial" - }, - "historic/monument": { - "icon": "monument", - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "historic": "monument" - }, - "name": "Monument" - }, - "historic/ruins": { - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "historic": "ruins" - }, - "name": "Ruins" - }, - "historic/wayside_cross": { - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "historic": "wayside_cross" - }, - "name": "Wayside Cross" - }, - "historic/wayside_shrine": { - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "historic": "wayside_shrine" - }, - "name": "Wayside Shrine" - }, - "junction": { - "geometry": [ - "vertex", - "area" - ], - "tags": { - "junction": "yes" - }, - "name": "Junction" - }, - "landuse": { - "fields": [ - "landuse" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "*" - }, - "name": "Land Use" - }, - "landuse/farm": { - "icon": "farm", - "fields": [ - "crop" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "landuse": "farm" - }, - "terms": [], - "name": "Farmland", - "searchable": false - }, - "landuse/allotments": { - "geometry": [ - "area" - ], - "tags": { - "landuse": "allotments" - }, - "terms": [ - "allotment", - "garden" - ], - "name": "Community Garden" - }, - "landuse/basin": { - "geometry": [ - "area" - ], - "tags": { - "landuse": "basin" - }, - "terms": [], - "name": "Basin" - }, - "landuse/cemetery": { - "icon": "cemetery", - "fields": [ - "religion", - "denomination" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "cemetery" - }, - "terms": [], - "name": "Cemetery" - }, - "landuse/churchyard": { - "fields": [ - "religion", - "denomination" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "churchyard" - }, - "terms": [], - "name": "Churchyard" - }, - "landuse/commercial": { - "icon": "commercial", - "geometry": [ - "area" - ], - "tags": { - "landuse": "commercial" - }, - "terms": [], - "name": "Commercial Area" - }, - "landuse/construction": { - "fields": [ - "construction", - "operator" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "construction" - }, - "terms": [], - "name": "Construction" - }, - "landuse/farmland": { - "icon": "farm", - "fields": [ - "crop" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "farmland" - }, - "terms": [], - "name": "Farmland" - }, - "landuse/farmyard": { - "icon": "farm", - "fields": [ - "crop" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "farmyard" - }, - "terms": [], - "name": "Farmyard" - }, - "landuse/forest": { - "icon": "park2", - "fields": [ - "leaf_type", - "leaf_cycle" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "forest" - }, - "terms": [ - "tree" - ], - "name": "Forest" - }, - "landuse/garages": { - "geometry": [ - "area" - ], - "tags": { - "landuse": "garages" - }, - "terms": [], - "name": "Garages" - }, - "landuse/grass": { - "geometry": [ - "area" - ], - "tags": { - "landuse": "grass" - }, - "terms": [], - "name": "Grass" - }, - "landuse/industrial": { - "icon": "industrial", - "geometry": [ - "area" - ], - "tags": { - "landuse": "industrial" - }, - "terms": [], - "name": "Industrial Area" - }, - "landuse/landfill": { - "geometry": [ - "area" - ], - "tags": { - "landuse": "landfill" - }, - "terms": [ - "dump" - ], - "name": "Landfill" - }, - "landuse/meadow": { - "geometry": [ - "area" - ], - "tags": { - "landuse": "meadow" - }, - "terms": [], - "name": "Meadow" - }, - "landuse/military": { - "geometry": [ - "area" - ], - "tags": { - "landuse": "military" - }, - "terms": [], - "name": "Military Area" - }, - "landuse/orchard": { - "icon": "park2", - "fields": [ - "trees" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "orchard" - }, - "terms": [], - "name": "Orchard" - }, - "landuse/plant_nursery": { - "icon": "garden", - "fields": [ - "name" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "landuse": "plant_nursery" - }, - "terms": [ - "vivero" - ], - "name": "Plant Nursery" - }, - "landuse/quarry": { - "geometry": [ - "area" - ], - "tags": { - "landuse": "quarry" - }, - "terms": [], - "name": "Quarry" - }, - "landuse/recreation_ground": { - "geometry": [ - "area" - ], - "tags": { - "landuse": "recreation_ground" - }, - "terms": [ - "playing fields" - ], - "name": "Recreation Ground" - }, - "landuse/residential": { - "icon": "building", - "geometry": [ - "area" - ], - "tags": { - "landuse": "residential" - }, - "terms": [], - "name": "Residential Area" - }, - "landuse/retail": { - "icon": "shop", - "geometry": [ - "area" - ], - "tags": { - "landuse": "retail" - }, - "name": "Retail Area" - }, - "landuse/vineyard": { - "geometry": [ - "area" - ], - "tags": { - "landuse": "vineyard" - }, - "terms": [], - "name": "Vineyard" - }, - "leisure": { - "fields": [ - "leisure" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "leisure": "*" - }, - "name": "Leisure" - }, - "leisure/adult_gaming_centre": { - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "gambling", - "slot machine" - ], - "tags": { - "leisure": "adult_gaming_centre" - }, - "name": "Adult Gaming Center" - }, - "leisure/bird_hide": { - "fields": [ - "building_area" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "bird_hide" - }, - "terms": [ - "machan", - "ornithology" - ], - "name": "Bird Hide" - }, - "leisure/bowling_alley": { - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "geometry": [ - "point", - "area" - ], - "terms": [], - "tags": { - "leisure": "bowling_alley" - }, - "name": "Bowling Alley" - }, - "leisure/common": { - "geometry": [ - "point", - "area" - ], - "terms": [ - "open space" - ], - "tags": { - "leisure": "common" - }, - "name": "Common" - }, - "leisure/dog_park": { - "icon": "dog-park", - "geometry": [ - "point", - "area" - ], - "terms": [], - "tags": { - "leisure": "dog_park" - }, - "name": "Dog Park" - }, - "leisure/firepit": { - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "firepit" - }, - "terms": [ - "fireplace", - "campfire" - ], - "name": "Firepit" - }, - "leisure/fitness_centre": { - "icon": "pitch", - "fields": [ - "sport", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "fitness_centre" - }, - "terms": [ - "health", - "gym", - "leisure", - "studio" - ], - "name": "Gym / Fitness Center" - }, - "leisure/fitness_centre/yoga": { - "icon": "pitch", - "fields": [ - "sport", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "studio" - ], - "tags": { - "leisure": "fitness_centre", - "sport": "yoga" - }, - "name": "Yoga Studio" - }, - "leisure/fitness_station": { - "icon": "pitch", - "fields": [ - "sport", - "address", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "fitness_station" - }, - "terms": [ - "fitness", - "gym" - ], - "name": "Outdoor Fitness Station" - }, - "leisure/garden": { - "icon": "garden", - "fields": [ - "access_simple" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "leisure": "garden" - }, - "name": "Garden" - }, - "leisure/golf_course": { - "icon": "golf", - "fields": [ - "operator", - "address", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "links" - ], - "tags": { - "leisure": "golf_course" - }, - "name": "Golf Course" - }, - "leisure/ice_rink": { - "icon": "pitch", - "fields": [ - "seasonal", - "sport_ice", - "operator", - "address", - "building", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "hockey", - "skating", - "curling" - ], - "tags": { - "leisure": "ice_rink" - }, - "name": "Ice Rink" - }, - "leisure/marina": { - "icon": "harbor", - "fields": [ - "operator", - "address", - "capacity", - "fee", - "sanitary_dump_station", - "power_supply", - "internet_access" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "boat" - ], - "tags": { - "leisure": "marina" - }, - "name": "Marina" - }, - "leisure/miniature_golf": { - "icon": "golf", - "fields": [ - "operator", - "address", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "crazy golf", - "mini golf", - "putt-putt" - ], - "tags": { - "leisure": "miniature_golf" - }, - "name": "Miniature Golf" - }, - "leisure/nature_reserve": { - "icon": "park", - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "nature_reserve" - }, - "terms": [ - "protected", - "wildlife" - ], - "name": "Nature Reserve" - }, - "leisure/park": { - "icon": "park", - "geometry": [ - "point", - "area" - ], - "terms": [ - "esplanade", - "estate", - "forest", - "garden", - "grass", - "green", - "grounds", - "lawn", - "lot", - "meadow", - "parkland", - "place", - "playground", - "plaza", - "pleasure garden", - "recreation area", - "square", - "tract", - "village green", - "woodland" - ], - "tags": { - "leisure": "park" - }, - "name": "Park" - }, - "leisure/picnic_table": { - "geometry": [ - "point" - ], - "tags": { - "leisure": "picnic_table" - }, - "terms": [ - "bench" - ], - "name": "Picnic Table" - }, - "leisure/pitch": { - "icon": "pitch", - "fields": [ - "sport", - "surface", - "lit" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "pitch" - }, - "terms": [ - "field" - ], - "name": "Sport Pitch" - }, - "leisure/pitch/american_football": { - "icon": "america-football", - "fields": [ - "surface", - "lit" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "pitch", - "sport": "american_football" - }, - "terms": [], - "name": "American Football Field" - }, - "leisure/pitch/baseball": { - "icon": "baseball", - "fields": [ - "lit" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "pitch", - "sport": "baseball" - }, - "terms": [], - "name": "Baseball Diamond" - }, - "leisure/pitch/basketball": { - "icon": "basketball", - "fields": [ - "surface", - "hoops", - "lit", - "access_simple" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "pitch", - "sport": "basketball" - }, - "terms": [], - "name": "Basketball Court" - }, - "leisure/pitch/bowls": { - "icon": "pitch", - "fields": [ - "surface", - "lit" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "pitch", - "sport": "bowls" - }, - "terms": [], - "name": "Bowling Green" - }, - "leisure/pitch/rugby_league": { - "icon": "america-football", - "fields": [ - "surface", - "lit" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "pitch", - "sport": "rugby_league" - }, - "terms": [], - "name": "Rugby League Field" - }, - "leisure/pitch/rugby_union": { - "icon": "america-football", - "fields": [ - "surface", - "lit" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "pitch", - "sport": "rugby_union" - }, - "terms": [], - "name": "Rugby Union Field" - }, - "leisure/pitch/skateboard": { - "icon": "pitch", - "fields": [ - "surface", - "lit" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "pitch", - "sport": "skateboard" - }, - "terms": [], - "name": "Skate Park" - }, - "leisure/pitch/soccer": { - "icon": "soccer", - "fields": [ - "surface", - "lit" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "pitch", - "sport": "soccer" - }, - "terms": [], - "name": "Soccer Field" - }, - "leisure/pitch/tennis": { - "icon": "tennis", - "fields": [ - "surface", - "lit", - "access_simple" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "pitch", - "sport": "tennis" - }, - "terms": [], - "name": "Tennis Court" - }, - "leisure/pitch/volleyball": { - "icon": "pitch", - "fields": [ - "surface", - "lit" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "pitch", - "sport": "volleyball" - }, - "terms": [], - "name": "Volleyball Court" - }, - "leisure/playground": { - "icon": "playground", - "geometry": [ - "point", - "area" - ], - "terms": [ - "jungle gym", - "play area" - ], - "tags": { - "leisure": "playground" - }, - "name": "Playground" - }, - "leisure/running_track": { - "icon": "pitch", - "fields": [ - "surface", - "sport_racing", - "lit", - "width", - "lanes" - ], - "geometry": [ - "point", - "line" - ], - "tags": { - "leisure": "track", - "sport": "running" - }, - "name": "Running Track" - }, - "leisure/slipway": { - "geometry": [ - "point", - "line" - ], - "terms": [ - "boat launch", - "boat ramp" - ], - "tags": { - "leisure": "slipway" - }, - "name": "Slipway" - }, - "leisure/sports_centre": { - "icon": "pitch", - "fields": [ - "sport", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "sports_centre" - }, - "terms": [], - "name": "Sports Center / Complex" - }, - "leisure/sports_centre/swimming": { - "icon": "swimming", - "fields": [ - "access_simple", - "operator", - "address", - "building" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "dive", - "water" - ], - "tags": { - "leisure": "sports_centre", - "sport": "swimming" - }, - "name": "Swimming Pool Facility" - }, - "leisure/stadium": { - "icon": "pitch", - "fields": [ - "sport", - "address" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "stadium" - }, - "name": "Stadium" - }, - "leisure/swimming_pool": { - "icon": "swimming", - "fields": [ - "access_simple", - "operator", - "address" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "dive", - "water" - ], - "tags": { - "leisure": "swimming_pool" - }, - "name": "Swimming Pool" - }, - "leisure/track": { - "icon": "highway-road", - "fields": [ - "surface", - "sport_racing", - "lit", - "width", - "lanes" - ], - "geometry": [ - "point", - "line" - ], - "tags": { - "leisure": "track" - }, - "name": "Racetrack (non-Motorsport)" - }, - "leisure/water_park": { - "icon": "swimming", - "fields": [ - "operator", - "address" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "swim", - "pool", - "dive" - ], - "tags": { - "leisure": "water_park" - }, - "name": "Water Park" - }, - "line": { - "name": "Line", - "tags": {}, - "geometry": [ - "line" - ], - "matchScore": 0.1 - }, - "man_made": { - "fields": [ - "man_made" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "man_made": "*" - }, - "name": "Man Made" - }, - "man_made/embankment": { - "geometry": [ - "line" - ], - "tags": { - "man_made": "embankment" - }, - "name": "Embankment", - "searchable": false - }, - "man_made/adit": { - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator" - ], - "terms": [ - "entrance", - "underground", - "mine", - "cave" - ], - "tags": { - "man_made": "adit" - }, - "name": "Adit" - }, - "man_made/breakwater": { - "geometry": [ - "line", - "area" - ], - "tags": { - "man_made": "breakwater" - }, - "name": "Breakwater" - }, - "man_made/bridge": { - "geometry": [ - "area" - ], - "tags": { - "man_made": "bridge" - }, - "name": "Bridge" - }, - "man_made/chimney": { - "geometry": [ - "point", - "area" - ], - "tags": { - "man_made": "chimney" - }, - "name": "Chimney" - }, - "man_made/cutline": { - "geometry": [ - "line" - ], - "tags": { - "man_made": "cutline" - }, - "name": "Cut line" - }, - "man_made/flagpole": { - "geometry": [ - "point" - ], - "tags": { - "man_made": "flagpole" - }, - "name": "Flagpole", - "icon": "embassy" - }, - "man_made/gasometer": { - "geometry": [ - "point", - "area" - ], - "terms": [ - "gas holder" - ], - "tags": { - "man_made": "gasometer" - }, - "name": "Gasometer" - }, - "man_made/groyne": { - "geometry": [ - "line", - "area" - ], - "tags": { - "man_made": "groyne" - }, - "name": "Groyne" - }, - "man_made/lighthouse": { - "icon": "lighthouse", - "fields": [ - "building_area" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "man_made": "lighthouse" - }, - "name": "Lighthouse" - }, - "man_made/mast": { - "geometry": [ - "point" - ], - "terms": [ - "broadcast tower", - "cell phone tower", - "cell tower", - "guyed tower", - "mobile phone tower", - "radio tower", - "television tower", - "transmission mast", - "transmission tower", - "tv tower" - ], - "tags": { - "man_made": "mast" - }, - "name": "Radio Mast" - }, - "man_made/observation": { - "geometry": [ - "point", - "area" - ], - "terms": [ - "lookout tower", - "fire tower" - ], - "tags": { - "man_made": "tower", - "tower:type": "observation" - }, - "name": "Observation Tower" - }, - "man_made/petroleum_well": { - "geometry": [ - "point" - ], - "terms": [ - "drilling rig", - "oil derrick", - "oil drill", - "oil horse", - "oil rig", - "oil pump", - "petroleum well", - "pumpjack" - ], - "tags": { - "man_made": "petroleum_well" - }, - "name": "Oil Well" - }, - "man_made/pier": { - "geometry": [ - "line", - "area" - ], - "terms": [ - "dock" - ], - "tags": { - "man_made": "pier" - }, - "name": "Pier" - }, - "man_made/pipeline": { - "icon": "pipeline-line", - "fields": [ - "location", - "operator" - ], - "geometry": [ - "line" - ], - "tags": { - "man_made": "pipeline" - }, - "name": "Pipeline" - }, - "man_made/pumping_station": { - "geometry": [ - "point", - "area" - ], - "tags": { - "man_made": "pumping_station" - }, - "name": "Pumping Station" - }, - "man_made/silo": { - "fields": [ - "building_area", - "crop" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "grain", - "corn", - "wheat" - ], - "tags": { - "man_made": "silo" - }, - "name": "Silo" - }, - "man_made/storage_tank": { - "fields": [ - "building_area", - "content" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "water", - "oil", - "gas", - "petrol" - ], - "tags": { - "man_made": "storage_tank" - }, - "name": "Storage Tank" - }, - "man_made/surveillance": { - "icon": "camera", - "geometry": [ - "point" - ], - "terms": [ - "cctv" - ], - "tags": { - "man_made": "surveillance" - }, - "name": "Surveillance" - }, - "man_made/survey_point": { - "icon": "monument", - "fields": [ - "ref" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "man_made": "survey_point" - }, - "name": "Survey Point" - }, - "man_made/tower": { - "fields": [ - "towertype" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "man_made": "tower" - }, - "name": "Tower" - }, - "man_made/wastewater_plant": { - "icon": "water", - "fields": [ - "operator", - "address" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "sewage*", - "water treatment plant", - "reclamation plant" - ], - "tags": { - "man_made": "wastewater_plant" - }, - "name": "Wastewater Plant" - }, - "man_made/water_tower": { - "icon": "water", - "fields": [ - "operator" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "man_made": "water_tower" - }, - "name": "Water Tower" - }, - "man_made/water_well": { - "fields": [ - "operator" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "man_made": "water_well" - }, - "name": "Water Well" - }, - "man_made/water_works": { - "icon": "water", - "fields": [ - "operator", - "address" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "man_made": "water_works" - }, - "name": "Water Works" - }, - "man_made/works": { - "geometry": [ - "point", - "area" - ], - "terms": [ - "car assembly plant", - "aluminium processing plant", - "brewery", - "furniture manufacture factory", - "oil refinery", - "plastic recycling" - ], - "tags": { - "man_made": "works" - }, - "name": "Works" - }, - "military/airfield": { - "icon": "airfield", - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [], - "tags": { - "military": "airfield" - }, - "name": "Airfield" - }, - "military/barracks": { - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [], - "tags": { - "military": "barracks" - }, - "name": "Barracks" - }, - "military/bunker": { - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [], - "tags": { - "military": "bunker" - }, - "name": "Bunker" - }, - "military/checkpoint": { - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [], - "tags": { - "military": "checkpoint" - }, - "name": "Checkpoint" - }, - "military/danger_area": { - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [], - "tags": { - "military": "danger_area" - }, - "name": "Danger Area" - }, - "military/naval_base": { - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [], - "tags": { - "military": "naval_base" - }, - "name": "Naval Base" - }, - "military/obstacle_course": { - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [], - "tags": { - "military": "obstacle_course" - }, - "name": "Obstacle Course" - }, - "military/range": { - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [], - "tags": { - "military": "range" - }, - "name": "Military Range" - }, - "military/training_area": { - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [], - "tags": { - "military": "training_area" - }, - "name": "Training area" - }, - "natural": { - "fields": [ - "natural" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "natural": "*" - }, - "name": "Natural" - }, - "natural/bay": { - "geometry": [ - "point", - "area" - ], - "terms": [], - "tags": { - "natural": "bay" - }, - "name": "Bay" - }, - "natural/beach": { - "fields": [ - "surface" - ], - "geometry": [ - "point", - "area" - ], - "terms": [], - "tags": { - "natural": "beach" - }, - "name": "Beach" - }, - "natural/cave_entrance": { - "geometry": [ - "point", - "area" - ], - "fields": [ - "fee", - "access_simple" - ], - "terms": [ - "cavern", - "hollow", - "grotto", - "shelter", - "cavity" - ], - "tags": { - "natural": "cave_entrance" - }, - "name": "Cave Entrance" - }, - "natural/cliff": { - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "terms": [], - "tags": { - "natural": "cliff" - }, - "name": "Cliff" - }, - "natural/coastline": { - "geometry": [ - "line" - ], - "terms": [ - "shore" - ], - "tags": { - "natural": "coastline" - }, - "name": "Coastline" - }, - "natural/fell": { - "geometry": [ - "area" - ], - "terms": [], - "tags": { - "natural": "fell" - }, - "name": "Fell" - }, - "natural/glacier": { - "geometry": [ - "area" - ], - "terms": [], - "tags": { - "natural": "glacier" - }, - "name": "Glacier" - }, - "natural/grassland": { - "geometry": [ - "point", - "area" - ], - "terms": [], - "tags": { - "natural": "grassland" - }, - "name": "Grassland" - }, - "natural/heath": { - "geometry": [ - "area" - ], - "terms": [], - "tags": { - "natural": "heath" - }, - "name": "Heath" - }, - "natural/peak": { - "icon": "triangle", - "fields": [ - "elevation" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "natural": "peak" - }, - "terms": [ - "acme", - "aiguille", - "alp", - "climax", - "crest", - "crown", - "hill", - "mount", - "mountain", - "pinnacle", - "summit", - "tip", - "top" - ], - "name": "Peak" - }, - "natural/saddle": { - "icon": "triangle-stroked", - "fields": [ - "elevation" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "natural": "saddle" - }, - "terms": [ - "pass", - "mountain pass", - "top" - ], - "name": "Saddle" - }, - "natural/scree": { - "geometry": [ - "area" - ], - "tags": { - "natural": "scree" - }, - "terms": [ - "loose rocks" - ], - "name": "Scree" - }, - "natural/scrub": { - "geometry": [ - "area" - ], - "tags": { - "natural": "scrub" - }, - "terms": [ - "bush", - "shrubs" - ], - "name": "Scrub" - }, - "natural/spring": { - "geometry": [ - "point", - "vertex" - ], - "terms": [], - "tags": { - "natural": "spring" - }, - "name": "Spring" - }, - "natural/tree_row": { - "fields": [ - "leaf_type", - "leaf_cycle", - "denotation" - ], - "icon": "park", - "geometry": [ - "line" - ], - "terms": [], - "tags": { - "natural": "tree_row" - }, - "name": "Tree row" - }, - "natural/tree": { - "fields": [ - "leaf_type_singular", - "leaf_cycle_singular", - "denotation" - ], - "icon": "park", - "geometry": [ - "point", - "vertex" - ], - "terms": [], - "tags": { - "natural": "tree" - }, - "name": "Tree" - }, - "natural/volcano": { - "icon": "triangle", - "fields": [ - "elevation" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "natural": "volcano" - }, - "terms": [ - "mountain", - "crater" - ], - "name": "Volcano" - }, - "natural/water": { - "fields": [ - "water" - ], - "geometry": [ - "area" - ], - "tags": { - "natural": "water" - }, - "icon": "water", - "name": "Water" - }, - "natural/water/lake": { - "geometry": [ - "area" - ], - "tags": { - "natural": "water", - "water": "lake" - }, - "terms": [ - "lakelet", - "loch", - "mere" - ], - "icon": "water", - "name": "Lake" - }, - "natural/water/pond": { - "geometry": [ - "area" - ], - "tags": { - "natural": "water", - "water": "pond" - }, - "terms": [ - "lakelet", - "millpond", - "tarn", - "pool", - "mere" - ], - "icon": "water", - "name": "Pond" - }, - "natural/water/reservoir": { - "geometry": [ - "area" - ], - "tags": { - "natural": "water", - "water": "reservoir" - }, - "icon": "water", - "name": "Reservoir" - }, - "natural/wetland": { - "icon": "wetland", - "fields": [ - "wetland" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "natural": "wetland" - }, - "terms": [], - "name": "Wetland" - }, - "natural/wood": { - "icon": "park2", - "fields": [ - "leaf_type", - "leaf_cycle" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "natural": "wood" - }, - "terms": [ - "tree" - ], - "name": "Wood" - }, - "office": { - "icon": "commercial", - "fields": [ - "office", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "*" - }, - "terms": [], - "name": "Office" - }, - "office/travel_agent": { - "icon": "suitcase", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "travel_agent" - }, - "terms": [], - "name": "Travel Agency", - "searchable": false - }, - "office/accountant": { - "icon": "commercial", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "accountant" - }, - "terms": [], - "name": "Accountant" - }, - "office/administrative": { - "icon": "commercial", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "administrative" - }, - "terms": [], - "name": "Administrative Office" - }, - "office/architect": { - "icon": "commercial", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "architect" - }, - "terms": [], - "name": "Architect" - }, - "office/company": { - "icon": "commercial", - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "company" - }, - "terms": [], - "name": "Company Office" - }, - "office/educational_institution": { - "icon": "commercial", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "educational_institution" - }, - "terms": [], - "name": "Educational Institution" - }, - "office/employment_agency": { - "icon": "commercial", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "employment_agency" - }, - "terms": [ - "job" - ], - "name": "Employment Agency" - }, - "office/estate_agent": { - "icon": "commercial", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "estate_agent" - }, - "terms": [], - "name": "Real Estate Office" - }, - "office/financial": { - "icon": "commercial", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "financial" - }, - "terms": [], - "name": "Financial Office" - }, - "office/government": { - "icon": "commercial", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "government" - }, - "terms": [], - "name": "Government Office" - }, - "office/government/register_office": { - "icon": "town-hall", - "fields": [ - "address", - "building_area", - "opening_hours", - "operator" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "clerk", - "marriage", - "death", - "birth", - "certificate" - ], - "tags": { - "office": "government", - "government": "register_office" - }, - "name": "Register Office" - }, - "office/insurance": { - "icon": "commercial", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "insurance" - }, - "terms": [], - "name": "Insurance Office" - }, - "office/it": { - "icon": "commercial", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "it" - }, - "terms": [], - "name": "IT Office" - }, - "office/lawyer": { - "icon": "commercial", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "lawyer" - }, - "terms": [], - "name": "Law Office" - }, - "office/newspaper": { - "icon": "commercial", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "newspaper" - }, - "terms": [], - "name": "Newspaper" - }, - "office/ngo": { - "icon": "commercial", - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "ngo" - }, - "terms": [], - "name": "NGO Office" - }, - "office/physician": { - "icon": "commercial", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "physician" - }, - "terms": [], - "name": "Physician" - }, - "office/political_party": { - "icon": "commercial", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "political_party" - }, - "terms": [], - "name": "Political Party" - }, - "office/research": { - "icon": "commercial", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "research" - }, - "terms": [], - "name": "Research Office" - }, - "office/telecommunication": { - "icon": "commercial", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "telecommunication" - }, - "terms": [], - "name": "Telecom Office" - }, - "office/therapist": { - "icon": "commercial", - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "therapist" - }, - "terms": [], - "name": "Therapist" - }, - "piste": { - "icon": "skiing", - "fields": [ - "piste/type", - "piste/difficulty", - "piste/grooming", - "oneway", - "lit" - ], - "geometry": [ - "point", - "line", - "area" - ], - "terms": [ - "ski", - "sled", - "sleigh", - "snowboard", - "nordic", - "downhill", - "snowmobile" - ], - "tags": { - "piste:type": "*" - }, - "name": "Piste/Ski Trail" - }, - "place/city": { - "icon": "city", - "fields": [ - "population" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "city" - }, - "name": "City" - }, - "place/farm": { - "icon": "farm", - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "farm" - }, - "name": "Farm" - }, - "place/hamlet": { - "icon": "triangle-stroked", - "fields": [ - "population" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "hamlet" - }, - "name": "Hamlet" - }, - "place/island": { - "geometry": [ - "point", - "area" - ], - "terms": [ - "archipelago", - "atoll", - "bar", - "cay", - "isle", - "islet", - "key", - "reef" - ], - "tags": { - "place": "island" - }, - "name": "Island" - }, - "place/isolated_dwelling": { - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "isolated_dwelling" - }, - "name": "Isolated Dwelling" - }, - "place/locality": { - "icon": "marker", - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "locality" - }, - "name": "Locality" - }, - "place/neighbourhood": { - "icon": "triangle-stroked", - "fields": [ - "population" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "neighbourhood" - }, - "terms": [ - "neighbourhood" - ], - "name": "Neighborhood" - }, - "place/suburb": { - "icon": "triangle-stroked", - "fields": [ - "population" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "suburb" - }, - "terms": [ - "Boro", - "Quarter" - ], - "name": "Borough" - }, - "place/town": { - "icon": "town", - "fields": [ - "population" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "town" - }, - "name": "Town" - }, - "place/village": { - "icon": "village", - "fields": [ - "population" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "village" - }, - "name": "Village" - }, - "point": { - "name": "Point", - "tags": {}, - "geometry": [ - "point" - ], - "matchScore": 0.1 - }, - "power/sub_station": { - "fields": [ - "substation", - "operator", - "building" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "power": "sub_station" - }, - "name": "Substation", - "searchable": false - }, - "power/generator": { - "fields": [ - "operator", - "generator/source", - "generator/method", - "generator/type" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "power": "generator" - }, - "name": "Power Generator" - }, - "power/line": { - "geometry": [ - "line" - ], - "tags": { - "power": "line" - }, - "name": "Power Line", - "icon": "power-line" - }, - "power/minor_line": { - "geometry": [ - "line" - ], - "tags": { - "power": "minor_line" - }, - "name": "Minor Power Line", - "icon": "power-line" - }, - "power/pole": { - "geometry": [ - "vertex" - ], - "tags": { - "power": "pole" - }, - "name": "Power Pole" - }, - "power/substation": { - "fields": [ - "substation", - "operator", - "building" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "power": "substation" - }, - "name": "Substation" - }, - "power/tower": { - "geometry": [ - "vertex" - ], - "tags": { - "power": "tower" - }, - "name": "High-Voltage Tower" - }, - "power/transformer": { - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "power": "transformer" - }, - "name": "Transformer" - }, - "public_transport/platform": { - "fields": [ - "ref", - "network", - "operator", - "shelter" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "public_transport": "platform" - }, - "name": "Platform" - }, - "public_transport/stop_position": { - "icon": "bus", - "fields": [ - "ref", - "network", - "operator" - ], - "geometry": [ - "vertex" - ], - "tags": { - "public_transport": "stop_position" - }, - "name": "Stop Position" - }, - "railway/abandoned": { - "icon": "railway-abandoned", - "geometry": [ - "line" - ], - "tags": { - "railway": "abandoned" - }, - "fields": [ - "structure", - "service_rail" - ], - "terms": [], - "name": "Abandoned Railway" - }, - "railway/crossing": { - "icon": "cross", - "geometry": [ - "vertex" - ], - "tags": { - "railway": "crossing" - }, - "terms": [ - "crossing", - "pedestrian crossing", - "railroad crossing", - "level crossing", - "grade crossing", - "path through railroad", - "train crossing" - ], - "name": "Railway Crossing (Path)" - }, - "railway/disused": { - "icon": "railway-disused", - "geometry": [ - "line" - ], - "tags": { - "railway": "disused" - }, - "fields": [ - "structure", - "service_rail" - ], - "terms": [], - "name": "Disused Railway" - }, - "railway/funicular": { - "geometry": [ - "line" - ], - "terms": [ - "venicular", - "cliff railway", - "cable car", - "cable railway", - "funicular railway" - ], - "fields": [ - "structure", - "gauge", - "service_rail" - ], - "tags": { - "railway": "funicular" - }, - "icon": "railway-rail", - "name": "Funicular" - }, - "railway/halt": { - "icon": "rail", - "geometry": [ - "point", - "vertex" - ], - "tags": { - "railway": "halt" - }, - "name": "Railway Halt", - "terms": [ - "break", - "interrupt", - "rest", - "wait", - "interruption" - ] - }, - "railway/level_crossing": { - "icon": "cross", - "geometry": [ - "vertex" - ], - "tags": { - "railway": "level_crossing" - }, - "terms": [ - "crossing", - "railroad crossing", - "level crossing", - "grade crossing", - "road through railroad", - "train crossing" - ], - "name": "Railway Crossing (Road)" - }, - "railway/monorail": { - "icon": "railway-monorail", - "geometry": [ - "line" - ], - "tags": { - "railway": "monorail" - }, - "fields": [ - "structure", - "electrified", - "service_rail" - ], - "terms": [], - "name": "Monorail" - }, - "railway/narrow_gauge": { - "icon": "railway-rail", - "geometry": [ - "line" - ], - "tags": { - "railway": "narrow_gauge" - }, - "fields": [ - "structure", - "gauge", - "electrified", - "service_rail" - ], - "terms": [ - "narrow gauge railway", - "narrow gauge railroad" - ], - "name": "Narrow Gauge Rail" - }, - "railway/platform": { - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "railway": "platform" - }, - "name": "Railway Platform" - }, - "railway/rail": { - "icon": "railway-rail", - "geometry": [ - "line" - ], - "tags": { - "railway": "rail" - }, - "fields": [ - "structure", - "gauge", - "electrified", - "maxspeed", - "service_rail" - ], - "terms": [], - "name": "Rail" - }, - "railway/station": { - "icon": "rail", - "fields": [ - "network", - "operator", - "address", - "building_area" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "railway": "station" - }, - "terms": [ - "train station", - "station" - ], - "name": "Railway Station" - }, - "railway/subway_entrance": { - "icon": "rail-metro", - "geometry": [ - "point" - ], - "tags": { - "railway": "subway_entrance" - }, - "terms": [], - "name": "Subway Entrance" - }, - "railway/subway": { - "icon": "railway-subway", - "geometry": [ - "line" - ], - "tags": { - "railway": "subway" - }, - "fields": [ - "structure", - "gauge", - "electrified", - "service_rail" - ], - "terms": [], - "name": "Subway" - }, - "railway/tram": { - "icon": "railway-light-rail", - "geometry": [ - "line" - ], - "tags": { - "railway": "tram" - }, - "fields": [ - "structure", - "gauge", - "electrified", - "service_rail" - ], - "terms": [ - "streetcar" - ], - "name": "Tram" - }, - "relation": { - "name": "Relation", - "icon": "relation", - "tags": {}, - "geometry": [ - "relation" - ], - "fields": [ - "relation" - ] - }, - "route/ferry": { - "icon": "ferry-line", - "geometry": [ - "line" - ], - "tags": { - "route": "ferry" - }, - "name": "Ferry Route" - }, - "shop": { - "icon": "shop", - "fields": [ - "shop", - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "*" - }, - "terms": [], - "name": "Shop" - }, - "shop/fishmonger": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "fishmonger" - }, - "name": "Fishmonger", - "searchable": false - }, - "shop/vacant": { - "icon": "shop", - "fields": [ - "address", - "building_area" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "vacant" - }, - "name": "Vacant Shop", - "searchable": false - }, - "shop/alcohol": { - "icon": "alcohol-shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "alcohol", - "beer", - "booze", - "wine" - ], - "tags": { - "shop": "alcohol" - }, - "name": "Liquor Store" - }, - "shop/anime": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "anime" - }, - "terms": [ - "manga", - "japan", - "cosplay", - "figurine", - "dakimakura" - ], - "name": "Anime Shop" - }, - "shop/antiques": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "antiques" - }, - "name": "Antiques Shop" - }, - "shop/art": { - "icon": "shop", - "fields": [ - "artwork_type", - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "art*", - "exhibit*", - "gallery" - ], - "tags": { - "shop": "art" - }, - "name": "Art Store" - }, - "shop/baby_goods": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "baby_goods" - }, - "name": "Baby Goods Store" - }, - "shop/bag": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "handbag", - "purse" - ], - "tags": { - "shop": "bag" - }, - "name": "Bag/Luggage Store" - }, - "shop/bakery": { - "icon": "bakery", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "bakery" - }, - "name": "Bakery" - }, - "shop/bathroom_furnishing": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "bathroom_furnishing" - }, - "name": "Bathroom Furnishing Store" - }, - "shop/beauty": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "beauty" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "spa", - "salon", - "tanning" - ], - "tags": { - "shop": "beauty" - }, - "name": "Beauty Shop" - }, - "shop/beauty/nails": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "manicure", - "pedicure" - ], - "tags": { - "shop": "beauty", - "beauty": "nails" - }, - "name": "Nail Salon" - }, - "shop/beauty/tanning": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "beauty", - "beauty": "tanning" - }, - "name": "Tanning Salon" - }, - "shop/bed": { - "icon": "lodging", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "bed" - }, - "name": "Bedding/Mattress Store" - }, - "shop/beverages": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "beverages" - }, - "name": "Beverage Store" - }, - "shop/bicycle": { - "icon": "bicycle", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "service/bicycle" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "bike", - "repair" - ], - "tags": { - "shop": "bicycle" - }, - "name": "Bicycle Shop" - }, - "shop/bookmaker": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "betting" - ], - "tags": { - "shop": "bookmaker" - }, - "name": "Bookmaker" - }, - "shop/books": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "books" - }, - "name": "Book Store" - }, - "shop/boutique": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "boutique" - }, - "name": "Boutique" - }, - "shop/butcher": { - "icon": "slaughterhouse", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "meat" - ], - "tags": { - "shop": "butcher" - }, - "name": "Butcher" - }, - "shop/candles": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "candles" - }, - "name": "Candle Shop" - }, - "shop/car_parts": { - "icon": "car", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "auto" - ], - "tags": { - "shop": "car_parts" - }, - "name": "Car Parts Store" - }, - "shop/car_repair": { - "icon": "car", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "auto", - "garage", - "service" - ], - "tags": { - "shop": "car_repair" - }, - "name": "Car Repair Shop" - }, - "shop/car": { - "icon": "car", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "auto" - ], - "tags": { - "shop": "car" - }, - "name": "Car Dealership" - }, - "shop/carpet": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "rug" - ], - "tags": { - "shop": "carpet" - }, - "name": "Carpet Store" - }, - "shop/charity": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "thrift", - "op shop", - "nonprofit" - ], - "tags": { - "shop": "charity" - }, - "name": "Charity Store" - }, - "shop/cheese": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "cheese" - }, - "name": "Cheese Store" - }, - "shop/chemist": { - "icon": "grocery", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "chemist" - }, - "terms": [ - "med*", - "drug*", - "gift" - ], - "name": "Drugstore" - }, - "shop/chocolate": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "chocolate" - }, - "name": "Chocolate Store" - }, - "shop/clothes": { - "icon": "clothing-store", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "clothes" - }, - "name": "Clothing Store" - }, - "shop/coffee": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "coffee" - }, - "name": "Coffee Store" - }, - "shop/computer": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "computer" - }, - "name": "Computer Store" - }, - "shop/confectionery": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "confectionery" - }, - "name": "Candy Store" - }, - "shop/convenience": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "convenience" - }, - "name": "Convenience Store" - }, - "shop/copyshop": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "copyshop" - }, - "name": "Copy Store" - }, - "shop/cosmetics": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "cosmetics" - }, - "name": "Cosmetics Store" - }, - "shop/craft": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "craft" - }, - "terms": [ - "art*", - "paint*", - "frame" - ], - "name": "Arts and Crafts Store" - }, - "shop/curtain": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "drape*", - "window" - ], - "tags": { - "shop": "curtain" - }, - "name": "Curtain Store" - }, - "shop/dairy": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "milk", - "egg", - "cheese" - ], - "tags": { - "shop": "dairy" - }, - "name": "Dairy Store" - }, - "shop/deli": { - "icon": "restaurant", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "lunch", - "meat", - "sandwich" - ], - "tags": { - "shop": "deli" - }, - "name": "Deli" - }, - "shop/department_store": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "department_store" - }, - "name": "Department Store" - }, - "shop/doityourself": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "doityourself" - }, - "name": "DIY Store" - }, - "shop/dry_cleaning": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "dry_cleaning" - }, - "name": "Dry Cleaner" - }, - "shop/e-cigarette": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "e-cigarette" - }, - "terms": [ - "electronic", - "vapor" - ], - "name": "E-Cigarette Shop" - }, - "shop/electronics": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "appliance", - "audio", - "computer", - "tv" - ], - "tags": { - "shop": "electronics" - }, - "name": "Electronics Store" - }, - "shop/erotic": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "sex", - "porn" - ], - "tags": { - "shop": "erotic" - }, - "name": "Erotic Store" - }, - "shop/fabric": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "sew" - ], - "tags": { - "shop": "fabric" - }, - "name": "Fabric Store" - }, - "shop/farm": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "farm shop", - "farm stand" - ], - "tags": { - "shop": "farm" - }, - "name": "Produce Stand" - }, - "shop/fashion": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "fashion" - }, - "name": "Fashion Store" - }, - "shop/florist": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "flower" - ], - "tags": { - "shop": "florist" - }, - "name": "Florist" - }, - "shop/frame": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "frame" - }, - "terms": [ - "art*", - "paint*", - "photo*", - "frame" - ], - "name": "Framing Shop" - }, - "shop/funeral_directors": { - "icon": "cemetery", - "fields": [ - "operator", - "address", - "building_area", - "religion", - "denomination" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "undertaker", - "memorial home" - ], - "tags": { - "shop": "funeral_directors" - }, - "name": "Funeral Home" - }, - "shop/furnace": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "oven", - "stove" - ], - "tags": { - "shop": "furnace" - }, - "name": "Furnace Store" - }, - "shop/furniture": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "chair", - "sofa", - "table" - ], - "tags": { - "shop": "furniture" - }, - "name": "Furniture Store" - }, - "shop/garden_centre": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "landscape", - "mulch", - "shrub", - "tree" - ], - "tags": { - "shop": "garden_centre" - }, - "name": "Garden Center" - }, - "shop/gift": { - "icon": "gift", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "souvenir" - ], - "tags": { - "shop": "gift" - }, - "name": "Gift Shop" - }, - "shop/greengrocer": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "fruit", - "vegetable" - ], - "tags": { - "shop": "greengrocer" - }, - "name": "Greengrocer" - }, - "shop/hairdresser": { - "icon": "hairdresser", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "barber" - ], - "tags": { - "shop": "hairdresser" - }, - "name": "Hairdresser" - }, - "shop/hardware": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "hardware" - }, - "name": "Hardware Store" - }, - "shop/hearing_aids": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "hearing_aids" - }, - "name": "Hearing Aids Store" - }, - "shop/herbalist": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "herbalist" - }, - "name": "Herbalist" - }, - "shop/hifi": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "stereo", - "video" - ], - "tags": { - "shop": "hifi" - }, - "name": "Hifi Store" - }, - "shop/houseware": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "home", - "household" - ], - "tags": { - "shop": "houseware" - }, - "name": "Houseware Store" - }, - "shop/interior_decoration": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "interior_decoration" - }, - "name": "Interior Decoration Store" - }, - "shop/jewelry": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "diamond", - "gem", - "ring" - ], - "tags": { - "shop": "jewelry" - }, - "name": "Jeweler" - }, - "shop/kiosk": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "kiosk" - }, - "name": "News Kiosk" - }, - "shop/kitchen": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "kitchen" - }, - "name": "Kitchen Design Store" - }, - "shop/laundry": { - "icon": "laundry", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "laundry" - }, - "name": "Laundry" - }, - "shop/leather": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "leather" - }, - "name": "Leather Store" - }, - "shop/locksmith": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "key", - "lockpick" - ], - "tags": { - "shop": "locksmith" - }, - "name": "Locksmith" - }, - "shop/lottery": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "lottery" - }, - "name": "Lottery Shop" - }, - "shop/mall": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "shopping" - ], - "tags": { - "shop": "mall" - }, - "name": "Mall" - }, - "shop/massage": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "massage" - }, - "name": "Massage Shop" - }, - "shop/medical_supply": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "medical_supply" - }, - "name": "Medical Supply Store" - }, - "shop/mobile_phone": { - "icon": "mobilephone", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "mobile_phone" - }, - "name": "Mobile Phone Store" - }, - "shop/money_lender": { - "icon": "bank", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "currency_multi" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "money_lender" - }, - "name": "Money Lender" - }, - "shop/motorcycle": { - "icon": "scooter", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "bike" - ], - "tags": { - "shop": "motorcycle" - }, - "name": "Motorcycle Dealership" - }, - "shop/music": { - "icon": "music", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "CD", - "vinyl" - ], - "tags": { - "shop": "music" - }, - "name": "Music Store" - }, - "shop/musical_instrument": { - "icon": "music", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "guitar" - ], - "tags": { - "shop": "musical_instrument" - }, - "name": "Musical Instrument Store" - }, - "shop/newsagent": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "newsagent" - }, - "name": "Newspaper/Magazine Shop" - }, - "shop/nutrition_supplements": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "nutrition_supplements" - }, - "name": "Nutrition Supplements Store" - }, - "shop/optician": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "eye", - "glasses" - ], - "tags": { - "shop": "optician" - }, - "name": "Optician" - }, - "shop/organic": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "supermarket", - "organic": "only" - }, - "name": "Organic Goods Store" - }, - "shop/outdoor": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "camping", - "climbing", - "hiking" - ], - "tags": { - "shop": "outdoor" - }, - "name": "Outdoors Store" - }, - "shop/paint": { - "icon": "water", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "paint" - }, - "name": "Paint Store" - }, - "shop/pastry": { - "icon": "bakery", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "pastry" - }, - "terms": [ - "patisserie", - "cake shop", - "cakery" - ], - "name": "Pastry Shop" - }, - "shop/pawnbroker": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "pawnbroker" - }, - "name": "Pawn Shop" - }, - "shop/pet": { - "icon": "dog-park", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "cat", - "dog", - "fish" - ], - "tags": { - "shop": "pet" - }, - "name": "Pet Store" - }, - "shop/photo": { - "icon": "camera", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "camera", - "film" - ], - "tags": { - "shop": "photo" - }, - "name": "Photography Store" - }, - "shop/pyrotechnics": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "pyrotechnics" - }, - "name": "Fireworks Store" - }, - "shop/radiotechnics": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "radiotechnics" - }, - "name": "Radio/Electronic Component Store" - }, - "shop/religion": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "religion", - "denomination" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "religion" - }, - "name": "Religious Store" - }, - "shop/scuba_diving": { - "icon": "swimming", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "scuba_diving" - }, - "name": "Scuba Diving Shop" - }, - "shop/seafood": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "fishmonger" - ], - "tags": { - "shop": "seafood" - }, - "name": "Seafood Shop" - }, - "shop/second_hand": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "secondhand", - "second hand", - "resale", - "thrift", - "used" - ], - "tags": { - "shop": "second_hand" - }, - "name": "Consignment/Thrift Store" - }, - "shop/shoes": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "shoes" - }, - "name": "Shoe Store" - }, - "shop/sports": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "sports" - }, - "name": "Sporting Goods Store" - }, - "shop/stationery": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "card", - "paper" - ], - "tags": { - "shop": "stationery" - }, - "name": "Stationery Store" - }, - "shop/storage_rental": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "storage_rental" - }, - "name": "Storage Rental" - }, - "shop/supermarket": { - "icon": "grocery", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "grocery", - "store", - "shop" - ], - "tags": { - "shop": "supermarket" - }, - "name": "Supermarket" - }, - "shop/tailor": { - "icon": "clothing-store", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "clothes", - "suit" - ], - "tags": { - "shop": "tailor" - }, - "name": "Tailor" - }, - "shop/tattoo": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "tattoo" - }, - "name": "Tattoo Parlor" - }, - "shop/tea": { - "icon": "cafe", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "tea" - }, - "name": "Tea Store" - }, - "shop/ticket": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "ticket" - }, - "name": "Ticket Seller" - }, - "shop/tobacco": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "tobacco" - }, - "name": "Tobacco Shop" - }, - "shop/toys": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "toys" - }, - "name": "Toy Store" - }, - "shop/travel_agency": { - "icon": "suitcase", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "travel_agency" - }, - "name": "Travel Agency" - }, - "shop/tyres": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "tyres" - }, - "name": "Tire Store" - }, - "shop/vacuum_cleaner": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "vacuum_cleaner" - }, - "name": "Vacuum Cleaner Store" - }, - "shop/variety_store": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "variety_store" - }, - "name": "Variety Store" - }, - "shop/video_games": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "video_games" - }, - "name": "Video Game Store" - }, - "shop/video": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "DVD" - ], - "tags": { - "shop": "video" - }, - "name": "Video Store" - }, - "shop/water_sports": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "water_sports" - }, - "name": "Watersport/Swim Shop" - }, - "shop/weapons": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "ammo", - "gun", - "knife", - "knives" - ], - "tags": { - "shop": "weapons" - }, - "name": "Weapon Shop" - }, - "shop/window_blind": { - "icon": "shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "window_blind" - }, - "name": "Window Blind Store" - }, - "shop/wine": { - "icon": "alcohol-shop", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "wine" - }, - "name": "Wine Shop" - }, - "tourism": { - "fields": [ - "tourism" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "tourism": "*" - }, - "name": "Tourism" - }, - "tourism/alpine_hut": { - "icon": "lodging", - "fields": [ - "operator", - "address", - "building_area" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "tourism": "alpine_hut" - }, - "name": "Alpine Hut" - }, - "tourism/apartment": { - "icon": "lodging", - "fields": [ - "operator", - "address", - "building_area", - "smoking", - "rooms", - "internet_access", - "internet_access/fee" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "tourism": "apartment" - }, - "name": "Guest Apartment / Condo" - }, - "tourism/artwork": { - "icon": "art-gallery", - "fields": [ - "artwork_type", - "artist" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "tourism": "artwork" - }, - "terms": [ - "mural", - "sculpture", - "statue" - ], - "name": "Artwork" - }, - "tourism/attraction": { - "icon": "monument", - "fields": [ - "operator", - "address" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "tourism": "attraction" - }, - "name": "Tourist Attraction" - }, - "tourism/camp_site": { - "icon": "campsite", - "fields": [ - "operator", - "address", - "capacity", - "fee" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "tent", - "rv" - ], - "tags": { - "tourism": "camp_site" - }, - "name": "Campground" - }, - "tourism/caravan_site": { - "icon": "bus", - "fields": [ - "operator", - "address", - "capacity", - "fee", - "sanitary_dump_station", - "power_supply", - "internet_access" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "Motor Home", - "Camper" - ], - "tags": { - "tourism": "caravan_site" - }, - "name": "RV Park" - }, - "tourism/chalet": { - "icon": "lodging", - "fields": [ - "operator", - "address", - "building_area", - "smoking" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "tourism": "chalet" - }, - "name": "Chalet" - }, - "tourism/gallery": { - "icon": "art-gallery", - "fields": [ - "artwork_type", - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "art*", - "exhibit*", - "paint*", - "photo*", - "sculpt*" - ], - "tags": { - "tourism": "gallery" - }, - "name": "Art Gallery" - }, - "tourism/guest_house": { - "icon": "lodging", - "fields": [ - "operator", - "address", - "building_area", - "smoking", - "rooms", - "internet_access", - "internet_access/fee" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "tourism": "guest_house" - }, - "terms": [ - "B&B", - "Bed and Breakfast" - ], - "name": "Guest House" - }, - "tourism/hostel": { - "icon": "lodging", - "fields": [ - "operator", - "address", - "building_area", - "smoking", - "rooms", - "internet_access", - "internet_access/fee" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "tourism": "hostel" - }, - "name": "Hostel" - }, - "tourism/hotel": { - "icon": "lodging", - "fields": [ - "operator", - "address", - "building_area", - "smoking", - "stars", - "rooms", - "internet_access", - "internet_access/fee" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "tourism": "hotel" - }, - "name": "Hotel" - }, - "tourism/information": { - "fields": [ - "information", - "operator", - "address", - "building_area" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "tourism": "information" - }, - "name": "Information" - }, - "tourism/motel": { - "icon": "lodging", - "fields": [ - "operator", - "address", - "building_area", - "smoking", - "rooms", - "internet_access", - "internet_access/fee" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "tourism": "motel" - }, - "name": "Motel" - }, - "tourism/museum": { - "icon": "museum", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "art*", - "exhibit*", - "gallery", - "foundation", - "hall", - "institution", - "paint*", - "photo*", - "sculpt*" - ], - "tags": { - "tourism": "museum" - }, - "name": "Museum" - }, - "tourism/picnic_site": { - "icon": "park", - "fields": [ - "operator", - "address", - "smoking" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "camp" - ], - "tags": { - "tourism": "picnic_site" - }, - "name": "Picnic Site" - }, - "tourism/theme_park": { - "fields": [ - "operator", - "address", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "tourism": "theme_park" - }, - "name": "Theme Park" - }, - "tourism/viewpoint": { - "geometry": [ - "point", - "vertex" - ], - "tags": { - "tourism": "viewpoint" - }, - "name": "Viewpoint" - }, - "tourism/zoo": { - "icon": "zoo", - "fields": [ - "operator", - "address", - "opening_hours" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "tourism": "zoo" - }, - "name": "Zoo" - }, - "traffic_calming": { - "fields": [ - "traffic_calming", - "parallel_direction" - ], - "geometry": [ - "vertex", - "line" - ], - "tags": { - "traffic_calming": "*" - }, - "terms": [ - "bump", - "hump", - "slow", - "speed" - ], - "name": "Traffic Calming" - }, - "traffic_calming/bump": { - "fields": [ - "surface", - "parallel_direction" - ], - "geometry": [ - "vertex", - "line" - ], - "terms": [ - "hump", - "speed", - "slow" - ], - "tags": { - "traffic_calming": "bump" - }, - "name": "Speed Bump" - }, - "traffic_calming/chicane": { - "fields": [ - "parallel_direction" - ], - "geometry": [ - "vertex", - "line" - ], - "terms": [ - "driveway link", - "speed", - "slow" - ], - "tags": { - "traffic_calming": "chicane" - }, - "name": "Traffic Chicane" - }, - "traffic_calming/choker": { - "fields": [ - "parallel_direction" - ], - "geometry": [ - "vertex", - "line" - ], - "terms": [ - "speed", - "slow" - ], - "tags": { - "traffic_calming": "choker" - }, - "name": "Traffic Choker" - }, - "traffic_calming/cushion": { - "fields": [ - "surface", - "parallel_direction" - ], - "geometry": [ - "vertex", - "line" - ], - "terms": [ - "bump", - "hump", - "speed", - "slow" - ], - "tags": { - "traffic_calming": "cushion" - }, - "name": "Speed Cushion" - }, - "traffic_calming/dip": { - "fields": [ - "surface", - "parallel_direction" - ], - "geometry": [ - "vertex", - "line" - ], - "terms": [ - "speed", - "slow" - ], - "tags": { - "traffic_calming": "dip" - }, - "name": "Dip" - }, - "traffic_calming/hump": { - "fields": [ - "surface", - "parallel_direction" - ], - "geometry": [ - "vertex", - "line" - ], - "terms": [ - "bump", - "speed", - "slow" - ], - "tags": { - "traffic_calming": "hump" - }, - "name": "Speed Hump" - }, - "traffic_calming/island": { - "geometry": [ - "vertex" - ], - "terms": [ - "circle", - "roundabout", - "slow" - ], - "tags": { - "traffic_calming": "island" - }, - "name": "Traffic Island" - }, - "traffic_calming/rumble_strip": { - "fields": [ - "parallel_direction" - ], - "geometry": [ - "vertex", - "line" - ], - "terms": [ - "audible lines", - "sleeper lines", - "growlers" - ], - "tags": { - "traffic_calming": "rumble_strip" - }, - "name": "Rumble Strip" - }, - "traffic_calming/table": { - "fields": [ - "surface" - ], - "geometry": [ - "vertex", - "line" - ], - "terms": [ - "flat top", - "hump", - "speed", - "slow" - ], - "tags": { - "highway": "crossing", - "traffic_calming": "table" - }, - "name": "Raised Pedestrian Crossing" - }, - "type/multipolygon": { - "geometry": [ - "area", - "relation" - ], - "tags": { - "type": "multipolygon" - }, - "removeTags": {}, - "name": "Multipolygon", - "icon": "multipolygon", - "searchable": false, - "matchScore": 0.1 - }, - "type/boundary": { - "geometry": [ - "relation" - ], - "tags": { - "type": "boundary" - }, - "name": "Boundary", - "icon": "boundary", - "fields": [ - "boundary" - ] - }, - "type/boundary/administrative": { - "name": "Administrative Boundary", - "geometry": [ - "relation" - ], - "tags": { - "type": "boundary", - "boundary": "administrative" - }, - "fields": [ - "admin_level" - ], - "icon": "boundary" - }, - "type/restriction": { - "geometry": [ - "relation" - ], - "tags": { - "type": "restriction" - }, - "name": "Restriction", - "icon": "restriction", - "fields": [ - "restriction", - "except" - ] - }, - "type/restriction/no_left_turn": { - "name": "No Left Turn", - "geometry": [ - "relation" - ], - "tags": { - "type": "restriction", - "restriction": "no_left_turn" - }, - "fields": [ - "except" - ], - "icon": "restriction-no-left-turn" - }, - "type/restriction/no_right_turn": { - "name": "No Right Turn", - "geometry": [ - "relation" - ], - "tags": { - "type": "restriction", - "restriction": "no_right_turn" - }, - "fields": [ - "except" - ], - "icon": "restriction-no-right-turn" - }, - "type/restriction/no_straight_on": { - "name": "No Straight On", - "geometry": [ - "relation" - ], - "tags": { - "type": "restriction", - "restriction": "no_straight_on" - }, - "fields": [ - "except" - ], - "icon": "restriction-no-straight-on" - }, - "type/restriction/no_u_turn": { - "name": "No U-turn", - "geometry": [ - "relation" - ], - "tags": { - "type": "restriction", - "restriction": "no_u_turn" - }, - "fields": [ - "except" - ], - "icon": "restriction-no-u-turn" - }, - "type/restriction/only_left_turn": { - "name": "Left Turn Only", - "geometry": [ - "relation" - ], - "tags": { - "type": "restriction", - "restriction": "only_left_turn" - }, - "fields": [ - "except" - ], - "icon": "restriction-only-left-turn" - }, - "type/restriction/only_right_turn": { - "name": "Right Turn Only", - "geometry": [ - "relation" - ], - "tags": { - "type": "restriction", - "restriction": "only_right_turn" - }, - "fields": [ - "except" - ], - "icon": "restriction-only-right-turn" - }, - "type/restriction/only_straight_on": { - "name": "No Turns", - "geometry": [ - "relation" - ], - "tags": { - "type": "restriction", - "restriction": "only_straight_on" - }, - "fields": [ - "except" - ], - "icon": "restriction-only-straight-on" - }, - "type/route_master": { - "geometry": [ - "relation" - ], - "tags": { - "type": "route_master" - }, - "name": "Route Master", - "icon": "route-master", - "fields": [ - "route_master", - "ref", - "operator", - "network" - ] - }, - "type/route": { - "geometry": [ - "relation" - ], - "tags": { - "type": "route" - }, - "name": "Route", - "icon": "route", - "fields": [ - "route", - "ref", - "operator", - "network" - ] - }, - "type/route/bicycle": { - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "bicycle" - }, - "name": "Cycle Route", - "icon": "route-bicycle", - "fields": [ - "ref", - "network_bicycle", - "cycle_network" - ] - }, - "type/route/bus": { - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "bus" - }, - "name": "Bus Route", - "icon": "route-bus", - "fields": [ - "ref", - "operator", - "network" - ] - }, - "type/route/detour": { - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "detour" - }, - "name": "Detour Route", - "icon": "route-detour", - "fields": [ - "ref" - ] - }, - "type/route/ferry": { - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "ferry" - }, - "name": "Ferry Route", - "icon": "route-ferry", - "fields": [ - "ref", - "operator", - "network" - ] - }, - "type/route/foot": { - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "foot" - }, - "name": "Foot Route", - "icon": "route-foot", - "fields": [ - "ref", - "operator", - "network_foot" - ] - }, - "type/route/hiking": { - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "hiking" - }, - "name": "Hiking Route", - "icon": "route-foot", - "fields": [ - "ref", - "operator", - "network_foot" - ] - }, - "type/route/horse": { - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "horse" - }, - "name": "Riding Route", - "icon": "route-horse", - "fields": [ - "ref", - "operator", - "network_horse" - ] - }, - "type/route/pipeline": { - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "pipeline" - }, - "name": "Pipeline Route", - "icon": "route-pipeline", - "fields": [ - "ref", - "operator" - ] - }, - "type/route/power": { - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "power" - }, - "name": "Power Route", - "icon": "route-power", - "fields": [ - "ref", - "operator" - ] - }, - "type/route/road": { - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "road" - }, - "name": "Road Route", - "icon": "route-road", - "fields": [ - "ref", - "network_road" - ] - }, - "type/route/train": { - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "train" - }, - "name": "Train Route", - "icon": "route-train", - "fields": [ - "ref", - "operator", - "network" - ] - }, - "type/route/tram": { - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "tram" - }, - "name": "Tram Route", - "icon": "route-tram", - "fields": [ - "ref", - "operator", - "network" - ] - }, - "type/site": { - "geometry": [ - "relation" - ], - "tags": { - "type": "site" - }, - "name": "Site", - "icon": "relation", - "fields": [ - "site" - ] - }, - "vertex": { - "name": "Other", - "tags": {}, - "geometry": [ - "vertex" - ], - "matchScore": 0.1 - }, - "waterway/boatyard": { - "icon": "harbor", - "fields": [ - "operator" - ], - "geometry": [ - "area", - "vertex", - "point" - ], - "tags": { - "waterway": "boatyard" - }, - "name": "Boatyard" - }, - "waterway/canal": { - "icon": "waterway-canal", - "fields": [ - "width" - ], - "geometry": [ - "line" - ], - "tags": { - "waterway": "canal" - }, - "name": "Canal" - }, - "waterway/dam": { - "icon": "dam", - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "waterway": "dam" - }, - "name": "Dam" - }, - "waterway/ditch": { - "icon": "waterway-ditch", - "fields": [ - "tunnel" - ], - "geometry": [ - "line" - ], - "tags": { - "waterway": "ditch" - }, - "name": "Ditch" - }, - "waterway/dock": { - "icon": "harbor", - "fields": [ - "dock", - "operator" - ], - "geometry": [ - "area", - "vertex", - "point" - ], - "terms": [ - "boat", - "ship", - "vessel", - "marine" - ], - "tags": { - "waterway": "dock" - }, - "name": "Wet Dock / Dry Dock" - }, - "waterway/drain": { - "icon": "waterway-stream", - "fields": [ - "tunnel" - ], - "geometry": [ - "line" - ], - "tags": { - "waterway": "drain" - }, - "name": "Drain" - }, - "waterway/fuel": { - "icon": "fuel", - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "petrol", - "gas", - "diesel", - "boat" - ], - "tags": { - "waterway": "fuel" - }, - "name": "Marine Fuel Station" - }, - "waterway/river": { - "icon": "waterway-river", - "fields": [ - "tunnel", - "width" - ], - "geometry": [ - "line" - ], - "terms": [ - "beck", - "branch", - "brook", - "course", - "creek", - "estuary", - "rill", - "rivulet", - "run", - "runnel", - "stream", - "tributary", - "watercourse" - ], - "tags": { - "waterway": "river" - }, - "name": "River" - }, - "waterway/riverbank": { - "icon": "water", - "geometry": [ - "area" - ], - "tags": { - "waterway": "riverbank" - }, - "name": "Riverbank" - }, - "waterway/sanitary_dump_station": { - "fields": [ - "operator", - "access_toilets", - "fee", - "water_point" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "Boat", - "Watercraft", - "Sanitary", - "Dump Station", - "Pumpout", - "Pump out", - "Elsan", - "CDP", - "CTDP", - "Chemical Toilet" - ], - "tags": { - "waterway": "sanitary_dump_station" - }, - "name": "Marine Toilet Disposal" - }, - "waterway/stream": { - "icon": "waterway-stream", - "fields": [ - "tunnel", - "width" - ], - "geometry": [ - "line" - ], - "terms": [ - "beck", - "branch", - "brook", - "burn", - "course", - "creek", - "current", - "drift", - "flood", - "flow", - "freshet", - "race", - "rill", - "rindle", - "rivulet", - "run", - "runnel", - "rush", - "spate", - "spritz", - "surge", - "tide", - "torrent", - "tributary", - "watercourse" - ], - "tags": { - "waterway": "stream" - }, - "name": "Stream" - }, - "waterway/water_point": { - "icon": "water", - "geometry": [ - "area", - "vertex", - "point" - ], - "tags": { - "waterway": "water_point" - }, - "name": "Marine Drinking Water" - }, - "waterway/weir": { - "icon": "dam", - "geometry": [ - "vertex", - "line" - ], - "tags": { - "waterway": "weir" - }, - "name": "Weir" - }, - "amenity/fuel/76": { - "tags": { - "name": "76", - "amenity": "fuel" - }, - "name": "76", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Neste": { - "tags": { - "name": "Neste", - "amenity": "fuel" - }, - "name": "Neste", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/BP": { - "tags": { - "name": "BP", - "amenity": "fuel" - }, - "name": "BP", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Shell": { - "tags": { - "name": "Shell", - "amenity": "fuel" - }, - "name": "Shell", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Agip": { - "tags": { - "name": "Agip", - "amenity": "fuel" - }, - "name": "Agip", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Migrol": { - "tags": { - "name": "Migrol", - "amenity": "fuel" - }, - "name": "Migrol", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Avia": { - "tags": { - "name": "Avia", - "amenity": "fuel" - }, - "name": "Avia", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Texaco": { - "tags": { - "name": "Texaco", - "amenity": "fuel" - }, - "name": "Texaco", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Total": { - "tags": { - "name": "Total", - "amenity": "fuel" - }, - "name": "Total", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Statoil": { - "tags": { - "name": "Statoil", - "amenity": "fuel" - }, - "name": "Statoil", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Esso": { - "tags": { - "name": "Esso", - "amenity": "fuel" - }, - "name": "Esso", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Jet": { - "tags": { - "name": "Jet", - "amenity": "fuel" - }, - "name": "Jet", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Avanti": { - "tags": { - "name": "Avanti", - "amenity": "fuel" - }, - "name": "Avanti", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/OMV": { - "tags": { - "name": "OMV", - "amenity": "fuel" - }, - "name": "OMV", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Aral": { - "tags": { - "name": "Aral", - "amenity": "fuel" - }, - "name": "Aral", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/JET": { - "tags": { - "name": "JET", - "amenity": "fuel" - }, - "name": "JET", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/United": { - "tags": { - "name": "United", - "amenity": "fuel" - }, - "name": "United", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Mobil": { - "tags": { - "name": "Mobil", - "amenity": "fuel" - }, - "name": "Mobil", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Caltex": { - "tags": { - "name": "Caltex", - "amenity": "fuel" - }, - "name": "Caltex", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Sunoco": { - "tags": { - "name": "Sunoco", - "amenity": "fuel" - }, - "name": "Sunoco", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Q8": { - "tags": { - "name": "Q8", - "amenity": "fuel" - }, - "name": "Q8", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/ARAL": { - "tags": { - "name": "ARAL", - "amenity": "fuel" - }, - "name": "ARAL", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/CEPSA": { - "tags": { - "name": "CEPSA", - "amenity": "fuel" - }, - "name": "CEPSA", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/BFT": { - "tags": { - "name": "BFT", - "amenity": "fuel" - }, - "name": "BFT", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Petron": { - "tags": { - "name": "Petron", - "amenity": "fuel" - }, - "name": "Petron", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Total Access": { - "tags": { - "name": "Total Access", - "amenity": "fuel" - }, - "name": "Total Access", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Elf": { - "tags": { - "name": "Elf", - "amenity": "fuel" - }, - "name": "Elf", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Station Service E. Leclerc": { - "tags": { - "name": "Station Service E. Leclerc", - "amenity": "fuel" - }, - "name": "Station Service E. Leclerc", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Shell Express": { - "tags": { - "name": "Shell Express", - "amenity": "fuel" - }, - "name": "Shell Express", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Hess": { - "tags": { - "name": "Hess", - "amenity": "fuel" - }, - "name": "Hess", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Flying V": { - "tags": { - "name": "Flying V", - "amenity": "fuel" - }, - "name": "Flying V", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/bft": { - "tags": { - "name": "bft", - "amenity": "fuel" - }, - "name": "bft", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Gulf": { - "tags": { - "name": "Gulf", - "amenity": "fuel" - }, - "name": "Gulf", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/PTT": { - "tags": { - "name": "PTT", - "amenity": "fuel" - }, - "name": "PTT", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/St1": { - "tags": { - "name": "St1", - "amenity": "fuel" - }, - "name": "St1", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Teboil": { - "tags": { - "name": "Teboil", - "amenity": "fuel" - }, - "name": "Teboil", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/HEM": { - "tags": { - "name": "HEM", - "amenity": "fuel" - }, - "name": "HEM", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/GALP": { - "tags": { - "name": "GALP", - "amenity": "fuel" - }, - "name": "GALP", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/OK": { - "tags": { - "name": "OK", - "amenity": "fuel" - }, - "name": "OK", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/ÖMV": { - "tags": { - "name": "ÖMV", - "amenity": "fuel" - }, - "name": "ÖMV", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Tinq": { - "tags": { - "name": "Tinq", - "amenity": "fuel" - }, - "name": "Tinq", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/OKQ8": { - "tags": { - "name": "OKQ8", - "amenity": "fuel" - }, - "name": "OKQ8", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Repsol": { - "tags": { - "name": "Repsol", - "amenity": "fuel" - }, - "name": "Repsol", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Westfalen": { - "tags": { - "name": "Westfalen", - "amenity": "fuel" - }, - "name": "Westfalen", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Esso Express": { - "tags": { - "name": "Esso Express", - "amenity": "fuel" - }, - "name": "Esso Express", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Tamoil": { - "tags": { - "name": "Tamoil", - "amenity": "fuel" - }, - "name": "Tamoil", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Engen": { - "tags": { - "name": "Engen", - "amenity": "fuel" - }, - "name": "Engen", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Sasol": { - "tags": { - "name": "Sasol", - "amenity": "fuel" - }, - "name": "Sasol", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Topaz": { - "tags": { - "name": "Topaz", - "amenity": "fuel" - }, - "name": "Topaz", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/LPG": { - "tags": { - "name": "LPG", - "amenity": "fuel" - }, - "name": "LPG", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Orlen": { - "tags": { - "name": "Orlen", - "amenity": "fuel" - }, - "name": "Orlen", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Oilibya": { - "tags": { - "name": "Oilibya", - "amenity": "fuel" - }, - "name": "Oilibya", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Tango": { - "tags": { - "name": "Tango", - "amenity": "fuel" - }, - "name": "Tango", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Star": { - "tags": { - "name": "Star", - "amenity": "fuel" - }, - "name": "Star", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Петрол": { - "tags": { - "name": "Петрол", - "amenity": "fuel" - }, - "name": "Петрол", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Cepsa": { - "tags": { - "name": "Cepsa", - "amenity": "fuel" - }, - "name": "Cepsa", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/OIL!": { - "tags": { - "name": "OIL!", - "amenity": "fuel" - }, - "name": "OIL!", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Ultramar": { - "tags": { - "name": "Ultramar", - "amenity": "fuel" - }, - "name": "Ultramar", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Irving": { - "tags": { - "name": "Irving", - "amenity": "fuel" - }, - "name": "Irving", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Lukoil": { - "tags": { - "name": "Lukoil", - "amenity": "fuel" - }, - "name": "Lukoil", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Petro-Canada": { - "tags": { - "name": "Petro-Canada", - "amenity": "fuel" - }, - "name": "Petro-Canada", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Agrola": { - "tags": { - "name": "Agrola", - "amenity": "fuel" - }, - "name": "Agrola", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Husky": { - "tags": { - "name": "Husky", - "amenity": "fuel" - }, - "name": "Husky", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Slovnaft": { - "tags": { - "name": "Slovnaft", - "amenity": "fuel" - }, - "name": "Slovnaft", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Sheetz": { - "tags": { - "name": "Sheetz", - "amenity": "fuel" - }, - "name": "Sheetz", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Mol": { - "tags": { - "name": "Mol", - "amenity": "fuel" - }, - "name": "Mol", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Petronas": { - "tags": { - "name": "Petronas", - "amenity": "fuel" - }, - "name": "Petronas", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Газпромнефть": { - "tags": { - "name": "Газпромнефть", - "amenity": "fuel" - }, - "name": "Газпромнефть", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Лукойл": { - "tags": { - "name": "Лукойл", - "amenity": "fuel" - }, - "name": "Лукойл", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Elan": { - "tags": { - "name": "Elan", - "amenity": "fuel" - }, - "name": "Elan", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Роснефть": { - "tags": { - "name": "Роснефть", - "amenity": "fuel" - }, - "name": "Роснефть", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Turmöl": { - "tags": { - "name": "Turmöl", - "amenity": "fuel" - }, - "name": "Turmöl", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Neste A24": { - "tags": { - "name": "Neste A24", - "amenity": "fuel" - }, - "name": "Neste A24", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Marathon": { - "tags": { - "name": "Marathon", - "amenity": "fuel" - }, - "name": "Marathon", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Valero": { - "tags": { - "name": "Valero", - "amenity": "fuel" - }, - "name": "Valero", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Eni": { - "tags": { - "name": "Eni", - "amenity": "fuel" - }, - "name": "Eni", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Chevron": { - "tags": { - "name": "Chevron", - "amenity": "fuel" - }, - "name": "Chevron", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/ТНК": { - "tags": { - "name": "ТНК", - "amenity": "fuel" - }, - "name": "ТНК", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/REPSOL": { - "tags": { - "name": "REPSOL", - "amenity": "fuel" - }, - "name": "REPSOL", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/MOL": { - "tags": { - "name": "MOL", - "amenity": "fuel" - }, - "name": "MOL", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Bliska": { - "tags": { - "name": "Bliska", - "amenity": "fuel" - }, - "name": "Bliska", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Api": { - "tags": { - "name": "Api", - "amenity": "fuel" - }, - "name": "Api", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Arco": { - "tags": { - "name": "Arco", - "amenity": "fuel" - }, - "name": "Arco", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Pemex": { - "tags": { - "name": "Pemex", - "amenity": "fuel" - }, - "name": "Pemex", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Exxon": { - "tags": { - "name": "Exxon", - "amenity": "fuel" - }, - "name": "Exxon", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Coles Express": { - "tags": { - "name": "Coles Express", - "amenity": "fuel" - }, - "name": "Coles Express", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Petrom": { - "tags": { - "name": "Petrom", - "amenity": "fuel" - }, - "name": "Petrom", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/PETRONOR": { - "tags": { - "name": "PETRONOR", - "amenity": "fuel" - }, - "name": "PETRONOR", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Rompetrol": { - "tags": { - "name": "Rompetrol", - "amenity": "fuel" - }, - "name": "Rompetrol", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Lotos": { - "tags": { - "name": "Lotos", - "amenity": "fuel" - }, - "name": "Lotos", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/ОМВ": { - "tags": { - "name": "ОМВ", - "amenity": "fuel" - }, - "name": "ОМВ", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/BR": { - "tags": { - "name": "BR", - "amenity": "fuel" - }, - "name": "BR", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Copec": { - "tags": { - "name": "Copec", - "amenity": "fuel" - }, - "name": "Copec", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Petrobras": { - "tags": { - "name": "Petrobras", - "amenity": "fuel" - }, - "name": "Petrobras", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Liberty": { - "tags": { - "name": "Liberty", - "amenity": "fuel" - }, - "name": "Liberty", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/IP": { - "tags": { - "name": "IP", - "amenity": "fuel" - }, - "name": "IP", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Erg": { - "tags": { - "name": "Erg", - "amenity": "fuel" - }, - "name": "Erg", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Eneos": { - "tags": { - "name": "Eneos", - "amenity": "fuel" - }, - "name": "Eneos", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Citgo": { - "tags": { - "name": "Citgo", - "amenity": "fuel" - }, - "name": "Citgo", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Metano": { - "tags": { - "name": "Metano", - "amenity": "fuel" - }, - "name": "Metano", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Сургутнефтегаз": { - "tags": { - "name": "Сургутнефтегаз", - "amenity": "fuel" - }, - "name": "Сургутнефтегаз", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/EKO": { - "tags": { - "name": "EKO", - "amenity": "fuel" - }, - "name": "EKO", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Eko": { - "tags": { - "name": "Eko", - "amenity": "fuel" - }, - "name": "Eko", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Indipend.": { - "tags": { - "name": "Indipend.", - "amenity": "fuel" - }, - "name": "Indipend.", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/IES": { - "tags": { - "name": "IES", - "amenity": "fuel" - }, - "name": "IES", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/TotalErg": { - "tags": { - "name": "TotalErg", - "amenity": "fuel" - }, - "name": "TotalErg", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Cenex": { - "tags": { - "name": "Cenex", - "amenity": "fuel" - }, - "name": "Cenex", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/ПТК": { - "tags": { - "name": "ПТК", - "amenity": "fuel" - }, - "name": "ПТК", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/HP": { - "tags": { - "name": "HP", - "amenity": "fuel" - }, - "name": "HP", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Phillips 66": { - "tags": { - "name": "Phillips 66", - "amenity": "fuel" - }, - "name": "Phillips 66", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/CARREFOUR": { - "tags": { - "name": "CARREFOUR", - "amenity": "fuel" - }, - "name": "CARREFOUR", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/ERG": { - "tags": { - "name": "ERG", - "amenity": "fuel" - }, - "name": "ERG", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Speedway": { - "tags": { - "name": "Speedway", - "amenity": "fuel" - }, - "name": "Speedway", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Benzina": { - "tags": { - "name": "Benzina", - "amenity": "fuel" - }, - "name": "Benzina", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Татнефть": { - "tags": { - "name": "Татнефть", - "amenity": "fuel" - }, - "name": "Татнефть", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Terpel": { - "tags": { - "name": "Terpel", - "amenity": "fuel" - }, - "name": "Terpel", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/WOG": { - "tags": { - "name": "WOG", - "amenity": "fuel" - }, - "name": "WOG", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Seaoil": { - "tags": { - "name": "Seaoil", - "amenity": "fuel" - }, - "name": "Seaoil", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/АЗС": { - "tags": { - "name": "АЗС", - "amenity": "fuel" - }, - "name": "АЗС", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Kwik Trip": { - "tags": { - "name": "Kwik Trip", - "amenity": "fuel" - }, - "name": "Kwik Trip", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Pertamina": { - "tags": { - "name": "Pertamina", - "amenity": "fuel" - }, - "name": "Pertamina", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/COSMO": { - "tags": { - "name": "COSMO", - "amenity": "fuel" - }, - "name": "COSMO", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Z": { - "tags": { - "name": "Z", - "amenity": "fuel" - }, - "name": "Z", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Indian Oil": { - "tags": { - "name": "Indian Oil", - "amenity": "fuel" - }, - "name": "Indian Oil", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/АГЗС": { - "tags": { - "name": "АГЗС", - "amenity": "fuel" - }, - "name": "АГЗС", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/INA": { - "tags": { - "name": "INA", - "amenity": "fuel" - }, - "name": "INA", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/JOMO": { - "tags": { - "name": "JOMO", - "amenity": "fuel" - }, - "name": "JOMO", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Holiday": { - "tags": { - "name": "Holiday", - "amenity": "fuel" - }, - "name": "Holiday", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/YPF": { - "tags": { - "name": "YPF", - "amenity": "fuel" - }, - "name": "YPF", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/IDEMITSU": { - "tags": { - "name": "IDEMITSU", - "amenity": "fuel" - }, - "name": "IDEMITSU", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/ENEOS": { - "tags": { - "name": "ENEOS", - "amenity": "fuel" - }, - "name": "ENEOS", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Bharat Petroleum": { - "tags": { - "name": "Bharat Petroleum", - "amenity": "fuel" - }, - "name": "Bharat Petroleum", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/CAMPSA": { - "tags": { - "name": "CAMPSA", - "amenity": "fuel" - }, - "name": "CAMPSA", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Casey's General Store": { - "tags": { - "name": "Casey's General Store", - "amenity": "fuel" - }, - "name": "Casey's General Store", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Башнефть": { - "tags": { - "name": "Башнефть", - "amenity": "fuel" - }, - "name": "Башнефть", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Kangaroo": { - "tags": { - "name": "Kangaroo", - "amenity": "fuel" - }, - "name": "Kangaroo", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/コスモ石油 (COSMO)": { - "tags": { - "name": "コスモ石油 (COSMO)", - "amenity": "fuel" - }, - "name": "コスモ石油 (COSMO)", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/MEROIL": { - "tags": { - "name": "MEROIL", - "amenity": "fuel" - }, - "name": "MEROIL", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/1-2-3": { - "tags": { - "name": "1-2-3", - "amenity": "fuel" - }, - "name": "1-2-3", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/出光": { - "tags": { - "name": "出光", - "name:en": "IDEMITSU", - "amenity": "fuel" - }, - "name": "出光", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/НК Альянс": { - "tags": { - "name": "НК Альянс", - "amenity": "fuel" - }, - "name": "НК Альянс", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Sinclair": { - "tags": { - "name": "Sinclair", - "amenity": "fuel" - }, - "name": "Sinclair", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Conoco": { - "tags": { - "name": "Conoco", - "amenity": "fuel" - }, - "name": "Conoco", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/SPBU": { - "tags": { - "name": "SPBU", - "amenity": "fuel" - }, - "name": "SPBU", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Макпетрол": { - "tags": { - "name": "Макпетрол", - "amenity": "fuel" - }, - "name": "Макпетрол", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Posto Ipiranga": { - "tags": { - "name": "Posto Ipiranga", - "amenity": "fuel" - }, - "name": "Posto Ipiranga", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Posto Shell": { - "tags": { - "name": "Posto Shell", - "amenity": "fuel" - }, - "name": "Posto Shell", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Phoenix": { - "tags": { - "name": "Phoenix", - "amenity": "fuel" - }, - "name": "Phoenix", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Ipiranga": { - "tags": { - "name": "Ipiranga", - "amenity": "fuel" - }, - "name": "Ipiranga", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/OKKO": { - "tags": { - "name": "OKKO", - "amenity": "fuel" - }, - "name": "OKKO", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/ОККО": { - "tags": { - "name": "ОККО", - "amenity": "fuel" - }, - "name": "ОККО", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/บางจาก": { - "tags": { - "name": "บางจาก", - "amenity": "fuel" - }, - "name": "บางจาก", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/QuikTrip": { - "tags": { - "name": "QuikTrip", - "amenity": "fuel" - }, - "name": "QuikTrip", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Posto BR": { - "tags": { - "name": "Posto BR", - "amenity": "fuel" - }, - "name": "Posto BR", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/ป ต ท": { - "tags": { - "name": "ป ต ท", - "amenity": "fuel" - }, - "name": "ป ต ท", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/ปตท": { - "tags": { - "name": "ปตท", - "amenity": "fuel" - }, - "name": "ปตท", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/ANP": { - "tags": { - "name": "ANP", - "amenity": "fuel" - }, - "name": "ANP", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Kum & Go": { - "tags": { - "name": "Kum & Go", - "amenity": "fuel" - }, - "name": "Kum & Go", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Petrolimex": { - "tags": { - "name": "Petrolimex", - "amenity": "fuel" - }, - "name": "Petrolimex", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Sokimex": { - "tags": { - "name": "Sokimex", - "amenity": "fuel" - }, - "name": "Sokimex", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Tela": { - "tags": { - "name": "Tela", - "amenity": "fuel" - }, - "name": "Tela", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Posto": { - "tags": { - "name": "Posto", - "amenity": "fuel" - }, - "name": "Posto", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Укрнафта": { - "tags": { - "name": "Укрнафта", - "amenity": "fuel" - }, - "name": "Укрнафта", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Татнефтепродукт": { - "tags": { - "name": "Татнефтепродукт", - "amenity": "fuel" - }, - "name": "Татнефтепродукт", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Afriquia": { - "tags": { - "name": "Afriquia", - "amenity": "fuel" - }, - "name": "Afriquia", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/Murphy USA": { - "tags": { - "name": "Murphy USA", - "amenity": "fuel" - }, - "name": "Murphy USA", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/昭和シェル (Showa-shell)": { - "tags": { - "name": "昭和シェル (Showa-shell)", - "amenity": "fuel" - }, - "name": "昭和シェル (Showa-shell)", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/エネオス": { - "tags": { - "name": "エネオス", - "amenity": "fuel" - }, - "name": "エネオス", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/fuel/CNG": { - "tags": { - "name": "CNG", - "amenity": "fuel" - }, - "name": "CNG", - "icon": "fuel", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "opening_hours", - "fuel_multi" - ], - "suggestion": true - }, - "amenity/pub/Kings Arms": { - "tags": { - "name": "Kings Arms", - "amenity": "pub" - }, - "name": "Kings Arms", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Ship": { - "tags": { - "name": "The Ship", - "amenity": "pub" - }, - "name": "The Ship", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The White Horse": { - "tags": { - "name": "The White Horse", - "amenity": "pub" - }, - "name": "The White Horse", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The White Hart": { - "tags": { - "name": "The White Hart", - "amenity": "pub" - }, - "name": "The White Hart", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/Royal Oak": { - "tags": { - "name": "Royal Oak", - "amenity": "pub" - }, - "name": "Royal Oak", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Red Lion": { - "tags": { - "name": "The Red Lion", - "amenity": "pub" - }, - "name": "The Red Lion", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Kings Arms": { - "tags": { - "name": "The Kings Arms", - "amenity": "pub" - }, - "name": "The Kings Arms", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Star": { - "tags": { - "name": "The Star", - "amenity": "pub" - }, - "name": "The Star", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Anchor": { - "tags": { - "name": "The Anchor", - "amenity": "pub" - }, - "name": "The Anchor", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Cross Keys": { - "tags": { - "name": "The Cross Keys", - "amenity": "pub" - }, - "name": "The Cross Keys", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Wheatsheaf": { - "tags": { - "name": "The Wheatsheaf", - "amenity": "pub" - }, - "name": "The Wheatsheaf", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Crown Inn": { - "tags": { - "name": "The Crown Inn", - "amenity": "pub" - }, - "name": "The Crown Inn", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Kings Head": { - "tags": { - "name": "The Kings Head", - "amenity": "pub" - }, - "name": "The Kings Head", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Castle": { - "tags": { - "name": "The Castle", - "amenity": "pub" - }, - "name": "The Castle", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Railway": { - "tags": { - "name": "The Railway", - "amenity": "pub" - }, - "name": "The Railway", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The White Lion": { - "tags": { - "name": "The White Lion", - "amenity": "pub" - }, - "name": "The White Lion", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Bell": { - "tags": { - "name": "The Bell", - "amenity": "pub" - }, - "name": "The Bell", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Bull": { - "tags": { - "name": "The Bull", - "amenity": "pub" - }, - "name": "The Bull", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Plough": { - "tags": { - "name": "The Plough", - "amenity": "pub" - }, - "name": "The Plough", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The George": { - "tags": { - "name": "The George", - "amenity": "pub" - }, - "name": "The George", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Royal Oak": { - "tags": { - "name": "The Royal Oak", - "amenity": "pub" - }, - "name": "The Royal Oak", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Fox": { - "tags": { - "name": "The Fox", - "amenity": "pub" - }, - "name": "The Fox", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/Prince of Wales": { - "tags": { - "name": "Prince of Wales", - "amenity": "pub" - }, - "name": "Prince of Wales", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Rising Sun": { - "tags": { - "name": "The Rising Sun", - "amenity": "pub" - }, - "name": "The Rising Sun", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Prince of Wales": { - "tags": { - "name": "The Prince of Wales", - "amenity": "pub" - }, - "name": "The Prince of Wales", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Crown": { - "tags": { - "name": "The Crown", - "amenity": "pub" - }, - "name": "The Crown", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Chequers": { - "tags": { - "name": "The Chequers", - "amenity": "pub" - }, - "name": "The Chequers", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Swan": { - "tags": { - "name": "The Swan", - "amenity": "pub" - }, - "name": "The Swan", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/Rose and Crown": { - "tags": { - "name": "Rose and Crown", - "amenity": "pub" - }, - "name": "Rose and Crown", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Victoria": { - "tags": { - "name": "The Victoria", - "amenity": "pub" - }, - "name": "The Victoria", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/New Inn": { - "tags": { - "name": "New Inn", - "amenity": "pub" - }, - "name": "New Inn", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/Royal Hotel": { - "tags": { - "name": "Royal Hotel", - "amenity": "pub" - }, - "name": "Royal Hotel", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/Red Lion": { - "tags": { - "name": "Red Lion", - "amenity": "pub" - }, - "name": "Red Lion", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/Cross Keys": { - "tags": { - "name": "Cross Keys", - "amenity": "pub" - }, - "name": "Cross Keys", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Greyhound": { - "tags": { - "name": "The Greyhound", - "amenity": "pub" - }, - "name": "The Greyhound", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Black Horse": { - "tags": { - "name": "The Black Horse", - "amenity": "pub" - }, - "name": "The Black Horse", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The New Inn": { - "tags": { - "name": "The New Inn", - "amenity": "pub" - }, - "name": "The New Inn", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/Kings Head": { - "tags": { - "name": "Kings Head", - "amenity": "pub" - }, - "name": "Kings Head", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Albion": { - "tags": { - "name": "The Albion", - "amenity": "pub" - }, - "name": "The Albion", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Angel": { - "tags": { - "name": "The Angel", - "amenity": "pub" - }, - "name": "The Angel", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Queens Head": { - "tags": { - "name": "The Queens Head", - "amenity": "pub" - }, - "name": "The Queens Head", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/The Ship Inn": { - "tags": { - "name": "The Ship Inn", - "amenity": "pub" - }, - "name": "The Ship Inn", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/Rose & Crown": { - "tags": { - "name": "Rose & Crown", - "amenity": "pub" - }, - "name": "Rose & Crown", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/Queens Head": { - "tags": { - "name": "Queens Head", - "amenity": "pub" - }, - "name": "Queens Head", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/pub/Irish Pub": { - "tags": { - "name": "Irish Pub", - "amenity": "pub" - }, - "name": "Irish Pub", - "icon": "beer", - "geometry": [ - "point", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Quick": { - "tags": { - "name": "Quick", - "amenity": "fast_food" - }, - "name": "Quick", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/McDonald's": { - "tags": { - "name": "McDonald's", - "cuisine": "burger", - "amenity": "fast_food" - }, - "name": "McDonald's", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Subway": { - "tags": { - "name": "Subway", - "cuisine": "sandwich", - "amenity": "fast_food" - }, - "name": "Subway", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Burger King": { - "tags": { - "name": "Burger King", - "cuisine": "burger", - "amenity": "fast_food" - }, - "name": "Burger King", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Ali Baba": { - "tags": { - "name": "Ali Baba", - "amenity": "fast_food" - }, - "name": "Ali Baba", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Hungry Jacks": { - "tags": { - "name": "Hungry Jacks", - "cuisine": "burger", - "amenity": "fast_food" - }, - "name": "Hungry Jacks", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Red Rooster": { - "tags": { - "name": "Red Rooster", - "amenity": "fast_food" - }, - "name": "Red Rooster", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/KFC": { - "tags": { - "name": "KFC", - "cuisine": "chicken", - "amenity": "fast_food" - }, - "name": "KFC", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Domino's Pizza": { - "tags": { - "name": "Domino's Pizza", - "cuisine": "pizza", - "amenity": "fast_food" - }, - "name": "Domino's Pizza", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Chowking": { - "tags": { - "name": "Chowking", - "amenity": "fast_food" - }, - "name": "Chowking", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Jollibee": { - "tags": { - "name": "Jollibee", - "amenity": "fast_food" - }, - "name": "Jollibee", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Hesburger": { - "tags": { - "name": "Hesburger", - "amenity": "fast_food" - }, - "name": "Hesburger", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/肯德基": { - "tags": { - "name": "肯德基", - "amenity": "fast_food" - }, - "name": "肯德基", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Wendy's": { - "tags": { - "name": "Wendy's", - "cuisine": "burger", - "amenity": "fast_food" - }, - "name": "Wendy's", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Tim Hortons": { - "tags": { - "name": "Tim Hortons", - "amenity": "fast_food" - }, - "name": "Tim Hortons", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Steers": { - "tags": { - "name": "Steers", - "amenity": "fast_food" - }, - "name": "Steers", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Hardee's": { - "tags": { - "name": "Hardee's", - "cuisine": "burger", - "amenity": "fast_food" - }, - "name": "Hardee's", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Arby's": { - "tags": { - "name": "Arby's", - "amenity": "fast_food" - }, - "name": "Arby's", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/A&W": { - "tags": { - "name": "A&W", - "amenity": "fast_food" - }, - "name": "A&W", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Dairy Queen": { - "tags": { - "name": "Dairy Queen", - "amenity": "fast_food" - }, - "name": "Dairy Queen", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Hallo Pizza": { - "tags": { - "name": "Hallo Pizza", - "amenity": "fast_food" - }, - "name": "Hallo Pizza", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Fish & Chips": { - "tags": { - "name": "Fish & Chips", - "amenity": "fast_food" - }, - "name": "Fish & Chips", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Harvey's": { - "tags": { - "name": "Harvey's", - "amenity": "fast_food" - }, - "name": "Harvey's", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/麥當勞": { - "tags": { - "name": "麥當勞", - "amenity": "fast_food" - }, - "name": "麥當勞", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Pizza Pizza": { - "tags": { - "name": "Pizza Pizza", - "amenity": "fast_food" - }, - "name": "Pizza Pizza", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Kotipizza": { - "tags": { - "name": "Kotipizza", - "amenity": "fast_food" - }, - "name": "Kotipizza", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Jack in the Box": { - "tags": { - "name": "Jack in the Box", - "cuisine": "burger", - "amenity": "fast_food" - }, - "name": "Jack in the Box", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Istanbul": { - "tags": { - "name": "Istanbul", - "amenity": "fast_food" - }, - "name": "Istanbul", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Kochlöffel": { - "tags": { - "name": "Kochlöffel", - "amenity": "fast_food" - }, - "name": "Kochlöffel", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Döner": { - "tags": { - "name": "Döner", - "amenity": "fast_food" - }, - "name": "Döner", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Telepizza": { - "tags": { - "name": "Telepizza", - "amenity": "fast_food" - }, - "name": "Telepizza", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Sibylla": { - "tags": { - "name": "Sibylla", - "amenity": "fast_food" - }, - "name": "Sibylla", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Carl's Jr.": { - "tags": { - "name": "Carl's Jr.", - "cuisine": "burger", - "amenity": "fast_food" - }, - "name": "Carl's Jr.", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Quiznos": { - "tags": { - "name": "Quiznos", - "cuisine": "sandwich", - "amenity": "fast_food" - }, - "name": "Quiznos", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Wimpy": { - "tags": { - "name": "Wimpy", - "amenity": "fast_food" - }, - "name": "Wimpy", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Sonic": { - "tags": { - "name": "Sonic", - "cuisine": "burger", - "amenity": "fast_food" - }, - "name": "Sonic", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Taco Bell": { - "tags": { - "name": "Taco Bell", - "cuisine": "mexican", - "amenity": "fast_food" - }, - "name": "Taco Bell", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Pizza Nova": { - "tags": { - "name": "Pizza Nova", - "amenity": "fast_food" - }, - "name": "Pizza Nova", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Papa John's": { - "tags": { - "name": "Papa John's", - "cuisine": "pizza", - "amenity": "fast_food" - }, - "name": "Papa John's", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Nordsee": { - "tags": { - "name": "Nordsee", - "amenity": "fast_food" - }, - "name": "Nordsee", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Mr. Sub": { - "tags": { - "name": "Mr. Sub", - "amenity": "fast_food" - }, - "name": "Mr. Sub", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Макдоналдс": { - "tags": { - "name": "Макдоналдс", - "name:en": "McDonald's", - "amenity": "fast_food" - }, - "name": "Макдоналдс", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Asia Imbiss": { - "tags": { - "name": "Asia Imbiss", - "amenity": "fast_food" - }, - "name": "Asia Imbiss", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Chipotle": { - "tags": { - "name": "Chipotle", - "cuisine": "mexican", - "amenity": "fast_food" - }, - "name": "Chipotle", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/マクドナルド": { - "tags": { - "name": "マクドナルド", - "name:en": "McDonald's", - "cuisine": "burger", - "amenity": "fast_food" - }, - "name": "マクドナルド", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/In-N-Out Burger": { - "tags": { - "name": "In-N-Out Burger", - "amenity": "fast_food" - }, - "name": "In-N-Out Burger", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Jimmy John's": { - "tags": { - "name": "Jimmy John's", - "amenity": "fast_food" - }, - "name": "Jimmy John's", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Jamba Juice": { - "tags": { - "name": "Jamba Juice", - "amenity": "fast_food" - }, - "name": "Jamba Juice", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Робин Сдобин": { - "tags": { - "name": "Робин Сдобин", - "amenity": "fast_food" - }, - "name": "Робин Сдобин", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Baskin Robbins": { - "tags": { - "name": "Baskin Robbins", - "amenity": "fast_food" - }, - "name": "Baskin Robbins", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/ケンタッキーフライドチキン": { - "tags": { - "name": "ケンタッキーフライドチキン", - "name:en": "KFC", - "cuisine": "chicken", - "amenity": "fast_food" - }, - "name": "ケンタッキーフライドチキン", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/吉野家": { - "tags": { - "name": "吉野家", - "amenity": "fast_food" - }, - "name": "吉野家", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Taco Time": { - "tags": { - "name": "Taco Time", - "amenity": "fast_food" - }, - "name": "Taco Time", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/松屋": { - "tags": { - "name": "松屋", - "name:en": "Matsuya", - "amenity": "fast_food" - }, - "name": "松屋", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Little Caesars": { - "tags": { - "name": "Little Caesars", - "amenity": "fast_food" - }, - "name": "Little Caesars", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/El Pollo Loco": { - "tags": { - "name": "El Pollo Loco", - "amenity": "fast_food" - }, - "name": "El Pollo Loco", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Del Taco": { - "tags": { - "name": "Del Taco", - "amenity": "fast_food" - }, - "name": "Del Taco", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/White Castle": { - "tags": { - "name": "White Castle", - "amenity": "fast_food" - }, - "name": "White Castle", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Boston Market": { - "tags": { - "name": "Boston Market", - "amenity": "fast_food" - }, - "name": "Boston Market", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Chick-fil-A": { - "tags": { - "name": "Chick-fil-A", - "cuisine": "chicken", - "amenity": "fast_food" - }, - "name": "Chick-fil-A", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Panda Express": { - "tags": { - "name": "Panda Express", - "cuisine": "chinese", - "amenity": "fast_food" - }, - "name": "Panda Express", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Whataburger": { - "tags": { - "name": "Whataburger", - "amenity": "fast_food" - }, - "name": "Whataburger", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Taco John's": { - "tags": { - "name": "Taco John's", - "amenity": "fast_food" - }, - "name": "Taco John's", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Теремок": { - "tags": { - "name": "Теремок", - "amenity": "fast_food" - }, - "name": "Теремок", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Culver's": { - "tags": { - "name": "Culver's", - "amenity": "fast_food" - }, - "name": "Culver's", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Five Guys": { - "tags": { - "name": "Five Guys", - "amenity": "fast_food" - }, - "name": "Five Guys", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Church's Chicken": { - "tags": { - "name": "Church's Chicken", - "amenity": "fast_food" - }, - "name": "Church's Chicken", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Popeye's": { - "tags": { - "name": "Popeye's", - "cuisine": "chicken", - "amenity": "fast_food" - }, - "name": "Popeye's", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Long John Silver's": { - "tags": { - "name": "Long John Silver's", - "amenity": "fast_food" - }, - "name": "Long John Silver's", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Pollo Campero": { - "tags": { - "name": "Pollo Campero", - "amenity": "fast_food" - }, - "name": "Pollo Campero", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Zaxby's": { - "tags": { - "name": "Zaxby's", - "amenity": "fast_food" - }, - "name": "Zaxby's", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/すき家": { - "tags": { - "name": "すき家", - "name:en": "SUKIYA", - "amenity": "fast_food" - }, - "name": "すき家", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/モスバーガー": { - "tags": { - "name": "モスバーガー", - "name:en": "MOS BURGER", - "amenity": "fast_food" - }, - "name": "モスバーガー", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/Русский Аппетит": { - "tags": { - "name": "Русский Аппетит", - "amenity": "fast_food" - }, - "name": "Русский Аппетит", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/fast_food/なか卯": { - "tags": { - "name": "なか卯", - "amenity": "fast_food" - }, - "name": "なか卯", - "icon": "fast-food", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "takeaway", - "delivery", - "drive_through", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Pizza Hut": { - "tags": { - "name": "Pizza Hut", - "cuisine": "pizza", - "amenity": "restaurant" - }, - "name": "Pizza Hut", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Little Chef": { - "tags": { - "name": "Little Chef", - "amenity": "restaurant" - }, - "name": "Little Chef", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Adler": { - "tags": { - "name": "Adler", - "amenity": "restaurant" - }, - "name": "Adler", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Zur Krone": { - "tags": { - "name": "Zur Krone", - "amenity": "restaurant" - }, - "name": "Zur Krone", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Deutsches Haus": { - "tags": { - "name": "Deutsches Haus", - "amenity": "restaurant" - }, - "name": "Deutsches Haus", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Krone": { - "tags": { - "name": "Krone", - "amenity": "restaurant" - }, - "name": "Krone", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Akropolis": { - "tags": { - "name": "Akropolis", - "amenity": "restaurant" - }, - "name": "Akropolis", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Schützenhaus": { - "tags": { - "name": "Schützenhaus", - "amenity": "restaurant" - }, - "name": "Schützenhaus", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Kreuz": { - "tags": { - "name": "Kreuz", - "amenity": "restaurant" - }, - "name": "Kreuz", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Waldschänke": { - "tags": { - "name": "Waldschänke", - "amenity": "restaurant" - }, - "name": "Waldschänke", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/La Piazza": { - "tags": { - "name": "La Piazza", - "amenity": "restaurant" - }, - "name": "La Piazza", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Lamm": { - "tags": { - "name": "Lamm", - "amenity": "restaurant" - }, - "name": "Lamm", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Zur Sonne": { - "tags": { - "name": "Zur Sonne", - "amenity": "restaurant" - }, - "name": "Zur Sonne", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Zur Linde": { - "tags": { - "name": "Zur Linde", - "amenity": "restaurant" - }, - "name": "Zur Linde", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Poseidon": { - "tags": { - "name": "Poseidon", - "amenity": "restaurant" - }, - "name": "Poseidon", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Shanghai": { - "tags": { - "name": "Shanghai", - "amenity": "restaurant" - }, - "name": "Shanghai", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Red Lobster": { - "tags": { - "name": "Red Lobster", - "amenity": "restaurant" - }, - "name": "Red Lobster", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Zum Löwen": { - "tags": { - "name": "Zum Löwen", - "amenity": "restaurant" - }, - "name": "Zum Löwen", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Swiss Chalet": { - "tags": { - "name": "Swiss Chalet", - "amenity": "restaurant" - }, - "name": "Swiss Chalet", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Olympia": { - "tags": { - "name": "Olympia", - "amenity": "restaurant" - }, - "name": "Olympia", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Wagamama": { - "tags": { - "name": "Wagamama", - "amenity": "restaurant" - }, - "name": "Wagamama", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Frankie & Benny's": { - "tags": { - "name": "Frankie & Benny's", - "amenity": "restaurant" - }, - "name": "Frankie & Benny's", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Hooters": { - "tags": { - "name": "Hooters", - "amenity": "restaurant" - }, - "name": "Hooters", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Sternen": { - "tags": { - "name": "Sternen", - "amenity": "restaurant" - }, - "name": "Sternen", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Hirschen": { - "tags": { - "name": "Hirschen", - "amenity": "restaurant" - }, - "name": "Hirschen", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Denny's": { - "tags": { - "name": "Denny's", - "amenity": "restaurant" - }, - "name": "Denny's", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Athen": { - "tags": { - "name": "Athen", - "amenity": "restaurant" - }, - "name": "Athen", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Sonne": { - "tags": { - "name": "Sonne", - "amenity": "restaurant" - }, - "name": "Sonne", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Hirsch": { - "tags": { - "name": "Hirsch", - "amenity": "restaurant" - }, - "name": "Hirsch", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Ratskeller": { - "tags": { - "name": "Ratskeller", - "amenity": "restaurant" - }, - "name": "Ratskeller", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/La Cantina": { - "tags": { - "name": "La Cantina", - "amenity": "restaurant" - }, - "name": "La Cantina", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Gasthaus Krone": { - "tags": { - "name": "Gasthaus Krone", - "amenity": "restaurant" - }, - "name": "Gasthaus Krone", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/El Greco": { - "tags": { - "name": "El Greco", - "amenity": "restaurant" - }, - "name": "El Greco", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Gasthof zur Post": { - "tags": { - "name": "Gasthof zur Post", - "amenity": "restaurant" - }, - "name": "Gasthof zur Post", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Nando's": { - "tags": { - "name": "Nando's", - "amenity": "restaurant" - }, - "name": "Nando's", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Löwen": { - "tags": { - "name": "Löwen", - "amenity": "restaurant" - }, - "name": "Löwen", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/La Pataterie": { - "tags": { - "name": "La Pataterie", - "amenity": "restaurant" - }, - "name": "La Pataterie", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Bella Napoli": { - "tags": { - "name": "Bella Napoli", - "amenity": "restaurant" - }, - "name": "Bella Napoli", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Pizza Express": { - "tags": { - "name": "Pizza Express", - "amenity": "restaurant" - }, - "name": "Pizza Express", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Mandarin": { - "tags": { - "name": "Mandarin", - "amenity": "restaurant" - }, - "name": "Mandarin", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Hong Kong": { - "tags": { - "name": "Hong Kong", - "amenity": "restaurant" - }, - "name": "Hong Kong", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Zizzi": { - "tags": { - "name": "Zizzi", - "amenity": "restaurant" - }, - "name": "Zizzi", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Cracker Barrel": { - "tags": { - "name": "Cracker Barrel", - "amenity": "restaurant" - }, - "name": "Cracker Barrel", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Rhodos": { - "tags": { - "name": "Rhodos", - "amenity": "restaurant" - }, - "name": "Rhodos", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Lindenhof": { - "tags": { - "name": "Lindenhof", - "amenity": "restaurant" - }, - "name": "Lindenhof", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Milano": { - "tags": { - "name": "Milano", - "amenity": "restaurant" - }, - "name": "Milano", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Dolce Vita": { - "tags": { - "name": "Dolce Vita", - "amenity": "restaurant" - }, - "name": "Dolce Vita", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Kirchenwirt": { - "tags": { - "name": "Kirchenwirt", - "amenity": "restaurant" - }, - "name": "Kirchenwirt", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Kantine": { - "tags": { - "name": "Kantine", - "amenity": "restaurant" - }, - "name": "Kantine", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Ochsen": { - "tags": { - "name": "Ochsen", - "amenity": "restaurant" - }, - "name": "Ochsen", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Spur": { - "tags": { - "name": "Spur", - "amenity": "restaurant" - }, - "name": "Spur", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Mykonos": { - "tags": { - "name": "Mykonos", - "amenity": "restaurant" - }, - "name": "Mykonos", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Lotus": { - "tags": { - "name": "Lotus", - "amenity": "restaurant" - }, - "name": "Lotus", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Applebee's": { - "tags": { - "name": "Applebee's", - "amenity": "restaurant" - }, - "name": "Applebee's", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Flunch": { - "tags": { - "name": "Flunch", - "amenity": "restaurant" - }, - "name": "Flunch", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Zur Post": { - "tags": { - "name": "Zur Post", - "amenity": "restaurant" - }, - "name": "Zur Post", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/China Town": { - "tags": { - "name": "China Town", - "amenity": "restaurant" - }, - "name": "China Town", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/La Dolce Vita": { - "tags": { - "name": "La Dolce Vita", - "amenity": "restaurant" - }, - "name": "La Dolce Vita", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Waffle House": { - "tags": { - "name": "Waffle House", - "amenity": "restaurant" - }, - "name": "Waffle House", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Delphi": { - "tags": { - "name": "Delphi", - "amenity": "restaurant" - }, - "name": "Delphi", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Linde": { - "tags": { - "name": "Linde", - "amenity": "restaurant" - }, - "name": "Linde", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Outback Steakhouse": { - "tags": { - "name": "Outback Steakhouse", - "amenity": "restaurant" - }, - "name": "Outback Steakhouse", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Dionysos": { - "tags": { - "name": "Dionysos", - "amenity": "restaurant" - }, - "name": "Dionysos", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Kelsey's": { - "tags": { - "name": "Kelsey's", - "amenity": "restaurant" - }, - "name": "Kelsey's", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Boston Pizza": { - "tags": { - "name": "Boston Pizza", - "amenity": "restaurant" - }, - "name": "Boston Pizza", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Bella Italia": { - "tags": { - "name": "Bella Italia", - "amenity": "restaurant" - }, - "name": "Bella Italia", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Sizzler": { - "tags": { - "name": "Sizzler", - "amenity": "restaurant" - }, - "name": "Sizzler", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Grüner Baum": { - "tags": { - "name": "Grüner Baum", - "amenity": "restaurant" - }, - "name": "Grüner Baum", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Taj Mahal": { - "tags": { - "name": "Taj Mahal", - "amenity": "restaurant" - }, - "name": "Taj Mahal", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Rössli": { - "tags": { - "name": "Rössli", - "amenity": "restaurant" - }, - "name": "Rössli", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Traube": { - "tags": { - "name": "Traube", - "amenity": "restaurant" - }, - "name": "Traube", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Adria": { - "tags": { - "name": "Adria", - "amenity": "restaurant" - }, - "name": "Adria", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Red Robin": { - "tags": { - "name": "Red Robin", - "amenity": "restaurant" - }, - "name": "Red Robin", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Roma": { - "tags": { - "name": "Roma", - "amenity": "restaurant" - }, - "name": "Roma", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/San Marco": { - "tags": { - "name": "San Marco", - "amenity": "restaurant" - }, - "name": "San Marco", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Hellas": { - "tags": { - "name": "Hellas", - "amenity": "restaurant" - }, - "name": "Hellas", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/La Perla": { - "tags": { - "name": "La Perla", - "amenity": "restaurant" - }, - "name": "La Perla", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Vips": { - "tags": { - "name": "Vips", - "amenity": "restaurant" - }, - "name": "Vips", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Panera Bread": { - "tags": { - "name": "Panera Bread", - "amenity": "restaurant" - }, - "name": "Panera Bread", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Da Vinci": { - "tags": { - "name": "Da Vinci", - "amenity": "restaurant" - }, - "name": "Da Vinci", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Hippopotamus": { - "tags": { - "name": "Hippopotamus", - "amenity": "restaurant" - }, - "name": "Hippopotamus", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Prezzo": { - "tags": { - "name": "Prezzo", - "amenity": "restaurant" - }, - "name": "Prezzo", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Courtepaille": { - "tags": { - "name": "Courtepaille", - "amenity": "restaurant" - }, - "name": "Courtepaille", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Hard Rock Cafe": { - "tags": { - "name": "Hard Rock Cafe", - "amenity": "restaurant" - }, - "name": "Hard Rock Cafe", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Panorama": { - "tags": { - "name": "Panorama", - "amenity": "restaurant" - }, - "name": "Panorama", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/デニーズ": { - "tags": { - "name": "デニーズ", - "amenity": "restaurant" - }, - "name": "デニーズ", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Sportheim": { - "tags": { - "name": "Sportheim", - "amenity": "restaurant" - }, - "name": "Sportheim", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/餃子の王将": { - "tags": { - "name": "餃子の王将", - "amenity": "restaurant" - }, - "name": "餃子の王将", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Bären": { - "tags": { - "name": "Bären", - "amenity": "restaurant" - }, - "name": "Bären", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Alte Post": { - "tags": { - "name": "Alte Post", - "amenity": "restaurant" - }, - "name": "Alte Post", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Pizzeria Roma": { - "tags": { - "name": "Pizzeria Roma", - "amenity": "restaurant" - }, - "name": "Pizzeria Roma", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/China Garden": { - "tags": { - "name": "China Garden", - "amenity": "restaurant" - }, - "name": "China Garden", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Vapiano": { - "tags": { - "name": "Vapiano", - "amenity": "restaurant" - }, - "name": "Vapiano", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Mamma Mia": { - "tags": { - "name": "Mamma Mia", - "amenity": "restaurant" - }, - "name": "Mamma Mia", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Schwarzer Adler": { - "tags": { - "name": "Schwarzer Adler", - "amenity": "restaurant" - }, - "name": "Schwarzer Adler", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/IHOP": { - "tags": { - "name": "IHOP", - "amenity": "restaurant" - }, - "name": "IHOP", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Chili's": { - "tags": { - "name": "Chili's", - "amenity": "restaurant" - }, - "name": "Chili's", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Asia": { - "tags": { - "name": "Asia", - "amenity": "restaurant" - }, - "name": "Asia", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Olive Garden": { - "tags": { - "name": "Olive Garden", - "amenity": "restaurant" - }, - "name": "Olive Garden", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/TGI Friday's": { - "tags": { - "name": "TGI Friday's", - "amenity": "restaurant" - }, - "name": "TGI Friday's", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Friendly's": { - "tags": { - "name": "Friendly's", - "amenity": "restaurant" - }, - "name": "Friendly's", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Buffalo Grill": { - "tags": { - "name": "Buffalo Grill", - "amenity": "restaurant" - }, - "name": "Buffalo Grill", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Texas Roadhouse": { - "tags": { - "name": "Texas Roadhouse", - "amenity": "restaurant" - }, - "name": "Texas Roadhouse", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/ガスト": { - "tags": { - "name": "ガスト", - "name:en": "Gusto", - "amenity": "restaurant" - }, - "name": "ガスト", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Sakura": { - "tags": { - "name": "Sakura", - "amenity": "restaurant" - }, - "name": "Sakura", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Mensa": { - "tags": { - "name": "Mensa", - "amenity": "restaurant" - }, - "name": "Mensa", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/The Keg": { - "tags": { - "name": "The Keg", - "amenity": "restaurant" - }, - "name": "The Keg", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/サイゼリヤ": { - "tags": { - "name": "サイゼリヤ", - "amenity": "restaurant" - }, - "name": "サイゼリヤ", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/La Strada": { - "tags": { - "name": "La Strada", - "amenity": "restaurant" - }, - "name": "La Strada", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Village Inn": { - "tags": { - "name": "Village Inn", - "amenity": "restaurant" - }, - "name": "Village Inn", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Buffalo Wild Wings": { - "tags": { - "name": "Buffalo Wild Wings", - "amenity": "restaurant" - }, - "name": "Buffalo Wild Wings", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Peking": { - "tags": { - "name": "Peking", - "amenity": "restaurant" - }, - "name": "Peking", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Round Table Pizza": { - "tags": { - "name": "Round Table Pizza", - "amenity": "restaurant" - }, - "name": "Round Table Pizza", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/California Pizza Kitchen": { - "tags": { - "name": "California Pizza Kitchen", - "amenity": "restaurant" - }, - "name": "California Pizza Kitchen", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Якитория": { - "tags": { - "name": "Якитория", - "amenity": "restaurant" - }, - "name": "Якитория", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Golden Corral": { - "tags": { - "name": "Golden Corral", - "amenity": "restaurant" - }, - "name": "Golden Corral", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Perkins": { - "tags": { - "name": "Perkins", - "amenity": "restaurant" - }, - "name": "Perkins", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Ruby Tuesday": { - "tags": { - "name": "Ruby Tuesday", - "amenity": "restaurant" - }, - "name": "Ruby Tuesday", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Shari's": { - "tags": { - "name": "Shari's", - "amenity": "restaurant" - }, - "name": "Shari's", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Bob Evans": { - "tags": { - "name": "Bob Evans", - "amenity": "restaurant" - }, - "name": "Bob Evans", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/바다횟집 (Bada Fish Restaurant)": { - "tags": { - "name": "바다횟집 (Bada Fish Restaurant)", - "amenity": "restaurant" - }, - "name": "바다횟집 (Bada Fish Restaurant)", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Mang Inasal": { - "tags": { - "name": "Mang Inasal", - "amenity": "restaurant" - }, - "name": "Mang Inasal", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Евразия": { - "tags": { - "name": "Евразия", - "amenity": "restaurant" - }, - "name": "Евразия", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/ジョナサン": { - "tags": { - "name": "ジョナサン", - "amenity": "restaurant" - }, - "name": "ジョナサン", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/restaurant/Longhorn Steakhouse": { - "tags": { - "name": "Longhorn Steakhouse", - "amenity": "restaurant" - }, - "name": "Longhorn Steakhouse", - "icon": "restaurant", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "address", - "building_area", - "opening_hours", - "capacity", - "takeaway", - "delivery", - "smoking" - ], - "suggestion": true - }, - "amenity/bank/Chase": { - "tags": { - "name": "Chase", - "amenity": "bank" - }, - "name": "Chase", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Commonwealth Bank": { - "tags": { - "name": "Commonwealth Bank", - "amenity": "bank" - }, - "name": "Commonwealth Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Citibank": { - "tags": { - "name": "Citibank", - "amenity": "bank" - }, - "name": "Citibank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/HSBC": { - "tags": { - "name": "HSBC", - "amenity": "bank" - }, - "name": "HSBC", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Barclays": { - "tags": { - "name": "Barclays", - "amenity": "bank" - }, - "name": "Barclays", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Westpac": { - "tags": { - "name": "Westpac", - "amenity": "bank" - }, - "name": "Westpac", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/NAB": { - "tags": { - "name": "NAB", - "amenity": "bank" - }, - "name": "NAB", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/ANZ": { - "tags": { - "name": "ANZ", - "amenity": "bank" - }, - "name": "ANZ", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Lloyds Bank": { - "tags": { - "name": "Lloyds Bank", - "amenity": "bank" - }, - "name": "Lloyds Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Landbank": { - "tags": { - "name": "Landbank", - "amenity": "bank" - }, - "name": "Landbank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Sparkasse": { - "tags": { - "name": "Sparkasse", - "amenity": "bank" - }, - "name": "Sparkasse", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/UCPB": { - "tags": { - "name": "UCPB", - "amenity": "bank" - }, - "name": "UCPB", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/PNB": { - "tags": { - "name": "PNB", - "amenity": "bank" - }, - "name": "PNB", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Metrobank": { - "tags": { - "name": "Metrobank", - "amenity": "bank" - }, - "name": "Metrobank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/BDO": { - "tags": { - "name": "BDO", - "amenity": "bank" - }, - "name": "BDO", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Volksbank": { - "tags": { - "name": "Volksbank", - "amenity": "bank" - }, - "name": "Volksbank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/BPI": { - "tags": { - "name": "BPI", - "amenity": "bank" - }, - "name": "BPI", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Postbank": { - "tags": { - "name": "Postbank", - "amenity": "bank" - }, - "name": "Postbank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/NatWest": { - "tags": { - "name": "NatWest", - "amenity": "bank" - }, - "name": "NatWest", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Raiffeisenbank": { - "tags": { - "name": "Raiffeisenbank", - "amenity": "bank" - }, - "name": "Raiffeisenbank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Yorkshire Bank": { - "tags": { - "name": "Yorkshire Bank", - "amenity": "bank" - }, - "name": "Yorkshire Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/ABSA": { - "tags": { - "name": "ABSA", - "amenity": "bank" - }, - "name": "ABSA", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Standard Bank": { - "tags": { - "name": "Standard Bank", - "amenity": "bank" - }, - "name": "Standard Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/FNB": { - "tags": { - "name": "FNB", - "amenity": "bank" - }, - "name": "FNB", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Deutsche Bank": { - "tags": { - "name": "Deutsche Bank", - "amenity": "bank" - }, - "name": "Deutsche Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/SEB": { - "tags": { - "name": "SEB", - "amenity": "bank" - }, - "name": "SEB", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Commerzbank": { - "tags": { - "name": "Commerzbank", - "amenity": "bank" - }, - "name": "Commerzbank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Targobank": { - "tags": { - "name": "Targobank", - "amenity": "bank" - }, - "name": "Targobank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/ABN AMRO": { - "tags": { - "name": "ABN AMRO", - "amenity": "bank" - }, - "name": "ABN AMRO", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Handelsbanken": { - "tags": { - "name": "Handelsbanken", - "amenity": "bank" - }, - "name": "Handelsbanken", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Swedbank": { - "tags": { - "name": "Swedbank", - "amenity": "bank" - }, - "name": "Swedbank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Kreissparkasse": { - "tags": { - "name": "Kreissparkasse", - "amenity": "bank" - }, - "name": "Kreissparkasse", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/UniCredit Bank": { - "tags": { - "name": "UniCredit Bank", - "amenity": "bank" - }, - "name": "UniCredit Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Monte dei Paschi di Siena": { - "tags": { - "name": "Monte dei Paschi di Siena", - "amenity": "bank" - }, - "name": "Monte dei Paschi di Siena", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Caja Rural": { - "tags": { - "name": "Caja Rural", - "amenity": "bank" - }, - "name": "Caja Rural", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Dresdner Bank": { - "tags": { - "name": "Dresdner Bank", - "amenity": "bank" - }, - "name": "Dresdner Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Sparda-Bank": { - "tags": { - "name": "Sparda-Bank", - "amenity": "bank" - }, - "name": "Sparda-Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/VÚB": { - "tags": { - "name": "VÚB", - "amenity": "bank" - }, - "name": "VÚB", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Slovenská sporiteľňa": { - "tags": { - "name": "Slovenská sporiteľňa", - "amenity": "bank" - }, - "name": "Slovenská sporiteľňa", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Bank of Montreal": { - "tags": { - "name": "Bank of Montreal", - "amenity": "bank" - }, - "name": "Bank of Montreal", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/KBC": { - "tags": { - "name": "KBC", - "amenity": "bank" - }, - "name": "KBC", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Royal Bank of Scotland": { - "tags": { - "name": "Royal Bank of Scotland", - "amenity": "bank" - }, - "name": "Royal Bank of Scotland", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/TSB": { - "tags": { - "name": "TSB", - "amenity": "bank" - }, - "name": "TSB", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/US Bank": { - "tags": { - "name": "US Bank", - "amenity": "bank" - }, - "name": "US Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/HypoVereinsbank": { - "tags": { - "name": "HypoVereinsbank", - "amenity": "bank" - }, - "name": "HypoVereinsbank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Bank Austria": { - "tags": { - "name": "Bank Austria", - "amenity": "bank" - }, - "name": "Bank Austria", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/ING": { - "tags": { - "name": "ING", - "amenity": "bank" - }, - "name": "ING", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Erste Bank": { - "tags": { - "name": "Erste Bank", - "amenity": "bank" - }, - "name": "Erste Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/CIBC": { - "tags": { - "name": "CIBC", - "amenity": "bank" - }, - "name": "CIBC", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Scotiabank": { - "tags": { - "name": "Scotiabank", - "amenity": "bank" - }, - "name": "Scotiabank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Caisse d'Épargne": { - "tags": { - "name": "Caisse d'Épargne", - "amenity": "bank" - }, - "name": "Caisse d'Épargne", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Santander": { - "tags": { - "name": "Santander", - "amenity": "bank" - }, - "name": "Santander", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Bank of Scotland": { - "tags": { - "name": "Bank of Scotland", - "amenity": "bank" - }, - "name": "Bank of Scotland", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/TD Canada Trust": { - "tags": { - "name": "TD Canada Trust", - "amenity": "bank" - }, - "name": "TD Canada Trust", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/BMO": { - "tags": { - "name": "BMO", - "amenity": "bank" - }, - "name": "BMO", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Danske Bank": { - "tags": { - "name": "Danske Bank", - "amenity": "bank" - }, - "name": "Danske Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/OTP": { - "tags": { - "name": "OTP", - "amenity": "bank" - }, - "name": "OTP", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Crédit Agricole": { - "tags": { - "name": "Crédit Agricole", - "amenity": "bank" - }, - "name": "Crédit Agricole", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/LCL": { - "tags": { - "name": "LCL", - "amenity": "bank" - }, - "name": "LCL", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/VR-Bank": { - "tags": { - "name": "VR-Bank", - "amenity": "bank" - }, - "name": "VR-Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/ČSOB": { - "tags": { - "name": "ČSOB", - "amenity": "bank" - }, - "name": "ČSOB", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Česká spořitelna": { - "tags": { - "name": "Česká spořitelna", - "amenity": "bank" - }, - "name": "Česká spořitelna", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/BNP": { - "tags": { - "name": "BNP", - "amenity": "bank" - }, - "name": "BNP", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Royal Bank": { - "tags": { - "name": "Royal Bank", - "amenity": "bank" - }, - "name": "Royal Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Nationwide": { - "tags": { - "name": "Nationwide", - "amenity": "bank" - }, - "name": "Nationwide", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Halifax": { - "tags": { - "name": "Halifax", - "amenity": "bank" - }, - "name": "Halifax", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/BAWAG PSK": { - "tags": { - "name": "BAWAG PSK", - "amenity": "bank" - }, - "name": "BAWAG PSK", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/National Bank": { - "tags": { - "name": "National Bank", - "amenity": "bank" - }, - "name": "National Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Nedbank": { - "tags": { - "name": "Nedbank", - "amenity": "bank" - }, - "name": "Nedbank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/First National Bank": { - "tags": { - "name": "First National Bank", - "amenity": "bank" - }, - "name": "First National Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Nordea": { - "tags": { - "name": "Nordea", - "amenity": "bank" - }, - "name": "Nordea", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Rabobank": { - "tags": { - "name": "Rabobank", - "amenity": "bank" - }, - "name": "Rabobank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Sparkasse KölnBonn": { - "tags": { - "name": "Sparkasse KölnBonn", - "amenity": "bank" - }, - "name": "Sparkasse KölnBonn", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Tatra banka": { - "tags": { - "name": "Tatra banka", - "amenity": "bank" - }, - "name": "Tatra banka", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Berliner Sparkasse": { - "tags": { - "name": "Berliner Sparkasse", - "amenity": "bank" - }, - "name": "Berliner Sparkasse", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Berliner Volksbank": { - "tags": { - "name": "Berliner Volksbank", - "amenity": "bank" - }, - "name": "Berliner Volksbank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Wells Fargo": { - "tags": { - "name": "Wells Fargo", - "amenity": "bank" - }, - "name": "Wells Fargo", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Credit Suisse": { - "tags": { - "name": "Credit Suisse", - "amenity": "bank" - }, - "name": "Credit Suisse", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Société Générale": { - "tags": { - "name": "Société Générale", - "amenity": "bank" - }, - "name": "Société Générale", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Osuuspankki": { - "tags": { - "name": "Osuuspankki", - "amenity": "bank" - }, - "name": "Osuuspankki", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Sparkasse Aachen": { - "tags": { - "name": "Sparkasse Aachen", - "amenity": "bank" - }, - "name": "Sparkasse Aachen", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Hamburger Sparkasse": { - "tags": { - "name": "Hamburger Sparkasse", - "amenity": "bank" - }, - "name": "Hamburger Sparkasse", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Cassa di Risparmio del Veneto": { - "tags": { - "name": "Cassa di Risparmio del Veneto", - "amenity": "bank" - }, - "name": "Cassa di Risparmio del Veneto", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/BNP Paribas": { - "tags": { - "name": "BNP Paribas", - "amenity": "bank" - }, - "name": "BNP Paribas", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banque Populaire": { - "tags": { - "name": "Banque Populaire", - "amenity": "bank" - }, - "name": "Banque Populaire", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/BNP Paribas Fortis": { - "tags": { - "name": "BNP Paribas Fortis", - "amenity": "bank" - }, - "name": "BNP Paribas Fortis", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banco Popular": { - "tags": { - "name": "Banco Popular", - "amenity": "bank" - }, - "name": "Banco Popular", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Bancaja": { - "tags": { - "name": "Bancaja", - "amenity": "bank" - }, - "name": "Bancaja", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banesto": { - "tags": { - "name": "Banesto", - "amenity": "bank" - }, - "name": "Banesto", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/La Caixa": { - "tags": { - "name": "La Caixa", - "amenity": "bank" - }, - "name": "La Caixa", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Santander Consumer Bank": { - "tags": { - "name": "Santander Consumer Bank", - "amenity": "bank" - }, - "name": "Santander Consumer Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/BRD": { - "tags": { - "name": "BRD", - "amenity": "bank" - }, - "name": "BRD", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/BCR": { - "tags": { - "name": "BCR", - "amenity": "bank" - }, - "name": "BCR", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banca Transilvania": { - "tags": { - "name": "Banca Transilvania", - "amenity": "bank" - }, - "name": "Banca Transilvania", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/BW-Bank": { - "tags": { - "name": "BW-Bank", - "amenity": "bank" - }, - "name": "BW-Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Komerční banka": { - "tags": { - "name": "Komerční banka", - "amenity": "bank" - }, - "name": "Komerční banka", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banco Pastor": { - "tags": { - "name": "Banco Pastor", - "amenity": "bank" - }, - "name": "Banco Pastor", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Stadtsparkasse": { - "tags": { - "name": "Stadtsparkasse", - "amenity": "bank" - }, - "name": "Stadtsparkasse", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Ulster Bank": { - "tags": { - "name": "Ulster Bank", - "amenity": "bank" - }, - "name": "Ulster Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Sberbank": { - "tags": { - "name": "Sberbank", - "amenity": "bank" - }, - "name": "Sberbank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/CIC": { - "tags": { - "name": "CIC", - "amenity": "bank" - }, - "name": "CIC", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Bancpost": { - "tags": { - "name": "Bancpost", - "amenity": "bank" - }, - "name": "Bancpost", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Caja Madrid": { - "tags": { - "name": "Caja Madrid", - "amenity": "bank" - }, - "name": "Caja Madrid", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Maybank": { - "tags": { - "name": "Maybank", - "amenity": "bank" - }, - "name": "Maybank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/中国银行": { - "tags": { - "name": "中国银行", - "amenity": "bank" - }, - "name": "中国银行", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Unicredit Banca": { - "tags": { - "name": "Unicredit Banca", - "amenity": "bank" - }, - "name": "Unicredit Banca", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Crédit Mutuel": { - "tags": { - "name": "Crédit Mutuel", - "amenity": "bank" - }, - "name": "Crédit Mutuel", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/BBVA": { - "tags": { - "name": "BBVA", - "amenity": "bank" - }, - "name": "BBVA", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Intesa San Paolo": { - "tags": { - "name": "Intesa San Paolo", - "amenity": "bank" - }, - "name": "Intesa San Paolo", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/TD Bank": { - "tags": { - "name": "TD Bank", - "amenity": "bank" - }, - "name": "TD Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Belfius": { - "tags": { - "name": "Belfius", - "amenity": "bank" - }, - "name": "Belfius", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Bank of America": { - "tags": { - "name": "Bank of America", - "amenity": "bank" - }, - "name": "Bank of America", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/RBC": { - "tags": { - "name": "RBC", - "amenity": "bank" - }, - "name": "RBC", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Alpha Bank": { - "tags": { - "name": "Alpha Bank", - "amenity": "bank" - }, - "name": "Alpha Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Сбербанк": { - "tags": { - "name": "Сбербанк", - "amenity": "bank" - }, - "name": "Сбербанк", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Россельхозбанк": { - "tags": { - "name": "Россельхозбанк", - "amenity": "bank" - }, - "name": "Россельхозбанк", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Crédit du Nord": { - "tags": { - "name": "Crédit du Nord", - "amenity": "bank" - }, - "name": "Crédit du Nord", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/BancoEstado": { - "tags": { - "name": "BancoEstado", - "amenity": "bank" - }, - "name": "BancoEstado", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Millennium Bank": { - "tags": { - "name": "Millennium Bank", - "amenity": "bank" - }, - "name": "Millennium Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/State Bank of India": { - "tags": { - "name": "State Bank of India", - "amenity": "bank" - }, - "name": "State Bank of India", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Беларусбанк": { - "tags": { - "name": "Беларусбанк", - "amenity": "bank" - }, - "name": "Беларусбанк", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/ING Bank Śląski": { - "tags": { - "name": "ING Bank Śląski", - "amenity": "bank" - }, - "name": "ING Bank Śląski", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Caixa Geral de Depósitos": { - "tags": { - "name": "Caixa Geral de Depósitos", - "amenity": "bank" - }, - "name": "Caixa Geral de Depósitos", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Kreissparkasse Köln": { - "tags": { - "name": "Kreissparkasse Köln", - "amenity": "bank" - }, - "name": "Kreissparkasse Köln", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banco BCI": { - "tags": { - "name": "Banco BCI", - "amenity": "bank" - }, - "name": "Banco BCI", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banco de Chile": { - "tags": { - "name": "Banco de Chile", - "amenity": "bank" - }, - "name": "Banco de Chile", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/ВТБ24": { - "tags": { - "name": "ВТБ24", - "amenity": "bank" - }, - "name": "ВТБ24", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/UBS": { - "tags": { - "name": "UBS", - "amenity": "bank" - }, - "name": "UBS", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/PKO BP": { - "tags": { - "name": "PKO BP", - "amenity": "bank" - }, - "name": "PKO BP", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Chinabank": { - "tags": { - "name": "Chinabank", - "amenity": "bank" - }, - "name": "Chinabank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/PSBank": { - "tags": { - "name": "PSBank", - "amenity": "bank" - }, - "name": "PSBank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Union Bank": { - "tags": { - "name": "Union Bank", - "amenity": "bank" - }, - "name": "Union Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/China Bank": { - "tags": { - "name": "China Bank", - "amenity": "bank" - }, - "name": "China Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/RCBC": { - "tags": { - "name": "RCBC", - "amenity": "bank" - }, - "name": "RCBC", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Unicaja": { - "tags": { - "name": "Unicaja", - "amenity": "bank" - }, - "name": "Unicaja", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/BBK": { - "tags": { - "name": "BBK", - "amenity": "bank" - }, - "name": "BBK", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Ibercaja": { - "tags": { - "name": "Ibercaja", - "amenity": "bank" - }, - "name": "Ibercaja", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/RBS": { - "tags": { - "name": "RBS", - "amenity": "bank" - }, - "name": "RBS", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Commercial Bank of Ceylon PLC": { - "tags": { - "name": "Commercial Bank of Ceylon PLC", - "amenity": "bank" - }, - "name": "Commercial Bank of Ceylon PLC", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Bank of Ireland": { - "tags": { - "name": "Bank of Ireland", - "amenity": "bank" - }, - "name": "Bank of Ireland", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/BNL": { - "tags": { - "name": "BNL", - "amenity": "bank" - }, - "name": "BNL", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banco Santander": { - "tags": { - "name": "Banco Santander", - "amenity": "bank" - }, - "name": "Banco Santander", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banco Itaú": { - "tags": { - "name": "Banco Itaú", - "amenity": "bank" - }, - "name": "Banco Itaú", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/AIB": { - "tags": { - "name": "AIB", - "amenity": "bank" - }, - "name": "AIB", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/BZ WBK": { - "tags": { - "name": "BZ WBK", - "amenity": "bank" - }, - "name": "BZ WBK", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banco do Brasil": { - "tags": { - "name": "Banco do Brasil", - "amenity": "bank" - }, - "name": "Banco do Brasil", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Caixa Econômica Federal": { - "tags": { - "name": "Caixa Econômica Federal", - "amenity": "bank" - }, - "name": "Caixa Econômica Federal", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Fifth Third Bank": { - "tags": { - "name": "Fifth Third Bank", - "amenity": "bank" - }, - "name": "Fifth Third Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banca Popolare di Vicenza": { - "tags": { - "name": "Banca Popolare di Vicenza", - "amenity": "bank" - }, - "name": "Banca Popolare di Vicenza", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Wachovia": { - "tags": { - "name": "Wachovia", - "amenity": "bank" - }, - "name": "Wachovia", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/OLB": { - "tags": { - "name": "OLB", - "amenity": "bank" - }, - "name": "OLB", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/みずほ銀行": { - "tags": { - "name": "みずほ銀行", - "amenity": "bank" - }, - "name": "みずほ銀行", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/BES": { - "tags": { - "name": "BES", - "amenity": "bank" - }, - "name": "BES", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/ICICI Bank": { - "tags": { - "name": "ICICI Bank", - "amenity": "bank" - }, - "name": "ICICI Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/HDFC Bank": { - "tags": { - "name": "HDFC Bank", - "amenity": "bank" - }, - "name": "HDFC Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/La Banque Postale": { - "tags": { - "name": "La Banque Postale", - "amenity": "bank" - }, - "name": "La Banque Postale", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Pekao SA": { - "tags": { - "name": "Pekao SA", - "amenity": "bank" - }, - "name": "Pekao SA", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Oberbank": { - "tags": { - "name": "Oberbank", - "amenity": "bank" - }, - "name": "Oberbank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Bradesco": { - "tags": { - "name": "Bradesco", - "amenity": "bank" - }, - "name": "Bradesco", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Oldenburgische Landesbank": { - "tags": { - "name": "Oldenburgische Landesbank", - "amenity": "bank" - }, - "name": "Oldenburgische Landesbank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Bendigo Bank": { - "tags": { - "name": "Bendigo Bank", - "amenity": "bank" - }, - "name": "Bendigo Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Argenta": { - "tags": { - "name": "Argenta", - "amenity": "bank" - }, - "name": "Argenta", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/AXA": { - "tags": { - "name": "AXA", - "amenity": "bank" - }, - "name": "AXA", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Axis Bank": { - "tags": { - "name": "Axis Bank", - "amenity": "bank" - }, - "name": "Axis Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banco Nación": { - "tags": { - "name": "Banco Nación", - "amenity": "bank" - }, - "name": "Banco Nación", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/GE Money Bank": { - "tags": { - "name": "GE Money Bank", - "amenity": "bank" - }, - "name": "GE Money Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Альфа-Банк": { - "tags": { - "name": "Альфа-Банк", - "amenity": "bank" - }, - "name": "Альфа-Банк", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Белагропромбанк": { - "tags": { - "name": "Белагропромбанк", - "amenity": "bank" - }, - "name": "Белагропромбанк", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Caja Círculo": { - "tags": { - "name": "Caja Círculo", - "amenity": "bank" - }, - "name": "Caja Círculo", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banco Galicia": { - "tags": { - "name": "Banco Galicia", - "amenity": "bank" - }, - "name": "Banco Galicia", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Eurobank": { - "tags": { - "name": "Eurobank", - "amenity": "bank" - }, - "name": "Eurobank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banca Intesa": { - "tags": { - "name": "Banca Intesa", - "amenity": "bank" - }, - "name": "Banca Intesa", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Canara Bank": { - "tags": { - "name": "Canara Bank", - "amenity": "bank" - }, - "name": "Canara Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Cajamar": { - "tags": { - "name": "Cajamar", - "amenity": "bank" - }, - "name": "Cajamar", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banamex": { - "tags": { - "name": "Banamex", - "amenity": "bank" - }, - "name": "Banamex", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Crédit Mutuel de Bretagne": { - "tags": { - "name": "Crédit Mutuel de Bretagne", - "amenity": "bank" - }, - "name": "Crédit Mutuel de Bretagne", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Davivienda": { - "tags": { - "name": "Davivienda", - "amenity": "bank" - }, - "name": "Davivienda", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Bank Spółdzielczy": { - "tags": { - "name": "Bank Spółdzielczy", - "amenity": "bank" - }, - "name": "Bank Spółdzielczy", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Credit Agricole": { - "tags": { - "name": "Credit Agricole", - "amenity": "bank" - }, - "name": "Credit Agricole", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Bankinter": { - "tags": { - "name": "Bankinter", - "amenity": "bank" - }, - "name": "Bankinter", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banque Nationale": { - "tags": { - "name": "Banque Nationale", - "amenity": "bank" - }, - "name": "Banque Nationale", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Bank of the West": { - "tags": { - "name": "Bank of the West", - "amenity": "bank" - }, - "name": "Bank of the West", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Key Bank": { - "tags": { - "name": "Key Bank", - "amenity": "bank" - }, - "name": "Key Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Western Union": { - "tags": { - "name": "Western Union", - "amenity": "bank" - }, - "name": "Western Union", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Citizens Bank": { - "tags": { - "name": "Citizens Bank", - "amenity": "bank" - }, - "name": "Citizens Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/ПриватБанк": { - "tags": { - "name": "ПриватБанк", - "amenity": "bank" - }, - "name": "ПриватБанк", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Security Bank": { - "tags": { - "name": "Security Bank", - "amenity": "bank" - }, - "name": "Security Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Millenium": { - "tags": { - "name": "Millenium", - "amenity": "bank" - }, - "name": "Millenium", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Bankia": { - "tags": { - "name": "Bankia", - "amenity": "bank" - }, - "name": "Bankia", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/三菱東京UFJ銀行": { - "tags": { - "name": "三菱東京UFJ銀行", - "amenity": "bank" - }, - "name": "三菱東京UFJ銀行", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Caixa": { - "tags": { - "name": "Caixa", - "amenity": "bank" - }, - "name": "Caixa", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banco de Costa Rica": { - "tags": { - "name": "Banco de Costa Rica", - "amenity": "bank" - }, - "name": "Banco de Costa Rica", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/SunTrust Bank": { - "tags": { - "name": "SunTrust Bank", - "amenity": "bank" - }, - "name": "SunTrust Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Itaú": { - "tags": { - "name": "Itaú", - "amenity": "bank" - }, - "name": "Itaú", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/PBZ": { - "tags": { - "name": "PBZ", - "amenity": "bank" - }, - "name": "PBZ", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/中国工商银行": { - "tags": { - "name": "中国工商银行", - "amenity": "bank" - }, - "name": "中国工商银行", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Bancolombia": { - "tags": { - "name": "Bancolombia", - "amenity": "bank" - }, - "name": "Bancolombia", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Райффайзен Банк Аваль": { - "tags": { - "name": "Райффайзен Банк Аваль", - "amenity": "bank" - }, - "name": "Райффайзен Банк Аваль", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Bancomer": { - "tags": { - "name": "Bancomer", - "amenity": "bank" - }, - "name": "Bancomer", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banorte": { - "tags": { - "name": "Banorte", - "amenity": "bank" - }, - "name": "Banorte", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Alior Bank": { - "tags": { - "name": "Alior Bank", - "amenity": "bank" - }, - "name": "Alior Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/BOC": { - "tags": { - "name": "BOC", - "amenity": "bank" - }, - "name": "BOC", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Банк Москвы": { - "tags": { - "name": "Банк Москвы", - "amenity": "bank" - }, - "name": "Банк Москвы", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/ВТБ": { - "tags": { - "name": "ВТБ", - "amenity": "bank" - }, - "name": "ВТБ", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Getin Bank": { - "tags": { - "name": "Getin Bank", - "amenity": "bank" - }, - "name": "Getin Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Caja Duero": { - "tags": { - "name": "Caja Duero", - "amenity": "bank" - }, - "name": "Caja Duero", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Regions Bank": { - "tags": { - "name": "Regions Bank", - "amenity": "bank" - }, - "name": "Regions Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Росбанк": { - "tags": { - "name": "Росбанк", - "amenity": "bank" - }, - "name": "Росбанк", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banco Estado": { - "tags": { - "name": "Banco Estado", - "amenity": "bank" - }, - "name": "Banco Estado", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/BCI": { - "tags": { - "name": "BCI", - "amenity": "bank" - }, - "name": "BCI", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/SunTrust": { - "tags": { - "name": "SunTrust", - "amenity": "bank" - }, - "name": "SunTrust", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/PNC Bank": { - "tags": { - "name": "PNC Bank", - "amenity": "bank" - }, - "name": "PNC Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/신한은행": { - "tags": { - "name": "신한은행", - "name:en": "Sinhan Bank", - "amenity": "bank" - }, - "name": "신한은행", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/우리은행": { - "tags": { - "name": "우리은행", - "name:en": "Uri Bank", - "amenity": "bank" - }, - "name": "우리은행", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/국민은행": { - "tags": { - "name": "국민은행", - "name:en": "Gungmin Bank", - "amenity": "bank" - }, - "name": "국민은행", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/중소기업은행": { - "tags": { - "name": "중소기업은행", - "name:en": "Industrial Bank of Korea", - "amenity": "bank" - }, - "name": "중소기업은행", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/광주은행": { - "tags": { - "name": "광주은행", - "name:en": "Gwangju Bank", - "amenity": "bank" - }, - "name": "광주은행", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Газпромбанк": { - "tags": { - "name": "Газпромбанк", - "amenity": "bank" - }, - "name": "Газпромбанк", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/M&T Bank": { - "tags": { - "name": "M&T Bank", - "amenity": "bank" - }, - "name": "M&T Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Caja de Burgos": { - "tags": { - "name": "Caja de Burgos", - "amenity": "bank" - }, - "name": "Caja de Burgos", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Santander Totta": { - "tags": { - "name": "Santander Totta", - "amenity": "bank" - }, - "name": "Santander Totta", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/УкрСиббанк": { - "tags": { - "name": "УкрСиббанк", - "amenity": "bank" - }, - "name": "УкрСиббанк", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Ощадбанк": { - "tags": { - "name": "Ощадбанк", - "amenity": "bank" - }, - "name": "Ощадбанк", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Уралсиб": { - "tags": { - "name": "Уралсиб", - "amenity": "bank" - }, - "name": "Уралсиб", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/りそな銀行": { - "tags": { - "name": "りそな銀行", - "name:en": "Mizuho Bank", - "amenity": "bank" - }, - "name": "りそな銀行", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Ecobank": { - "tags": { - "name": "Ecobank", - "amenity": "bank" - }, - "name": "Ecobank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Cajero Automatico Bancared": { - "tags": { - "name": "Cajero Automatico Bancared", - "amenity": "bank" - }, - "name": "Cajero Automatico Bancared", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Промсвязьбанк": { - "tags": { - "name": "Промсвязьбанк", - "amenity": "bank" - }, - "name": "Промсвязьбанк", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/三井住友銀行": { - "tags": { - "name": "三井住友銀行", - "amenity": "bank" - }, - "name": "三井住友銀行", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banco Provincia": { - "tags": { - "name": "Banco Provincia", - "amenity": "bank" - }, - "name": "Banco Provincia", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/BB&T": { - "tags": { - "name": "BB&T", - "amenity": "bank" - }, - "name": "BB&T", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Возрождение": { - "tags": { - "name": "Возрождение", - "amenity": "bank" - }, - "name": "Возрождение", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Capital One": { - "tags": { - "name": "Capital One", - "amenity": "bank" - }, - "name": "Capital One", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/横浜銀行": { - "tags": { - "name": "横浜銀行", - "amenity": "bank" - }, - "name": "横浜銀行", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Bank Mandiri": { - "tags": { - "name": "Bank Mandiri", - "amenity": "bank" - }, - "name": "Bank Mandiri", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banco de la Nación": { - "tags": { - "name": "Banco de la Nación", - "amenity": "bank" - }, - "name": "Banco de la Nación", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banco G&T Continental": { - "tags": { - "name": "Banco G&T Continental", - "amenity": "bank" - }, - "name": "Banco G&T Continental", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Peoples Bank": { - "tags": { - "name": "Peoples Bank", - "amenity": "bank" - }, - "name": "Peoples Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/工商银行": { - "tags": { - "name": "工商银行", - "amenity": "bank" - }, - "name": "工商银行", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Совкомбанк": { - "tags": { - "name": "Совкомбанк", - "amenity": "bank" - }, - "name": "Совкомбанк", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Provincial": { - "tags": { - "name": "Provincial", - "amenity": "bank" - }, - "name": "Provincial", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banco de Desarrollo Banrural": { - "tags": { - "name": "Banco de Desarrollo Banrural", - "amenity": "bank" - }, - "name": "Banco de Desarrollo Banrural", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banco Bradesco": { - "tags": { - "name": "Banco Bradesco", - "amenity": "bank" - }, - "name": "Banco Bradesco", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Bicentenario": { - "tags": { - "name": "Bicentenario", - "amenity": "bank" - }, - "name": "Bicentenario", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/ლიბერთი ბანკი": { - "tags": { - "name": "ლიბერთი ბანკი", - "name:en": "Liberty Bank", - "amenity": "bank" - }, - "name": "ლიბერთი ბანკი", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Banesco": { - "tags": { - "name": "Banesco", - "amenity": "bank" - }, - "name": "Banesco", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Mercantil": { - "tags": { - "name": "Mercantil", - "amenity": "bank" - }, - "name": "Mercantil", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Bank BRI": { - "tags": { - "name": "Bank BRI", - "amenity": "bank" - }, - "name": "Bank BRI", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/Del Tesoro": { - "tags": { - "name": "Del Tesoro", - "amenity": "bank" - }, - "name": "Del Tesoro", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/하나은행": { - "tags": { - "name": "하나은행", - "amenity": "bank" - }, - "name": "하나은행", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/CityCommerce Bank": { - "tags": { - "name": "CityCommerce Bank", - "amenity": "bank" - }, - "name": "CityCommerce Bank", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/bank/De Venezuela": { - "tags": { - "name": "De Venezuela", - "amenity": "bank" - }, - "name": "De Venezuela", - "icon": "bank", - "geometry": [ - "point", - "area" - ], - "fields": [ - "atm", - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/car_rental/Europcar": { - "tags": { - "name": "Europcar", - "amenity": "car_rental" - }, - "name": "Europcar", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator" - ], - "suggestion": true - }, - "amenity/car_rental/Budget": { - "tags": { - "name": "Budget", - "amenity": "car_rental" - }, - "name": "Budget", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator" - ], - "suggestion": true - }, - "amenity/car_rental/Sixt": { - "tags": { - "name": "Sixt", - "amenity": "car_rental" - }, - "name": "Sixt", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator" - ], - "suggestion": true - }, - "amenity/car_rental/Avis": { - "tags": { - "name": "Avis", - "amenity": "car_rental" - }, - "name": "Avis", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator" - ], - "suggestion": true - }, - "amenity/car_rental/Hertz": { - "tags": { - "name": "Hertz", - "amenity": "car_rental" - }, - "name": "Hertz", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator" - ], - "suggestion": true - }, - "amenity/car_rental/Enterprise": { - "tags": { - "name": "Enterprise", - "amenity": "car_rental" - }, - "name": "Enterprise", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator" - ], - "suggestion": true - }, - "amenity/car_rental/stadtmobil CarSharing-Station": { - "tags": { - "name": "stadtmobil CarSharing-Station", - "amenity": "car_rental" - }, - "name": "stadtmobil CarSharing-Station", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator" - ], - "suggestion": true - }, - "amenity/pharmacy/Rowlands Pharmacy": { - "tags": { - "name": "Rowlands Pharmacy", - "amenity": "pharmacy" - }, - "name": "Rowlands Pharmacy", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Boots": { - "tags": { - "name": "Boots", - "amenity": "pharmacy" - }, - "name": "Boots", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Marien-Apotheke": { - "tags": { - "name": "Marien-Apotheke", - "amenity": "pharmacy" - }, - "name": "Marien-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Mercury Drug": { - "tags": { - "name": "Mercury Drug", - "amenity": "pharmacy" - }, - "name": "Mercury Drug", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Löwen-Apotheke": { - "tags": { - "name": "Löwen-Apotheke", - "amenity": "pharmacy" - }, - "name": "Löwen-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Superdrug": { - "tags": { - "name": "Superdrug", - "amenity": "pharmacy" - }, - "name": "Superdrug", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Sonnen-Apotheke": { - "tags": { - "name": "Sonnen-Apotheke", - "amenity": "pharmacy" - }, - "name": "Sonnen-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Rathaus-Apotheke": { - "tags": { - "name": "Rathaus-Apotheke", - "amenity": "pharmacy" - }, - "name": "Rathaus-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Engel-Apotheke": { - "tags": { - "name": "Engel-Apotheke", - "amenity": "pharmacy" - }, - "name": "Engel-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Hirsch-Apotheke": { - "tags": { - "name": "Hirsch-Apotheke", - "amenity": "pharmacy" - }, - "name": "Hirsch-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Stern-Apotheke": { - "tags": { - "name": "Stern-Apotheke", - "amenity": "pharmacy" - }, - "name": "Stern-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Lloyds Pharmacy": { - "tags": { - "name": "Lloyds Pharmacy", - "amenity": "pharmacy" - }, - "name": "Lloyds Pharmacy", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Rosen-Apotheke": { - "tags": { - "name": "Rosen-Apotheke", - "amenity": "pharmacy" - }, - "name": "Rosen-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Stadt-Apotheke": { - "tags": { - "name": "Stadt-Apotheke", - "amenity": "pharmacy" - }, - "name": "Stadt-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Markt-Apotheke": { - "tags": { - "name": "Markt-Apotheke", - "amenity": "pharmacy" - }, - "name": "Markt-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Аптека": { - "tags": { - "name": "Аптека", - "amenity": "pharmacy" - }, - "name": "Аптека", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Pharmasave": { - "tags": { - "name": "Pharmasave", - "amenity": "pharmacy" - }, - "name": "Pharmasave", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Brunnen-Apotheke": { - "tags": { - "name": "Brunnen-Apotheke", - "amenity": "pharmacy" - }, - "name": "Brunnen-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Shoppers Drug Mart": { - "tags": { - "name": "Shoppers Drug Mart", - "amenity": "pharmacy" - }, - "name": "Shoppers Drug Mart", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Apotheke am Markt": { - "tags": { - "name": "Apotheke am Markt", - "amenity": "pharmacy" - }, - "name": "Apotheke am Markt", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Alte Apotheke": { - "tags": { - "name": "Alte Apotheke", - "amenity": "pharmacy" - }, - "name": "Alte Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Neue Apotheke": { - "tags": { - "name": "Neue Apotheke", - "amenity": "pharmacy" - }, - "name": "Neue Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Gintarinė vaistinė": { - "tags": { - "name": "Gintarinė vaistinė", - "amenity": "pharmacy" - }, - "name": "Gintarinė vaistinė", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Rats-Apotheke": { - "tags": { - "name": "Rats-Apotheke", - "amenity": "pharmacy" - }, - "name": "Rats-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Adler Apotheke": { - "tags": { - "name": "Adler Apotheke", - "amenity": "pharmacy" - }, - "name": "Adler Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Pharmacie Centrale": { - "tags": { - "name": "Pharmacie Centrale", - "amenity": "pharmacy" - }, - "name": "Pharmacie Centrale", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Walgreens": { - "tags": { - "name": "Walgreens", - "amenity": "pharmacy" - }, - "name": "Walgreens", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Rite Aid": { - "tags": { - "name": "Rite Aid", - "amenity": "pharmacy" - }, - "name": "Rite Aid", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Apotheke": { - "tags": { - "name": "Apotheke", - "amenity": "pharmacy" - }, - "name": "Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Linden-Apotheke": { - "tags": { - "name": "Linden-Apotheke", - "amenity": "pharmacy" - }, - "name": "Linden-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Bahnhof-Apotheke": { - "tags": { - "name": "Bahnhof-Apotheke", - "amenity": "pharmacy" - }, - "name": "Bahnhof-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Burg-Apotheke": { - "tags": { - "name": "Burg-Apotheke", - "amenity": "pharmacy" - }, - "name": "Burg-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Jean Coutu": { - "tags": { - "name": "Jean Coutu", - "amenity": "pharmacy" - }, - "name": "Jean Coutu", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Pharmaprix": { - "tags": { - "name": "Pharmaprix", - "amenity": "pharmacy" - }, - "name": "Pharmaprix", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Farmacias Ahumada": { - "tags": { - "name": "Farmacias Ahumada", - "amenity": "pharmacy" - }, - "name": "Farmacias Ahumada", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Farmacia Comunale": { - "tags": { - "name": "Farmacia Comunale", - "amenity": "pharmacy" - }, - "name": "Farmacia Comunale", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Farmacias Cruz Verde": { - "tags": { - "name": "Farmacias Cruz Verde", - "amenity": "pharmacy" - }, - "name": "Farmacias Cruz Verde", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Cruz Verde": { - "tags": { - "name": "Cruz Verde", - "amenity": "pharmacy" - }, - "name": "Cruz Verde", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Hubertus Apotheke": { - "tags": { - "name": "Hubertus Apotheke", - "amenity": "pharmacy" - }, - "name": "Hubertus Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/CVS": { - "tags": { - "name": "CVS", - "amenity": "pharmacy" - }, - "name": "CVS", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Farmacias SalcoBrand": { - "tags": { - "name": "Farmacias SalcoBrand", - "amenity": "pharmacy" - }, - "name": "Farmacias SalcoBrand", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Фармация": { - "tags": { - "name": "Фармация", - "amenity": "pharmacy" - }, - "name": "Фармация", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Bären-Apotheke": { - "tags": { - "name": "Bären-Apotheke", - "amenity": "pharmacy" - }, - "name": "Bären-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Clicks": { - "tags": { - "name": "Clicks", - "amenity": "pharmacy" - }, - "name": "Clicks", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/セイジョー": { - "tags": { - "name": "セイジョー", - "amenity": "pharmacy" - }, - "name": "セイジョー", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/マツモトキヨシ": { - "tags": { - "name": "マツモトキヨシ", - "amenity": "pharmacy" - }, - "name": "マツモトキヨシ", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Dr. Max": { - "tags": { - "name": "Dr. Max", - "amenity": "pharmacy" - }, - "name": "Dr. Max", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Вита": { - "tags": { - "name": "Вита", - "amenity": "pharmacy" - }, - "name": "Вита", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/サンドラッグ": { - "tags": { - "name": "サンドラッグ", - "amenity": "pharmacy" - }, - "name": "サンドラッグ", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Apteka": { - "tags": { - "name": "Apteka", - "amenity": "pharmacy" - }, - "name": "Apteka", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Первая помощь": { - "tags": { - "name": "Первая помощь", - "amenity": "pharmacy" - }, - "name": "Первая помощь", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Ригла": { - "tags": { - "name": "Ригла", - "amenity": "pharmacy" - }, - "name": "Ригла", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Имплозия": { - "tags": { - "name": "Имплозия", - "amenity": "pharmacy" - }, - "name": "Имплозия", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Kinney Drugs": { - "tags": { - "name": "Kinney Drugs", - "amenity": "pharmacy" - }, - "name": "Kinney Drugs", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Классика": { - "tags": { - "name": "Классика", - "amenity": "pharmacy" - }, - "name": "Классика", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Ljekarna": { - "tags": { - "name": "Ljekarna", - "amenity": "pharmacy" - }, - "name": "Ljekarna", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/SalcoBrand": { - "tags": { - "name": "SalcoBrand", - "amenity": "pharmacy" - }, - "name": "SalcoBrand", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Аптека 36,6": { - "tags": { - "name": "Аптека 36,6", - "amenity": "pharmacy" - }, - "name": "Аптека 36,6", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Фармакор": { - "tags": { - "name": "Фармакор", - "amenity": "pharmacy" - }, - "name": "Фармакор", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/スギ薬局": { - "tags": { - "name": "スギ薬局", - "amenity": "pharmacy" - }, - "name": "スギ薬局", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Аптечный пункт": { - "tags": { - "name": "Аптечный пункт", - "amenity": "pharmacy" - }, - "name": "Аптечный пункт", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Невис": { - "tags": { - "name": "Невис", - "amenity": "pharmacy" - }, - "name": "Невис", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/トモズ (Tomod's)": { - "tags": { - "name": "トモズ (Tomod's)", - "amenity": "pharmacy" - }, - "name": "トモズ (Tomod's)", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Eurovaistinė": { - "tags": { - "name": "Eurovaistinė", - "amenity": "pharmacy" - }, - "name": "Eurovaistinė", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Farmacity": { - "tags": { - "name": "Farmacity", - "amenity": "pharmacy" - }, - "name": "Farmacity", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/аптека": { - "tags": { - "name": "аптека", - "amenity": "pharmacy" - }, - "name": "аптека", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/The Generics Pharmacy": { - "tags": { - "name": "The Generics Pharmacy", - "amenity": "pharmacy" - }, - "name": "The Generics Pharmacy", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Farmatodo": { - "tags": { - "name": "Farmatodo", - "amenity": "pharmacy" - }, - "name": "Farmatodo", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Duane Reade": { - "tags": { - "name": "Duane Reade", - "amenity": "pharmacy" - }, - "name": "Duane Reade", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Фармленд": { - "tags": { - "name": "Фармленд", - "amenity": "pharmacy" - }, - "name": "Фармленд", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/ドラッグてらしま (Drug Terashima)": { - "tags": { - "name": "ドラッグてらしま (Drug Terashima)", - "amenity": "pharmacy" - }, - "name": "ドラッグてらしま (Drug Terashima)", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Арніка": { - "tags": { - "name": "Арніка", - "amenity": "pharmacy" - }, - "name": "Арніка", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/ავერსი (Aversi)": { - "tags": { - "name": "ავერსი (Aversi)", - "amenity": "pharmacy" - }, - "name": "ავერსი (Aversi)", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/pharmacy/Farmahorro": { - "tags": { - "name": "Farmahorro", - "amenity": "pharmacy" - }, - "name": "Farmahorro", - "icon": "pharmacy", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "amenity/cafe/Starbucks": { - "tags": { - "name": "Starbucks", - "cuisine": "coffee_shop", - "amenity": "cafe" - }, - "name": "Starbucks", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Cafeteria": { - "tags": { - "name": "Cafeteria", - "amenity": "cafe" - }, - "name": "Cafeteria", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Costa": { - "tags": { - "name": "Costa", - "amenity": "cafe" - }, - "name": "Costa", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Caffè Nero": { - "tags": { - "name": "Caffè Nero", - "amenity": "cafe" - }, - "name": "Caffè Nero", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Кафе": { - "tags": { - "name": "Кафе", - "amenity": "cafe" - }, - "name": "Кафе", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Café Central": { - "tags": { - "name": "Café Central", - "amenity": "cafe" - }, - "name": "Café Central", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Second Cup": { - "tags": { - "name": "Second Cup", - "amenity": "cafe" - }, - "name": "Second Cup", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Dunkin Donuts": { - "tags": { - "name": "Dunkin Donuts", - "cuisine": "donut", - "amenity": "cafe" - }, - "name": "Dunkin Donuts", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Espresso House": { - "tags": { - "name": "Espresso House", - "amenity": "cafe" - }, - "name": "Espresso House", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Segafredo": { - "tags": { - "name": "Segafredo", - "amenity": "cafe" - }, - "name": "Segafredo", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Coffee Time": { - "tags": { - "name": "Coffee Time", - "amenity": "cafe" - }, - "name": "Coffee Time", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Cafe Coffee Day": { - "tags": { - "name": "Cafe Coffee Day", - "amenity": "cafe" - }, - "name": "Cafe Coffee Day", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Eiscafe Venezia": { - "tags": { - "name": "Eiscafe Venezia", - "amenity": "cafe" - }, - "name": "Eiscafe Venezia", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/スターバックス": { - "tags": { - "name": "スターバックス", - "name:en": "Starbucks", - "amenity": "cafe" - }, - "name": "スターバックス", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Шоколадница": { - "tags": { - "name": "Шоколадница", - "amenity": "cafe" - }, - "name": "Шоколадница", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Pret A Manger": { - "tags": { - "name": "Pret A Manger", - "amenity": "cafe" - }, - "name": "Pret A Manger", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Столовая": { - "tags": { - "name": "Столовая", - "amenity": "cafe" - }, - "name": "Столовая", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/ドトール": { - "tags": { - "name": "ドトール", - "name:en": "DOUTOR", - "amenity": "cafe" - }, - "name": "ドトール", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Tchibo": { - "tags": { - "name": "Tchibo", - "amenity": "cafe" - }, - "name": "Tchibo", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Кофе Хауз": { - "tags": { - "name": "Кофе Хауз", - "amenity": "cafe" - }, - "name": "Кофе Хауз", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Caribou Coffee": { - "tags": { - "name": "Caribou Coffee", - "amenity": "cafe" - }, - "name": "Caribou Coffee", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Уют": { - "tags": { - "name": "Уют", - "amenity": "cafe" - }, - "name": "Уют", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Шашлычная": { - "tags": { - "name": "Шашлычная", - "amenity": "cafe" - }, - "name": "Шашлычная", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/คาเฟ่ อเมซอน": { - "tags": { - "name": "คาเฟ่ อเมซอน", - "amenity": "cafe" - }, - "name": "คาเฟ่ อเมซอน", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Traveler's Coffee": { - "tags": { - "name": "Traveler's Coffee", - "amenity": "cafe" - }, - "name": "Traveler's Coffee", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/カフェ・ド・クリエ": { - "tags": { - "name": "カフェ・ド・クリエ", - "name:en": "Cafe de CRIE", - "amenity": "cafe" - }, - "name": "カフェ・ド・クリエ", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "amenity/cafe/Cafe Amazon": { - "tags": { - "name": "Cafe Amazon", - "amenity": "cafe" - }, - "name": "Cafe Amazon", - "icon": "cafe", - "geometry": [ - "point", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "address", - "building_area", - "opening_hours", - "smoking" - ], - "suggestion": true - }, - "shop/supermarket/Budgens": { - "tags": { - "name": "Budgens", - "shop": "supermarket" - }, - "name": "Budgens", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Morrisons": { - "tags": { - "name": "Morrisons", - "shop": "supermarket" - }, - "name": "Morrisons", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Interspar": { - "tags": { - "name": "Interspar", - "shop": "supermarket" - }, - "name": "Interspar", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Merkur": { - "tags": { - "name": "Merkur", - "shop": "supermarket" - }, - "name": "Merkur", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Sainsbury's": { - "tags": { - "name": "Sainsbury's", - "shop": "supermarket" - }, - "name": "Sainsbury's", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Lidl": { - "tags": { - "name": "Lidl", - "shop": "supermarket" - }, - "name": "Lidl", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Edeka": { - "tags": { - "name": "Edeka", - "shop": "supermarket" - }, - "name": "Edeka", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Coles": { - "tags": { - "name": "Coles", - "shop": "supermarket" - }, - "name": "Coles", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Iceland": { - "tags": { - "name": "Iceland", - "shop": "supermarket" - }, - "name": "Iceland", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Coop": { - "tags": { - "name": "Coop", - "shop": "supermarket" - }, - "name": "Coop", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Tesco": { - "tags": { - "name": "Tesco", - "shop": "supermarket" - }, - "name": "Tesco", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Woolworths": { - "tags": { - "name": "Woolworths", - "shop": "supermarket" - }, - "name": "Woolworths", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Zielpunkt": { - "tags": { - "name": "Zielpunkt", - "shop": "supermarket" - }, - "name": "Zielpunkt", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Nahkauf": { - "tags": { - "name": "Nahkauf", - "shop": "supermarket" - }, - "name": "Nahkauf", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Billa": { - "tags": { - "name": "Billa", - "shop": "supermarket" - }, - "name": "Billa", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Kaufland": { - "tags": { - "name": "Kaufland", - "shop": "supermarket" - }, - "name": "Kaufland", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Plus": { - "tags": { - "name": "Plus", - "shop": "supermarket" - }, - "name": "Plus", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/ALDI": { - "tags": { - "name": "ALDI", - "shop": "supermarket" - }, - "name": "ALDI", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Checkers": { - "tags": { - "name": "Checkers", - "shop": "supermarket" - }, - "name": "Checkers", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Tesco Metro": { - "tags": { - "name": "Tesco Metro", - "shop": "supermarket" - }, - "name": "Tesco Metro", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/NP": { - "tags": { - "name": "NP", - "shop": "supermarket" - }, - "name": "NP", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Penny": { - "tags": { - "name": "Penny", - "shop": "supermarket" - }, - "name": "Penny", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Norma": { - "tags": { - "name": "Norma", - "shop": "supermarket" - }, - "name": "Norma", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Asda": { - "tags": { - "name": "Asda", - "shop": "supermarket" - }, - "name": "Asda", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Netto": { - "tags": { - "name": "Netto", - "shop": "supermarket" - }, - "name": "Netto", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Rewe": { - "tags": { - "name": "Rewe", - "shop": "supermarket" - }, - "name": "Rewe", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Aldi Süd": { - "tags": { - "name": "Aldi Süd", - "shop": "supermarket" - }, - "name": "Aldi Süd", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Real": { - "tags": { - "name": "Real", - "shop": "supermarket" - }, - "name": "Real", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/King Soopers": { - "tags": { - "name": "King Soopers", - "shop": "supermarket" - }, - "name": "King Soopers", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Kiwi": { - "tags": { - "name": "Kiwi", - "shop": "supermarket" - }, - "name": "Kiwi", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Pick n Pay": { - "tags": { - "name": "Pick n Pay", - "shop": "supermarket" - }, - "name": "Pick n Pay", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/ICA": { - "tags": { - "name": "ICA", - "shop": "supermarket" - }, - "name": "ICA", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Tengelmann": { - "tags": { - "name": "Tengelmann", - "shop": "supermarket" - }, - "name": "Tengelmann", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Carrefour": { - "tags": { - "name": "Carrefour", - "shop": "supermarket" - }, - "name": "Carrefour", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Waitrose": { - "tags": { - "name": "Waitrose", - "shop": "supermarket" - }, - "name": "Waitrose", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Spar": { - "tags": { - "name": "Spar", - "shop": "supermarket" - }, - "name": "Spar", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Hofer": { - "tags": { - "name": "Hofer", - "shop": "supermarket" - }, - "name": "Hofer", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/M-Preis": { - "tags": { - "name": "M-Preis", - "shop": "supermarket" - }, - "name": "M-Preis", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/tegut": { - "tags": { - "name": "tegut", - "shop": "supermarket" - }, - "name": "tegut", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Sainsbury's Local": { - "tags": { - "name": "Sainsbury's Local", - "shop": "supermarket" - }, - "name": "Sainsbury's Local", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/E-Center": { - "tags": { - "name": "E-Center", - "shop": "supermarket" - }, - "name": "E-Center", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Aldi Nord": { - "tags": { - "name": "Aldi Nord", - "shop": "supermarket" - }, - "name": "Aldi Nord", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/nahkauf": { - "tags": { - "name": "nahkauf", - "shop": "supermarket" - }, - "name": "nahkauf", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Meijer": { - "tags": { - "name": "Meijer", - "shop": "supermarket" - }, - "name": "Meijer", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Safeway": { - "tags": { - "name": "Safeway", - "shop": "supermarket" - }, - "name": "Safeway", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Costco": { - "tags": { - "name": "Costco", - "shop": "supermarket" - }, - "name": "Costco", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Albert": { - "tags": { - "name": "Albert", - "shop": "supermarket" - }, - "name": "Albert", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Jumbo": { - "tags": { - "name": "Jumbo", - "shop": "supermarket" - }, - "name": "Jumbo", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Shoprite": { - "tags": { - "name": "Shoprite", - "shop": "supermarket" - }, - "name": "Shoprite", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/MPreis": { - "tags": { - "name": "MPreis", - "shop": "supermarket" - }, - "name": "MPreis", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Penny Market": { - "tags": { - "name": "Penny Market", - "shop": "supermarket" - }, - "name": "Penny Market", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Tesco Extra": { - "tags": { - "name": "Tesco Extra", - "shop": "supermarket" - }, - "name": "Tesco Extra", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Albert Heijn": { - "tags": { - "name": "Albert Heijn", - "shop": "supermarket" - }, - "name": "Albert Heijn", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/IGA": { - "tags": { - "name": "IGA", - "shop": "supermarket" - }, - "name": "IGA", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Super U": { - "tags": { - "name": "Super U", - "shop": "supermarket" - }, - "name": "Super U", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Metro": { - "tags": { - "name": "Metro", - "shop": "supermarket" - }, - "name": "Metro", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Neukauf": { - "tags": { - "name": "Neukauf", - "shop": "supermarket" - }, - "name": "Neukauf", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Migros": { - "tags": { - "name": "Migros", - "shop": "supermarket" - }, - "name": "Migros", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Marktkauf": { - "tags": { - "name": "Marktkauf", - "shop": "supermarket" - }, - "name": "Marktkauf", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Delikatesy Centrum": { - "tags": { - "name": "Delikatesy Centrum", - "shop": "supermarket" - }, - "name": "Delikatesy Centrum", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/C1000": { - "tags": { - "name": "C1000", - "shop": "supermarket" - }, - "name": "C1000", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Hoogvliet": { - "tags": { - "name": "Hoogvliet", - "shop": "supermarket" - }, - "name": "Hoogvliet", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Food Basics": { - "tags": { - "name": "Food Basics", - "shop": "supermarket" - }, - "name": "Food Basics", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Casino": { - "tags": { - "name": "Casino", - "shop": "supermarket" - }, - "name": "Casino", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Penny Markt": { - "tags": { - "name": "Penny Markt", - "shop": "supermarket" - }, - "name": "Penny Markt", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Giant": { - "tags": { - "name": "Giant", - "shop": "supermarket" - }, - "name": "Giant", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Rema 1000": { - "tags": { - "name": "Rema 1000", - "shop": "supermarket" - }, - "name": "Rema 1000", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Kaufpark": { - "tags": { - "name": "Kaufpark", - "shop": "supermarket" - }, - "name": "Kaufpark", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/ALDI SÜD": { - "tags": { - "name": "ALDI SÜD", - "shop": "supermarket" - }, - "name": "ALDI SÜD", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Simply Market": { - "tags": { - "name": "Simply Market", - "shop": "supermarket" - }, - "name": "Simply Market", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Konzum": { - "tags": { - "name": "Konzum", - "shop": "supermarket" - }, - "name": "Konzum", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Carrefour Express": { - "tags": { - "name": "Carrefour Express", - "shop": "supermarket" - }, - "name": "Carrefour Express", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Eurospar": { - "tags": { - "name": "Eurospar", - "shop": "supermarket" - }, - "name": "Eurospar", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Mercator": { - "tags": { - "name": "Mercator", - "shop": "supermarket" - }, - "name": "Mercator", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Famila": { - "tags": { - "name": "Famila", - "shop": "supermarket" - }, - "name": "Famila", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Hemköp": { - "tags": { - "name": "Hemköp", - "shop": "supermarket" - }, - "name": "Hemköp", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/real,-": { - "tags": { - "name": "real,-", - "shop": "supermarket" - }, - "name": "real,-", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Markant": { - "tags": { - "name": "Markant", - "shop": "supermarket" - }, - "name": "Markant", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Volg": { - "tags": { - "name": "Volg", - "shop": "supermarket" - }, - "name": "Volg", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Leader Price": { - "tags": { - "name": "Leader Price", - "shop": "supermarket" - }, - "name": "Leader Price", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Treff 3000": { - "tags": { - "name": "Treff 3000", - "shop": "supermarket" - }, - "name": "Treff 3000", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/SuperBrugsen": { - "tags": { - "name": "SuperBrugsen", - "shop": "supermarket" - }, - "name": "SuperBrugsen", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Kaiser's": { - "tags": { - "name": "Kaiser's", - "shop": "supermarket" - }, - "name": "Kaiser's", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/K+K": { - "tags": { - "name": "K+K", - "shop": "supermarket" - }, - "name": "K+K", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Unimarkt": { - "tags": { - "name": "Unimarkt", - "shop": "supermarket" - }, - "name": "Unimarkt", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Carrefour City": { - "tags": { - "name": "Carrefour City", - "shop": "supermarket" - }, - "name": "Carrefour City", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Sobeys": { - "tags": { - "name": "Sobeys", - "shop": "supermarket" - }, - "name": "Sobeys", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/S-Market": { - "tags": { - "name": "S-Market", - "shop": "supermarket" - }, - "name": "S-Market", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Combi": { - "tags": { - "name": "Combi", - "shop": "supermarket" - }, - "name": "Combi", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Denner": { - "tags": { - "name": "Denner", - "shop": "supermarket" - }, - "name": "Denner", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Konsum": { - "tags": { - "name": "Konsum", - "shop": "supermarket" - }, - "name": "Konsum", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Franprix": { - "tags": { - "name": "Franprix", - "shop": "supermarket" - }, - "name": "Franprix", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Monoprix": { - "tags": { - "name": "Monoprix", - "shop": "supermarket" - }, - "name": "Monoprix", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Diska": { - "tags": { - "name": "Diska", - "shop": "supermarket" - }, - "name": "Diska", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/PENNY": { - "tags": { - "name": "PENNY", - "shop": "supermarket" - }, - "name": "PENNY", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Dia": { - "tags": { - "name": "Dia", - "shop": "supermarket" - }, - "name": "Dia", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Giant Eagle": { - "tags": { - "name": "Giant Eagle", - "shop": "supermarket" - }, - "name": "Giant Eagle", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/NORMA": { - "tags": { - "name": "NORMA", - "shop": "supermarket" - }, - "name": "NORMA", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/AD Delhaize": { - "tags": { - "name": "AD Delhaize", - "shop": "supermarket" - }, - "name": "AD Delhaize", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Auchan": { - "tags": { - "name": "Auchan", - "shop": "supermarket" - }, - "name": "Auchan", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Mercadona": { - "tags": { - "name": "Mercadona", - "shop": "supermarket" - }, - "name": "Mercadona", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Consum": { - "tags": { - "name": "Consum", - "shop": "supermarket" - }, - "name": "Consum", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Carrefour Market": { - "tags": { - "name": "Carrefour Market", - "shop": "supermarket" - }, - "name": "Carrefour Market", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Whole Foods": { - "tags": { - "name": "Whole Foods", - "shop": "supermarket" - }, - "name": "Whole Foods", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Pam": { - "tags": { - "name": "Pam", - "shop": "supermarket" - }, - "name": "Pam", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/sky": { - "tags": { - "name": "sky", - "shop": "supermarket" - }, - "name": "sky", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Despar": { - "tags": { - "name": "Despar", - "shop": "supermarket" - }, - "name": "Despar", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Eroski": { - "tags": { - "name": "Eroski", - "shop": "supermarket" - }, - "name": "Eroski", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Maxi": { - "tags": { - "name": "Maxi", - "shop": "supermarket" - }, - "name": "Maxi", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Colruyt": { - "tags": { - "name": "Colruyt", - "shop": "supermarket" - }, - "name": "Colruyt", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/The Co-operative": { - "tags": { - "name": "The Co-operative", - "shop": "supermarket" - }, - "name": "The Co-operative", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Intermarché": { - "tags": { - "name": "Intermarché", - "shop": "supermarket" - }, - "name": "Intermarché", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Delhaize": { - "tags": { - "name": "Delhaize", - "shop": "supermarket" - }, - "name": "Delhaize", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/CBA": { - "tags": { - "name": "CBA", - "shop": "supermarket" - }, - "name": "CBA", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Shopi": { - "tags": { - "name": "Shopi", - "shop": "supermarket" - }, - "name": "Shopi", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Walmart": { - "tags": { - "name": "Walmart", - "shop": "supermarket" - }, - "name": "Walmart", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Kroger": { - "tags": { - "name": "Kroger", - "shop": "supermarket" - }, - "name": "Kroger", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Albertsons": { - "tags": { - "name": "Albertsons", - "shop": "supermarket" - }, - "name": "Albertsons", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Trader Joe's": { - "tags": { - "name": "Trader Joe's", - "shop": "supermarket" - }, - "name": "Trader Joe's", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Feneberg": { - "tags": { - "name": "Feneberg", - "shop": "supermarket" - }, - "name": "Feneberg", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/denn's Biomarkt": { - "tags": { - "name": "denn's Biomarkt", - "shop": "supermarket" - }, - "name": "denn's Biomarkt", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Kvickly": { - "tags": { - "name": "Kvickly", - "shop": "supermarket" - }, - "name": "Kvickly", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Makro": { - "tags": { - "name": "Makro", - "shop": "supermarket" - }, - "name": "Makro", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Dico": { - "tags": { - "name": "Dico", - "shop": "supermarket" - }, - "name": "Dico", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Nah & Frisch": { - "tags": { - "name": "Nah & Frisch", - "shop": "supermarket" - }, - "name": "Nah & Frisch", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Champion": { - "tags": { - "name": "Champion", - "shop": "supermarket" - }, - "name": "Champion", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/ICA Supermarket": { - "tags": { - "name": "ICA Supermarket", - "shop": "supermarket" - }, - "name": "ICA Supermarket", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Fakta": { - "tags": { - "name": "Fakta", - "shop": "supermarket" - }, - "name": "Fakta", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Магнит": { - "tags": { - "name": "Магнит", - "shop": "supermarket" - }, - "name": "Магнит", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Caprabo": { - "tags": { - "name": "Caprabo", - "shop": "supermarket" - }, - "name": "Caprabo", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Famiglia Cooperativa": { - "tags": { - "name": "Famiglia Cooperativa", - "shop": "supermarket" - }, - "name": "Famiglia Cooperativa", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Народная 7Я семьЯ": { - "tags": { - "name": "Народная 7Я семьЯ", - "shop": "supermarket" - }, - "name": "Народная 7Я семьЯ", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Esselunga": { - "tags": { - "name": "Esselunga", - "shop": "supermarket" - }, - "name": "Esselunga", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Maxima": { - "tags": { - "name": "Maxima", - "shop": "supermarket" - }, - "name": "Maxima", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Wasgau": { - "tags": { - "name": "Wasgau", - "shop": "supermarket" - }, - "name": "Wasgau", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Pingo Doce": { - "tags": { - "name": "Pingo Doce", - "shop": "supermarket" - }, - "name": "Pingo Doce", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Match": { - "tags": { - "name": "Match", - "shop": "supermarket" - }, - "name": "Match", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Profi": { - "tags": { - "name": "Profi", - "shop": "supermarket" - }, - "name": "Profi", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Lider": { - "tags": { - "name": "Lider", - "shop": "supermarket" - }, - "name": "Lider", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Unimarc": { - "tags": { - "name": "Unimarc", - "shop": "supermarket" - }, - "name": "Unimarc", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/The Co-operative Food": { - "tags": { - "name": "The Co-operative Food", - "shop": "supermarket" - }, - "name": "The Co-operative Food", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Santa Isabel": { - "tags": { - "name": "Santa Isabel", - "shop": "supermarket" - }, - "name": "Santa Isabel", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Седьмой континент": { - "tags": { - "name": "Седьмой континент", - "shop": "supermarket" - }, - "name": "Седьмой континент", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/HIT": { - "tags": { - "name": "HIT", - "shop": "supermarket" - }, - "name": "HIT", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Rimi": { - "tags": { - "name": "Rimi", - "shop": "supermarket" - }, - "name": "Rimi", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Conad": { - "tags": { - "name": "Conad", - "shop": "supermarket" - }, - "name": "Conad", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Фуршет": { - "tags": { - "name": "Фуршет", - "shop": "supermarket" - }, - "name": "Фуршет", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Willys": { - "tags": { - "name": "Willys", - "shop": "supermarket" - }, - "name": "Willys", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Farmfoods": { - "tags": { - "name": "Farmfoods", - "shop": "supermarket" - }, - "name": "Farmfoods", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/U Express": { - "tags": { - "name": "U Express", - "shop": "supermarket" - }, - "name": "U Express", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Фора": { - "tags": { - "name": "Фора", - "shop": "supermarket" - }, - "name": "Фора", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Dunnes Stores": { - "tags": { - "name": "Dunnes Stores", - "shop": "supermarket" - }, - "name": "Dunnes Stores", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Сільпо": { - "tags": { - "name": "Сільпо", - "shop": "supermarket" - }, - "name": "Сільпо", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/マルエツ": { - "tags": { - "name": "マルエツ", - "shop": "supermarket" - }, - "name": "マルエツ", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Piggly Wiggly": { - "tags": { - "name": "Piggly Wiggly", - "shop": "supermarket" - }, - "name": "Piggly Wiggly", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Crai": { - "tags": { - "name": "Crai", - "shop": "supermarket" - }, - "name": "Crai", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/El Árbol": { - "tags": { - "name": "El Árbol", - "shop": "supermarket" - }, - "name": "El Árbol", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Centre Commercial E. Leclerc": { - "tags": { - "name": "Centre Commercial E. Leclerc", - "shop": "supermarket" - }, - "name": "Centre Commercial E. Leclerc", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Foodland": { - "tags": { - "name": "Foodland", - "shop": "supermarket" - }, - "name": "Foodland", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Super Brugsen": { - "tags": { - "name": "Super Brugsen", - "shop": "supermarket" - }, - "name": "Super Brugsen", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Дикси": { - "tags": { - "name": "Дикси", - "shop": "supermarket" - }, - "name": "Дикси", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Пятёрочка": { - "tags": { - "name": "Пятёрочка", - "shop": "supermarket" - }, - "name": "Пятёрочка", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Publix": { - "tags": { - "name": "Publix", - "shop": "supermarket" - }, - "name": "Publix", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Føtex": { - "tags": { - "name": "Føtex", - "shop": "supermarket" - }, - "name": "Føtex", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/coop": { - "tags": { - "name": "coop", - "shop": "supermarket" - }, - "name": "coop", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Coop Konsum": { - "tags": { - "name": "Coop Konsum", - "shop": "supermarket" - }, - "name": "Coop Konsum", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Carrefour Contact": { - "tags": { - "name": "Carrefour Contact", - "shop": "supermarket" - }, - "name": "Carrefour Contact", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/No Frills": { - "tags": { - "name": "No Frills", - "shop": "supermarket" - }, - "name": "No Frills", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Plodine": { - "tags": { - "name": "Plodine", - "shop": "supermarket" - }, - "name": "Plodine", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/ADEG": { - "tags": { - "name": "ADEG", - "shop": "supermarket" - }, - "name": "ADEG", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Minipreço": { - "tags": { - "name": "Minipreço", - "shop": "supermarket" - }, - "name": "Minipreço", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Biedronka": { - "tags": { - "name": "Biedronka", - "shop": "supermarket" - }, - "name": "Biedronka", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Eurospin": { - "tags": { - "name": "Eurospin", - "shop": "supermarket" - }, - "name": "Eurospin", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Семья": { - "tags": { - "name": "Семья", - "shop": "supermarket" - }, - "name": "Семья", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Gadis": { - "tags": { - "name": "Gadis", - "shop": "supermarket" - }, - "name": "Gadis", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Евроопт": { - "tags": { - "name": "Евроопт", - "shop": "supermarket" - }, - "name": "Евроопт", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Квартал": { - "tags": { - "name": "Квартал", - "shop": "supermarket" - }, - "name": "Квартал", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/New World": { - "tags": { - "name": "New World", - "shop": "supermarket" - }, - "name": "New World", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Countdown": { - "tags": { - "name": "Countdown", - "shop": "supermarket" - }, - "name": "Countdown", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Reliance Fresh": { - "tags": { - "name": "Reliance Fresh", - "shop": "supermarket" - }, - "name": "Reliance Fresh", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Stokrotka": { - "tags": { - "name": "Stokrotka", - "shop": "supermarket" - }, - "name": "Stokrotka", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Coop Jednota": { - "tags": { - "name": "Coop Jednota", - "shop": "supermarket" - }, - "name": "Coop Jednota", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Fred Meyer": { - "tags": { - "name": "Fred Meyer", - "shop": "supermarket" - }, - "name": "Fred Meyer", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Irma": { - "tags": { - "name": "Irma", - "shop": "supermarket" - }, - "name": "Irma", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Continente": { - "tags": { - "name": "Continente", - "shop": "supermarket" - }, - "name": "Continente", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Price Chopper": { - "tags": { - "name": "Price Chopper", - "shop": "supermarket" - }, - "name": "Price Chopper", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Game": { - "tags": { - "name": "Game", - "shop": "supermarket" - }, - "name": "Game", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Soriana": { - "tags": { - "name": "Soriana", - "shop": "supermarket" - }, - "name": "Soriana", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Alimerka": { - "tags": { - "name": "Alimerka", - "shop": "supermarket" - }, - "name": "Alimerka", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Piotr i Paweł": { - "tags": { - "name": "Piotr i Paweł", - "shop": "supermarket" - }, - "name": "Piotr i Paweł", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Перекресток": { - "tags": { - "name": "Перекресток", - "shop": "supermarket" - }, - "name": "Перекресток", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Maxima X": { - "tags": { - "name": "Maxima X", - "shop": "supermarket" - }, - "name": "Maxima X", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Карусель": { - "tags": { - "name": "Карусель", - "shop": "supermarket" - }, - "name": "Карусель", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/ALDI Nord": { - "tags": { - "name": "ALDI Nord", - "shop": "supermarket" - }, - "name": "ALDI Nord", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Condis": { - "tags": { - "name": "Condis", - "shop": "supermarket" - }, - "name": "Condis", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Sam's Club": { - "tags": { - "name": "Sam's Club", - "shop": "supermarket" - }, - "name": "Sam's Club", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Копейка": { - "tags": { - "name": "Копейка", - "shop": "supermarket" - }, - "name": "Копейка", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Géant Casino": { - "tags": { - "name": "Géant Casino", - "shop": "supermarket" - }, - "name": "Géant Casino", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/ASDA": { - "tags": { - "name": "ASDA", - "shop": "supermarket" - }, - "name": "ASDA", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Intermarche": { - "tags": { - "name": "Intermarche", - "shop": "supermarket" - }, - "name": "Intermarche", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Stop & Shop": { - "tags": { - "name": "Stop & Shop", - "shop": "supermarket" - }, - "name": "Stop & Shop", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Food Lion": { - "tags": { - "name": "Food Lion", - "shop": "supermarket" - }, - "name": "Food Lion", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Harris Teeter": { - "tags": { - "name": "Harris Teeter", - "shop": "supermarket" - }, - "name": "Harris Teeter", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Foodworks": { - "tags": { - "name": "Foodworks", - "shop": "supermarket" - }, - "name": "Foodworks", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Polo Market": { - "tags": { - "name": "Polo Market", - "shop": "supermarket" - }, - "name": "Polo Market", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Лента": { - "tags": { - "name": "Лента", - "shop": "supermarket" - }, - "name": "Лента", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/西友 (SEIYU)": { - "tags": { - "name": "西友 (SEIYU)", - "shop": "supermarket" - }, - "name": "西友 (SEIYU)", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/H-E-B": { - "tags": { - "name": "H-E-B", - "shop": "supermarket" - }, - "name": "H-E-B", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Атак": { - "tags": { - "name": "Атак", - "shop": "supermarket" - }, - "name": "Атак", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Полушка": { - "tags": { - "name": "Полушка", - "shop": "supermarket" - }, - "name": "Полушка", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Extra": { - "tags": { - "name": "Extra", - "shop": "supermarket" - }, - "name": "Extra", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Sigma": { - "tags": { - "name": "Sigma", - "shop": "supermarket" - }, - "name": "Sigma", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/АТБ": { - "tags": { - "name": "АТБ", - "shop": "supermarket" - }, - "name": "АТБ", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Bodega Aurrera": { - "tags": { - "name": "Bodega Aurrera", - "shop": "supermarket" - }, - "name": "Bodega Aurrera", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Tesco Lotus": { - "tags": { - "name": "Tesco Lotus", - "shop": "supermarket" - }, - "name": "Tesco Lotus", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Мария-Ра": { - "tags": { - "name": "Мария-Ра", - "shop": "supermarket" - }, - "name": "Мария-Ра", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Магнолия": { - "tags": { - "name": "Магнолия", - "shop": "supermarket" - }, - "name": "Магнолия", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Монетка": { - "tags": { - "name": "Монетка", - "shop": "supermarket" - }, - "name": "Монетка", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Hy-Vee": { - "tags": { - "name": "Hy-Vee", - "shop": "supermarket" - }, - "name": "Hy-Vee", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Walmart Supercenter": { - "tags": { - "name": "Walmart Supercenter", - "shop": "supermarket" - }, - "name": "Walmart Supercenter", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Hannaford": { - "tags": { - "name": "Hannaford", - "shop": "supermarket" - }, - "name": "Hannaford", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Wegmans": { - "tags": { - "name": "Wegmans", - "shop": "supermarket" - }, - "name": "Wegmans", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/業務スーパー": { - "tags": { - "name": "業務スーパー", - "shop": "supermarket" - }, - "name": "業務スーパー", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Norfa XL": { - "tags": { - "name": "Norfa XL", - "shop": "supermarket" - }, - "name": "Norfa XL", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/ヨークマート (YorkMart)": { - "tags": { - "name": "ヨークマート (YorkMart)", - "shop": "supermarket" - }, - "name": "ヨークマート (YorkMart)", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/Leclerc Drive": { - "tags": { - "name": "Leclerc Drive", - "shop": "supermarket" - }, - "name": "Leclerc Drive", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/electronics/Media Markt": { - "tags": { - "name": "Media Markt", - "shop": "electronics" - }, - "name": "Media Markt", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/electronics/Maplin": { - "tags": { - "name": "Maplin", - "shop": "electronics" - }, - "name": "Maplin", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/electronics/Best Buy": { - "tags": { - "name": "Best Buy", - "shop": "electronics" - }, - "name": "Best Buy", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/electronics/Future Shop": { - "tags": { - "name": "Future Shop", - "shop": "electronics" - }, - "name": "Future Shop", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/electronics/Saturn": { - "tags": { - "name": "Saturn", - "shop": "electronics" - }, - "name": "Saturn", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/electronics/Currys": { - "tags": { - "name": "Currys", - "shop": "electronics" - }, - "name": "Currys", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/electronics/Radio Shack": { - "tags": { - "name": "Radio Shack", - "shop": "electronics" - }, - "name": "Radio Shack", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/electronics/Euronics": { - "tags": { - "name": "Euronics", - "shop": "electronics" - }, - "name": "Euronics", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/electronics/Expert": { - "tags": { - "name": "Expert", - "shop": "electronics" - }, - "name": "Expert", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/electronics/Эльдорадо": { - "tags": { - "name": "Эльдорадо", - "shop": "electronics" - }, - "name": "Эльдорадо", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/electronics/Darty": { - "tags": { - "name": "Darty", - "shop": "electronics" - }, - "name": "Darty", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/electronics/М.Видео": { - "tags": { - "name": "М.Видео", - "shop": "electronics" - }, - "name": "М.Видео", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/electronics/ヤマダ電機": { - "tags": { - "name": "ヤマダ電機", - "shop": "electronics" - }, - "name": "ヤマダ電機", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/McColl's": { - "tags": { - "name": "McColl's", - "shop": "convenience" - }, - "name": "McColl's", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Tesco Express": { - "tags": { - "name": "Tesco Express", - "shop": "convenience" - }, - "name": "Tesco Express", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/One Stop": { - "tags": { - "name": "One Stop", - "shop": "convenience" - }, - "name": "One Stop", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Londis": { - "tags": { - "name": "Londis", - "shop": "convenience" - }, - "name": "Londis", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/7-Eleven": { - "tags": { - "name": "7-Eleven", - "shop": "convenience" - }, - "name": "7-Eleven", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Sale": { - "tags": { - "name": "Sale", - "shop": "convenience" - }, - "name": "Sale", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Siwa": { - "tags": { - "name": "Siwa", - "shop": "convenience" - }, - "name": "Siwa", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/COOP Jednota": { - "tags": { - "name": "COOP Jednota", - "shop": "convenience" - }, - "name": "COOP Jednota", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Mac's": { - "tags": { - "name": "Mac's", - "shop": "convenience" - }, - "name": "Mac's", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Alepa": { - "tags": { - "name": "Alepa", - "shop": "convenience" - }, - "name": "Alepa", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Hasty Market": { - "tags": { - "name": "Hasty Market", - "shop": "convenience" - }, - "name": "Hasty Market", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/K-Market": { - "tags": { - "name": "K-Market", - "shop": "convenience" - }, - "name": "K-Market", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Costcutter": { - "tags": { - "name": "Costcutter", - "shop": "convenience" - }, - "name": "Costcutter", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Valintatalo": { - "tags": { - "name": "Valintatalo", - "shop": "convenience" - }, - "name": "Valintatalo", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Circle K": { - "tags": { - "name": "Circle K", - "shop": "convenience" - }, - "name": "Circle K", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/セブンイレブン": { - "tags": { - "name": "セブンイレブン", - "name:en": "7-Eleven", - "shop": "convenience" - }, - "name": "セブンイレブン", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/ローソン": { - "tags": { - "name": "ローソン", - "name:en": "LAWSON", - "shop": "convenience" - }, - "name": "ローソン", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Petit Casino": { - "tags": { - "name": "Petit Casino", - "shop": "convenience" - }, - "name": "Petit Casino", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Mace": { - "tags": { - "name": "Mace", - "shop": "convenience" - }, - "name": "Mace", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Mini Market": { - "tags": { - "name": "Mini Market", - "shop": "convenience" - }, - "name": "Mini Market", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Nisa Local": { - "tags": { - "name": "Nisa Local", - "shop": "convenience" - }, - "name": "Nisa Local", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Dorfladen": { - "tags": { - "name": "Dorfladen", - "shop": "convenience" - }, - "name": "Dorfladen", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Продукты": { - "tags": { - "name": "Продукты", - "shop": "convenience" - }, - "name": "Продукты", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Mini Stop": { - "tags": { - "name": "Mini Stop", - "shop": "convenience" - }, - "name": "Mini Stop", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/LAWSON": { - "tags": { - "name": "LAWSON", - "shop": "convenience" - }, - "name": "LAWSON", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/デイリーヤマザキ": { - "tags": { - "name": "デイリーヤマザキ", - "shop": "convenience" - }, - "name": "デイリーヤマザキ", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Надежда": { - "tags": { - "name": "Надежда", - "shop": "convenience" - }, - "name": "Надежда", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Nisa": { - "tags": { - "name": "Nisa", - "shop": "convenience" - }, - "name": "Nisa", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Premier": { - "tags": { - "name": "Premier", - "shop": "convenience" - }, - "name": "Premier", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/ABC": { - "tags": { - "name": "ABC", - "shop": "convenience" - }, - "name": "ABC", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/ミニストップ": { - "tags": { - "name": "ミニストップ", - "name:en": "MINISTOP", - "shop": "convenience" - }, - "name": "ミニストップ", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/サンクス": { - "tags": { - "name": "サンクス", - "name:en": "sunkus", - "shop": "convenience" - }, - "name": "サンクス", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/スリーエフ": { - "tags": { - "name": "スリーエフ", - "shop": "convenience" - }, - "name": "スリーエフ", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/8 à Huit": { - "tags": { - "name": "8 à Huit", - "shop": "convenience" - }, - "name": "8 à Huit", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Żabka": { - "tags": { - "name": "Żabka", - "shop": "convenience" - }, - "name": "Żabka", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Almacen": { - "tags": { - "name": "Almacen", - "shop": "convenience" - }, - "name": "Almacen", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Vival": { - "tags": { - "name": "Vival", - "shop": "convenience" - }, - "name": "Vival", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/FamilyMart": { - "tags": { - "name": "FamilyMart", - "shop": "convenience" - }, - "name": "FamilyMart", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/ファミリーマート": { - "tags": { - "name": "ファミリーマート", - "name:en": "FamilyMart", - "shop": "convenience" - }, - "name": "ファミリーマート", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Sunkus": { - "tags": { - "name": "Sunkus", - "shop": "convenience" - }, - "name": "Sunkus", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/セブンイレブン(Seven-Eleven)": { - "tags": { - "name": "セブンイレブン(Seven-Eleven)", - "shop": "convenience" - }, - "name": "セブンイレブン(Seven-Eleven)", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Jednota": { - "tags": { - "name": "Jednota", - "shop": "convenience" - }, - "name": "Jednota", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Магазин": { - "tags": { - "name": "Магазин", - "shop": "convenience" - }, - "name": "Магазин", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Гастроном": { - "tags": { - "name": "Гастроном", - "shop": "convenience" - }, - "name": "Гастроном", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Centra": { - "tags": { - "name": "Centra", - "shop": "convenience" - }, - "name": "Centra", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/サークルK": { - "tags": { - "name": "サークルK", - "name:en": "Circle K", - "shop": "convenience" - }, - "name": "サークルK", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Wawa": { - "tags": { - "name": "Wawa", - "shop": "convenience" - }, - "name": "Wawa", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Proxi": { - "tags": { - "name": "Proxi", - "shop": "convenience" - }, - "name": "Proxi", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Универсам": { - "tags": { - "name": "Универсам", - "shop": "convenience" - }, - "name": "Универсам", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Groszek": { - "tags": { - "name": "Groszek", - "shop": "convenience" - }, - "name": "Groszek", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Select": { - "tags": { - "name": "Select", - "shop": "convenience" - }, - "name": "Select", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Večerka": { - "tags": { - "name": "Večerka", - "shop": "convenience" - }, - "name": "Večerka", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Potraviny": { - "tags": { - "name": "Potraviny", - "shop": "convenience" - }, - "name": "Potraviny", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Смак": { - "tags": { - "name": "Смак", - "shop": "convenience" - }, - "name": "Смак", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Эконом": { - "tags": { - "name": "Эконом", - "shop": "convenience" - }, - "name": "Эконом", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Березка": { - "tags": { - "name": "Березка", - "shop": "convenience" - }, - "name": "Березка", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Społem": { - "tags": { - "name": "Społem", - "shop": "convenience" - }, - "name": "Społem", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Cumberland Farms": { - "tags": { - "name": "Cumberland Farms", - "shop": "convenience" - }, - "name": "Cumberland Farms", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Tesco Lotus Express": { - "tags": { - "name": "Tesco Lotus Express", - "shop": "convenience" - }, - "name": "Tesco Lotus Express", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Kiosk": { - "tags": { - "name": "Kiosk", - "shop": "convenience" - }, - "name": "Kiosk", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Sklep spożywczy": { - "tags": { - "name": "Sklep spożywczy", - "shop": "convenience" - }, - "name": "Sklep spożywczy", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/24 часа": { - "tags": { - "name": "24 часа", - "shop": "convenience" - }, - "name": "24 часа", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Минимаркет": { - "tags": { - "name": "Минимаркет", - "shop": "convenience" - }, - "name": "Минимаркет", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Oxxo": { - "tags": { - "name": "Oxxo", - "shop": "convenience" - }, - "name": "Oxxo", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/abc": { - "tags": { - "name": "abc", - "shop": "convenience" - }, - "name": "abc", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/7/11": { - "tags": { - "name": "7/11", - "shop": "convenience" - }, - "name": "7/11", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Stewart's": { - "tags": { - "name": "Stewart's", - "shop": "convenience" - }, - "name": "Stewart's", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Продукти": { - "tags": { - "name": "Продукти", - "shop": "convenience" - }, - "name": "Продукти", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/ローソンストア100 (LAWSON STORE 100)": { - "tags": { - "name": "ローソンストア100 (LAWSON STORE 100)", - "shop": "convenience" - }, - "name": "ローソンストア100 (LAWSON STORE 100)", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Радуга": { - "tags": { - "name": "Радуга", - "shop": "convenience" - }, - "name": "Радуга", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/ローソンストア100": { - "tags": { - "name": "ローソンストア100", - "shop": "convenience" - }, - "name": "ローソンストア100", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/เซเว่นอีเลฟเว่น": { - "tags": { - "name": "เซเว่นอีเลฟเว่น", - "shop": "convenience" - }, - "name": "เซเว่นอีเลฟเว่น", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Фортуна": { - "tags": { - "name": "Фортуна", - "shop": "convenience" - }, - "name": "Фортуна", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Picard": { - "tags": { - "name": "Picard", - "shop": "convenience" - }, - "name": "Picard", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Four Square": { - "tags": { - "name": "Four Square", - "shop": "convenience" - }, - "name": "Four Square", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Визит": { - "tags": { - "name": "Визит", - "shop": "convenience" - }, - "name": "Визит", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Авоська": { - "tags": { - "name": "Авоська", - "shop": "convenience" - }, - "name": "Авоська", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Dollar General": { - "tags": { - "name": "Dollar General", - "shop": "convenience" - }, - "name": "Dollar General", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Studenac": { - "tags": { - "name": "Studenac", - "shop": "convenience" - }, - "name": "Studenac", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Central Convenience Store": { - "tags": { - "name": "Central Convenience Store", - "shop": "convenience" - }, - "name": "Central Convenience Store", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/продукты": { - "tags": { - "name": "продукты", - "shop": "convenience" - }, - "name": "продукты", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Кулинария": { - "tags": { - "name": "Кулинария", - "shop": "convenience" - }, - "name": "Кулинария", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/全家": { - "tags": { - "name": "全家", - "shop": "convenience" - }, - "name": "全家", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Мечта": { - "tags": { - "name": "Мечта", - "shop": "convenience" - }, - "name": "Мечта", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Epicerie": { - "tags": { - "name": "Epicerie", - "shop": "convenience" - }, - "name": "Epicerie", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Кировский": { - "tags": { - "name": "Кировский", - "shop": "convenience" - }, - "name": "Кировский", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Food Mart": { - "tags": { - "name": "Food Mart", - "shop": "convenience" - }, - "name": "Food Mart", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Delikatesy": { - "tags": { - "name": "Delikatesy", - "shop": "convenience" - }, - "name": "Delikatesy", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/ポプラ": { - "tags": { - "name": "ポプラ", - "shop": "convenience" - }, - "name": "ポプラ", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Lewiatan": { - "tags": { - "name": "Lewiatan", - "shop": "convenience" - }, - "name": "Lewiatan", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Продуктовый магазин": { - "tags": { - "name": "Продуктовый магазин", - "shop": "convenience" - }, - "name": "Продуктовый магазин", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Продуктовый": { - "tags": { - "name": "Продуктовый", - "shop": "convenience" - }, - "name": "Продуктовый", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/セイコーマート (Seicomart)": { - "tags": { - "name": "セイコーマート (Seicomart)", - "shop": "convenience" - }, - "name": "セイコーマート (Seicomart)", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Виктория": { - "tags": { - "name": "Виктория", - "shop": "convenience" - }, - "name": "Виктория", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Весна": { - "tags": { - "name": "Весна", - "shop": "convenience" - }, - "name": "Весна", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Mini Market Non-Stop": { - "tags": { - "name": "Mini Market Non-Stop", - "shop": "convenience" - }, - "name": "Mini Market Non-Stop", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Копеечка": { - "tags": { - "name": "Копеечка", - "shop": "convenience" - }, - "name": "Копеечка", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Royal Farms": { - "tags": { - "name": "Royal Farms", - "shop": "convenience" - }, - "name": "Royal Farms", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Alfamart": { - "tags": { - "name": "Alfamart", - "shop": "convenience" - }, - "name": "Alfamart", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Indomaret": { - "tags": { - "name": "Indomaret", - "shop": "convenience" - }, - "name": "Indomaret", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/магазин": { - "tags": { - "name": "магазин", - "shop": "convenience" - }, - "name": "магазин", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/全家便利商店": { - "tags": { - "name": "全家便利商店", - "shop": "convenience" - }, - "name": "全家便利商店", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Boutique": { - "tags": { - "name": "Boutique", - "shop": "convenience" - }, - "name": "Boutique", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/მარკეტი (Market)": { - "tags": { - "name": "მარკეტი (Market)", - "shop": "convenience" - }, - "name": "მარკეტი (Market)", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Stores": { - "tags": { - "name": "Stores", - "shop": "convenience" - }, - "name": "Stores", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/chemist/dm": { - "tags": { - "name": "dm", - "shop": "chemist" - }, - "name": "dm", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/chemist/Müller": { - "tags": { - "name": "Müller", - "shop": "chemist" - }, - "name": "Müller", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/chemist/Schlecker": { - "tags": { - "name": "Schlecker", - "shop": "chemist" - }, - "name": "Schlecker", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/chemist/Etos": { - "tags": { - "name": "Etos", - "shop": "chemist" - }, - "name": "Etos", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/chemist/Bipa": { - "tags": { - "name": "Bipa", - "shop": "chemist" - }, - "name": "Bipa", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/chemist/Rossmann": { - "tags": { - "name": "Rossmann", - "shop": "chemist" - }, - "name": "Rossmann", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/chemist/DM Drogeriemarkt": { - "tags": { - "name": "DM Drogeriemarkt", - "shop": "chemist" - }, - "name": "DM Drogeriemarkt", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/chemist/Ihr Platz": { - "tags": { - "name": "Ihr Platz", - "shop": "chemist" - }, - "name": "Ihr Platz", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/chemist/Douglas": { - "tags": { - "name": "Douglas", - "shop": "chemist" - }, - "name": "Douglas", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/chemist/Kruidvat": { - "tags": { - "name": "Kruidvat", - "shop": "chemist" - }, - "name": "Kruidvat", - "icon": "grocery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/car_repair/Kwik Fit": { - "tags": { - "name": "Kwik Fit", - "shop": "car_repair" - }, - "name": "Kwik Fit", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/car_repair/ATU": { - "tags": { - "name": "ATU", - "shop": "car_repair" - }, - "name": "ATU", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/car_repair/Midas": { - "tags": { - "name": "Midas", - "shop": "car_repair" - }, - "name": "Midas", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/car_repair/Feu Vert": { - "tags": { - "name": "Feu Vert", - "shop": "car_repair" - }, - "name": "Feu Vert", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/car_repair/Norauto": { - "tags": { - "name": "Norauto", - "shop": "car_repair" - }, - "name": "Norauto", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/car_repair/Speedy": { - "tags": { - "name": "Speedy", - "shop": "car_repair" - }, - "name": "Speedy", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/car_repair/Pit Stop": { - "tags": { - "name": "Pit Stop", - "shop": "car_repair" - }, - "name": "Pit Stop", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/car_repair/Jiffy Lube": { - "tags": { - "name": "Jiffy Lube", - "shop": "car_repair" - }, - "name": "Jiffy Lube", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/car_repair/Шиномонтаж": { - "tags": { - "name": "Шиномонтаж", - "shop": "car_repair" - }, - "name": "Шиномонтаж", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/car_repair/СТО": { - "tags": { - "name": "СТО", - "shop": "car_repair" - }, - "name": "СТО", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/car_repair/O'Reilly Auto Parts": { - "tags": { - "name": "O'Reilly Auto Parts", - "shop": "car_repair" - }, - "name": "O'Reilly Auto Parts", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/car_repair/Carglass": { - "tags": { - "name": "Carglass", - "shop": "car_repair" - }, - "name": "Carglass", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/car_repair/шиномонтаж": { - "tags": { - "name": "шиномонтаж", - "shop": "car_repair" - }, - "name": "шиномонтаж", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/car_repair/Euromaster": { - "tags": { - "name": "Euromaster", - "shop": "car_repair" - }, - "name": "Euromaster", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/car_repair/Firestone": { - "tags": { - "name": "Firestone", - "shop": "car_repair" - }, - "name": "Firestone", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/car_repair/Автосервис": { - "tags": { - "name": "Автосервис", - "shop": "car_repair" - }, - "name": "Автосервис", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/car_repair/Advance Auto Parts": { - "tags": { - "name": "Advance Auto Parts", - "shop": "car_repair" - }, - "name": "Advance Auto Parts", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/car_repair/Roady": { - "tags": { - "name": "Roady", - "shop": "car_repair" - }, - "name": "Roady", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/furniture/IKEA": { - "tags": { - "name": "IKEA", - "shop": "furniture" - }, - "name": "IKEA", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/furniture/Jysk": { - "tags": { - "name": "Jysk", - "shop": "furniture" - }, - "name": "Jysk", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/furniture/Roller": { - "tags": { - "name": "Roller", - "shop": "furniture" - }, - "name": "Roller", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/furniture/Dänisches Bettenlager": { - "tags": { - "name": "Dänisches Bettenlager", - "shop": "furniture" - }, - "name": "Dänisches Bettenlager", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/furniture/Conforama": { - "tags": { - "name": "Conforama", - "shop": "furniture" - }, - "name": "Conforama", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/furniture/Matratzen Concord": { - "tags": { - "name": "Matratzen Concord", - "shop": "furniture" - }, - "name": "Matratzen Concord", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/furniture/Мебель": { - "tags": { - "name": "Мебель", - "shop": "furniture" - }, - "name": "Мебель", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/furniture/But": { - "tags": { - "name": "But", - "shop": "furniture" - }, - "name": "But", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Hornbach": { - "tags": { - "name": "Hornbach", - "shop": "doityourself" - }, - "name": "Hornbach", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/B&Q": { - "tags": { - "name": "B&Q", - "shop": "doityourself" - }, - "name": "B&Q", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Hubo": { - "tags": { - "name": "Hubo", - "shop": "doityourself" - }, - "name": "Hubo", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Mr Bricolage": { - "tags": { - "name": "Mr Bricolage", - "shop": "doityourself" - }, - "name": "Mr Bricolage", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Gamma": { - "tags": { - "name": "Gamma", - "shop": "doityourself" - }, - "name": "Gamma", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/OBI": { - "tags": { - "name": "OBI", - "shop": "doityourself" - }, - "name": "OBI", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Lowes": { - "tags": { - "name": "Lowes", - "shop": "doityourself" - }, - "name": "Lowes", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Wickes": { - "tags": { - "name": "Wickes", - "shop": "doityourself" - }, - "name": "Wickes", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Hagebau": { - "tags": { - "name": "Hagebau", - "shop": "doityourself" - }, - "name": "Hagebau", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Max Bahr": { - "tags": { - "name": "Max Bahr", - "shop": "doityourself" - }, - "name": "Max Bahr", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Castorama": { - "tags": { - "name": "Castorama", - "shop": "doityourself" - }, - "name": "Castorama", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Rona": { - "tags": { - "name": "Rona", - "shop": "doityourself" - }, - "name": "Rona", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Home Depot": { - "tags": { - "name": "Home Depot", - "shop": "doityourself" - }, - "name": "Home Depot", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Toom Baumarkt": { - "tags": { - "name": "Toom Baumarkt", - "shop": "doityourself" - }, - "name": "Toom Baumarkt", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Homebase": { - "tags": { - "name": "Homebase", - "shop": "doityourself" - }, - "name": "Homebase", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Baumax": { - "tags": { - "name": "Baumax", - "shop": "doityourself" - }, - "name": "Baumax", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Lagerhaus": { - "tags": { - "name": "Lagerhaus", - "shop": "doityourself" - }, - "name": "Lagerhaus", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Bauhaus": { - "tags": { - "name": "Bauhaus", - "shop": "doityourself" - }, - "name": "Bauhaus", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Canadian Tire": { - "tags": { - "name": "Canadian Tire", - "shop": "doityourself" - }, - "name": "Canadian Tire", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Leroy Merlin": { - "tags": { - "name": "Leroy Merlin", - "shop": "doityourself" - }, - "name": "Leroy Merlin", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Hellweg": { - "tags": { - "name": "Hellweg", - "shop": "doityourself" - }, - "name": "Hellweg", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Brico": { - "tags": { - "name": "Brico", - "shop": "doityourself" - }, - "name": "Brico", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Bricomarché": { - "tags": { - "name": "Bricomarché", - "shop": "doityourself" - }, - "name": "Bricomarché", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Toom": { - "tags": { - "name": "Toom", - "shop": "doityourself" - }, - "name": "Toom", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Hagebaumarkt": { - "tags": { - "name": "Hagebaumarkt", - "shop": "doityourself" - }, - "name": "Hagebaumarkt", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Praktiker": { - "tags": { - "name": "Praktiker", - "shop": "doityourself" - }, - "name": "Praktiker", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Menards": { - "tags": { - "name": "Menards", - "shop": "doityourself" - }, - "name": "Menards", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Weldom": { - "tags": { - "name": "Weldom", - "shop": "doityourself" - }, - "name": "Weldom", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Bunnings Warehouse": { - "tags": { - "name": "Bunnings Warehouse", - "shop": "doityourself" - }, - "name": "Bunnings Warehouse", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Ace Hardware": { - "tags": { - "name": "Ace Hardware", - "shop": "doityourself" - }, - "name": "Ace Hardware", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Home Hardware": { - "tags": { - "name": "Home Hardware", - "shop": "doityourself" - }, - "name": "Home Hardware", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Стройматериалы": { - "tags": { - "name": "Стройматериалы", - "shop": "doityourself" - }, - "name": "Стройматериалы", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Bricorama": { - "tags": { - "name": "Bricorama", - "shop": "doityourself" - }, - "name": "Bricorama", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Point P": { - "tags": { - "name": "Point P", - "shop": "doityourself" - }, - "name": "Point P", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/stationery/Staples": { - "tags": { - "name": "Staples", - "shop": "stationery" - }, - "name": "Staples", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/stationery/McPaper": { - "tags": { - "name": "McPaper", - "shop": "stationery" - }, - "name": "McPaper", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/stationery/Office Depot": { - "tags": { - "name": "Office Depot", - "shop": "stationery" - }, - "name": "Office Depot", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/stationery/Канцтовары": { - "tags": { - "name": "Канцтовары", - "shop": "stationery" - }, - "name": "Канцтовары", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/car/Skoda": { - "tags": { - "name": "Skoda", - "shop": "car" - }, - "name": "Skoda", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/BMW": { - "tags": { - "name": "BMW", - "shop": "car" - }, - "name": "BMW", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/Citroen": { - "tags": { - "name": "Citroen", - "shop": "car" - }, - "name": "Citroen", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/Renault": { - "tags": { - "name": "Renault", - "shop": "car" - }, - "name": "Renault", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/Mercedes-Benz": { - "tags": { - "name": "Mercedes-Benz", - "shop": "car" - }, - "name": "Mercedes-Benz", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/Volvo": { - "tags": { - "name": "Volvo", - "shop": "car" - }, - "name": "Volvo", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/Ford": { - "tags": { - "name": "Ford", - "shop": "car" - }, - "name": "Ford", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/Volkswagen": { - "tags": { - "name": "Volkswagen", - "shop": "car" - }, - "name": "Volkswagen", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/Mazda": { - "tags": { - "name": "Mazda", - "shop": "car" - }, - "name": "Mazda", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/Mitsubishi": { - "tags": { - "name": "Mitsubishi", - "shop": "car" - }, - "name": "Mitsubishi", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/Fiat": { - "tags": { - "name": "Fiat", - "shop": "car" - }, - "name": "Fiat", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/Автозапчасти": { - "tags": { - "name": "Автозапчасти", - "shop": "car" - }, - "name": "Автозапчасти", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/Opel": { - "tags": { - "name": "Opel", - "shop": "car" - }, - "name": "Opel", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/Audi": { - "tags": { - "name": "Audi", - "shop": "car" - }, - "name": "Audi", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/Toyota": { - "tags": { - "name": "Toyota", - "shop": "car" - }, - "name": "Toyota", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/Nissan": { - "tags": { - "name": "Nissan", - "shop": "car" - }, - "name": "Nissan", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/Suzuki": { - "tags": { - "name": "Suzuki", - "shop": "car" - }, - "name": "Suzuki", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/Honda": { - "tags": { - "name": "Honda", - "shop": "car" - }, - "name": "Honda", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/Peugeot": { - "tags": { - "name": "Peugeot", - "shop": "car" - }, - "name": "Peugeot", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/Hyundai": { - "tags": { - "name": "Hyundai", - "shop": "car" - }, - "name": "Hyundai", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/Subaru": { - "tags": { - "name": "Subaru", - "shop": "car" - }, - "name": "Subaru", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/Chevrolet": { - "tags": { - "name": "Chevrolet", - "shop": "car" - }, - "name": "Chevrolet", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/car/Автомагазин": { - "tags": { - "name": "Автомагазин", - "shop": "car" - }, - "name": "Автомагазин", - "icon": "car", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "second_hand" - ], - "suggestion": true - }, - "shop/clothes/Matalan": { - "tags": { - "name": "Matalan", - "shop": "clothes" - }, - "name": "Matalan", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/KiK": { - "tags": { - "name": "KiK", - "shop": "clothes" - }, - "name": "KiK", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/H&M": { - "tags": { - "name": "H&M", - "shop": "clothes" - }, - "name": "H&M", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Urban Outfitters": { - "tags": { - "name": "Urban Outfitters", - "shop": "clothes" - }, - "name": "Urban Outfitters", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Vögele": { - "tags": { - "name": "Vögele", - "shop": "clothes" - }, - "name": "Vögele", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Zeeman": { - "tags": { - "name": "Zeeman", - "shop": "clothes" - }, - "name": "Zeeman", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Takko": { - "tags": { - "name": "Takko", - "shop": "clothes" - }, - "name": "Takko", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/C&A": { - "tags": { - "name": "C&A", - "shop": "clothes" - }, - "name": "C&A", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Zara": { - "tags": { - "name": "Zara", - "shop": "clothes" - }, - "name": "Zara", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Vero Moda": { - "tags": { - "name": "Vero Moda", - "shop": "clothes" - }, - "name": "Vero Moda", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/NKD": { - "tags": { - "name": "NKD", - "shop": "clothes" - }, - "name": "NKD", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Ernsting's family": { - "tags": { - "name": "Ernsting's family", - "shop": "clothes" - }, - "name": "Ernsting's family", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Winners": { - "tags": { - "name": "Winners", - "shop": "clothes" - }, - "name": "Winners", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/River Island": { - "tags": { - "name": "River Island", - "shop": "clothes" - }, - "name": "River Island", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Next": { - "tags": { - "name": "Next", - "shop": "clothes" - }, - "name": "Next", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Gap": { - "tags": { - "name": "Gap", - "shop": "clothes" - }, - "name": "Gap", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Adidas": { - "tags": { - "name": "Adidas", - "shop": "clothes" - }, - "name": "Adidas", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Mr Price": { - "tags": { - "name": "Mr Price", - "shop": "clothes" - }, - "name": "Mr Price", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Pep": { - "tags": { - "name": "Pep", - "shop": "clothes" - }, - "name": "Pep", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Edgars": { - "tags": { - "name": "Edgars", - "shop": "clothes" - }, - "name": "Edgars", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Ackermans": { - "tags": { - "name": "Ackermans", - "shop": "clothes" - }, - "name": "Ackermans", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Truworths": { - "tags": { - "name": "Truworths", - "shop": "clothes" - }, - "name": "Truworths", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Ross": { - "tags": { - "name": "Ross", - "shop": "clothes" - }, - "name": "Ross", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Burton": { - "tags": { - "name": "Burton", - "shop": "clothes" - }, - "name": "Burton", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Dorothy Perkins": { - "tags": { - "name": "Dorothy Perkins", - "shop": "clothes" - }, - "name": "Dorothy Perkins", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Lindex": { - "tags": { - "name": "Lindex", - "shop": "clothes" - }, - "name": "Lindex", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/s.Oliver": { - "tags": { - "name": "s.Oliver", - "shop": "clothes" - }, - "name": "s.Oliver", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Cecil": { - "tags": { - "name": "Cecil", - "shop": "clothes" - }, - "name": "Cecil", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Dress Barn": { - "tags": { - "name": "Dress Barn", - "shop": "clothes" - }, - "name": "Dress Barn", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Old Navy": { - "tags": { - "name": "Old Navy", - "shop": "clothes" - }, - "name": "Old Navy", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Jack & Jones": { - "tags": { - "name": "Jack & Jones", - "shop": "clothes" - }, - "name": "Jack & Jones", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Pimkie": { - "tags": { - "name": "Pimkie", - "shop": "clothes" - }, - "name": "Pimkie", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Esprit": { - "tags": { - "name": "Esprit", - "shop": "clothes" - }, - "name": "Esprit", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Primark": { - "tags": { - "name": "Primark", - "shop": "clothes" - }, - "name": "Primark", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Bonita": { - "tags": { - "name": "Bonita", - "shop": "clothes" - }, - "name": "Bonita", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Mexx": { - "tags": { - "name": "Mexx", - "shop": "clothes" - }, - "name": "Mexx", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Gerry Weber": { - "tags": { - "name": "Gerry Weber", - "shop": "clothes" - }, - "name": "Gerry Weber", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Tally Weijl": { - "tags": { - "name": "Tally Weijl", - "shop": "clothes" - }, - "name": "Tally Weijl", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Mango": { - "tags": { - "name": "Mango", - "shop": "clothes" - }, - "name": "Mango", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/TK Maxx": { - "tags": { - "name": "TK Maxx", - "shop": "clothes" - }, - "name": "TK Maxx", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Benetton": { - "tags": { - "name": "Benetton", - "shop": "clothes" - }, - "name": "Benetton", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Ulla Popken": { - "tags": { - "name": "Ulla Popken", - "shop": "clothes" - }, - "name": "Ulla Popken", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/AWG": { - "tags": { - "name": "AWG", - "shop": "clothes" - }, - "name": "AWG", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Tommy Hilfiger": { - "tags": { - "name": "Tommy Hilfiger", - "shop": "clothes" - }, - "name": "Tommy Hilfiger", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/New Yorker": { - "tags": { - "name": "New Yorker", - "shop": "clothes" - }, - "name": "New Yorker", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Orsay": { - "tags": { - "name": "Orsay", - "shop": "clothes" - }, - "name": "Orsay", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Jeans Fritz": { - "tags": { - "name": "Jeans Fritz", - "shop": "clothes" - }, - "name": "Jeans Fritz", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Charles Vögele": { - "tags": { - "name": "Charles Vögele", - "shop": "clothes" - }, - "name": "Charles Vögele", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/New Look": { - "tags": { - "name": "New Look", - "shop": "clothes" - }, - "name": "New Look", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Lacoste": { - "tags": { - "name": "Lacoste", - "shop": "clothes" - }, - "name": "Lacoste", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Etam": { - "tags": { - "name": "Etam", - "shop": "clothes" - }, - "name": "Etam", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Kiabi": { - "tags": { - "name": "Kiabi", - "shop": "clothes" - }, - "name": "Kiabi", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Jack Wolfskin": { - "tags": { - "name": "Jack Wolfskin", - "shop": "clothes" - }, - "name": "Jack Wolfskin", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/American Apparel": { - "tags": { - "name": "American Apparel", - "shop": "clothes" - }, - "name": "American Apparel", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Men's Wearhouse": { - "tags": { - "name": "Men's Wearhouse", - "shop": "clothes" - }, - "name": "Men's Wearhouse", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Intimissimi": { - "tags": { - "name": "Intimissimi", - "shop": "clothes" - }, - "name": "Intimissimi", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/United Colors of Benetton": { - "tags": { - "name": "United Colors of Benetton", - "shop": "clothes" - }, - "name": "United Colors of Benetton", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Jules": { - "tags": { - "name": "Jules", - "shop": "clothes" - }, - "name": "Jules", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Second Hand": { - "tags": { - "name": "Second Hand", - "shop": "clothes" - }, - "name": "Second Hand", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/AOKI": { - "tags": { - "name": "AOKI", - "shop": "clothes" - }, - "name": "AOKI", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Calzedonia": { - "tags": { - "name": "Calzedonia", - "shop": "clothes" - }, - "name": "Calzedonia", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/洋服の青山": { - "tags": { - "name": "洋服の青山", - "shop": "clothes" - }, - "name": "洋服の青山", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Levi's": { - "tags": { - "name": "Levi's", - "shop": "clothes" - }, - "name": "Levi's", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Celio": { - "tags": { - "name": "Celio", - "shop": "clothes" - }, - "name": "Celio", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/TJ Maxx": { - "tags": { - "name": "TJ Maxx", - "shop": "clothes" - }, - "name": "TJ Maxx", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Promod": { - "tags": { - "name": "Promod", - "shop": "clothes" - }, - "name": "Promod", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Street One": { - "tags": { - "name": "Street One", - "shop": "clothes" - }, - "name": "Street One", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/ユニクロ": { - "tags": { - "name": "ユニクロ", - "shop": "clothes" - }, - "name": "ユニクロ", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Banana Republic": { - "tags": { - "name": "Banana Republic", - "shop": "clothes" - }, - "name": "Banana Republic", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Одежда": { - "tags": { - "name": "Одежда", - "shop": "clothes" - }, - "name": "Одежда", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Marshalls": { - "tags": { - "name": "Marshalls", - "shop": "clothes" - }, - "name": "Marshalls", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/La Halle": { - "tags": { - "name": "La Halle", - "shop": "clothes" - }, - "name": "La Halle", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/Peacocks": { - "tags": { - "name": "Peacocks", - "shop": "clothes" - }, - "name": "Peacocks", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/clothes/しまむら": { - "tags": { - "name": "しまむら", - "shop": "clothes" - }, - "name": "しまむら", - "icon": "clothing-store", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/books/Bruna": { - "tags": { - "name": "Bruna", - "shop": "books" - }, - "name": "Bruna", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/books/Waterstones": { - "tags": { - "name": "Waterstones", - "shop": "books" - }, - "name": "Waterstones", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/books/Libro": { - "tags": { - "name": "Libro", - "shop": "books" - }, - "name": "Libro", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/books/Barnes & Noble": { - "tags": { - "name": "Barnes & Noble", - "shop": "books" - }, - "name": "Barnes & Noble", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/books/Weltbild": { - "tags": { - "name": "Weltbild", - "shop": "books" - }, - "name": "Weltbild", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/books/Thalia": { - "tags": { - "name": "Thalia", - "shop": "books" - }, - "name": "Thalia", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/books/Книги": { - "tags": { - "name": "Книги", - "shop": "books" - }, - "name": "Книги", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/department_store/Debenhams": { - "tags": { - "name": "Debenhams", - "shop": "department_store" - }, - "name": "Debenhams", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/department_store/Karstadt": { - "tags": { - "name": "Karstadt", - "shop": "department_store" - }, - "name": "Karstadt", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/department_store/Kmart": { - "tags": { - "name": "Kmart", - "shop": "department_store" - }, - "name": "Kmart", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/department_store/Target": { - "tags": { - "name": "Target", - "shop": "department_store" - }, - "name": "Target", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/department_store/Galeria Kaufhof": { - "tags": { - "name": "Galeria Kaufhof", - "shop": "department_store" - }, - "name": "Galeria Kaufhof", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/department_store/Marks & Spencer": { - "tags": { - "name": "Marks & Spencer", - "shop": "department_store" - }, - "name": "Marks & Spencer", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/department_store/Big W": { - "tags": { - "name": "Big W", - "shop": "department_store" - }, - "name": "Big W", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/department_store/Woolworth": { - "tags": { - "name": "Woolworth", - "shop": "department_store" - }, - "name": "Woolworth", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/department_store/Универмаг": { - "tags": { - "name": "Универмаг", - "shop": "department_store" - }, - "name": "Универмаг", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/department_store/Sears": { - "tags": { - "name": "Sears", - "shop": "department_store" - }, - "name": "Sears", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/department_store/Kohl's": { - "tags": { - "name": "Kohl's", - "shop": "department_store" - }, - "name": "Kohl's", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/department_store/Macy's": { - "tags": { - "name": "Macy's", - "shop": "department_store" - }, - "name": "Macy's", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/department_store/JCPenney": { - "tags": { - "name": "JCPenney", - "shop": "department_store" - }, - "name": "JCPenney", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/alcohol/Alko": { - "tags": { - "name": "Alko", - "shop": "alcohol" - }, - "name": "Alko", - "icon": "alcohol-shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "shop/alcohol/The Beer Store": { - "tags": { - "name": "The Beer Store", - "shop": "alcohol" - }, - "name": "The Beer Store", - "icon": "alcohol-shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "shop/alcohol/Systembolaget": { - "tags": { - "name": "Systembolaget", - "shop": "alcohol" - }, - "name": "Systembolaget", - "icon": "alcohol-shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "shop/alcohol/LCBO": { - "tags": { - "name": "LCBO", - "shop": "alcohol" - }, - "name": "LCBO", - "icon": "alcohol-shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "shop/alcohol/Ароматный мир": { - "tags": { - "name": "Ароматный мир", - "shop": "alcohol" - }, - "name": "Ароматный мир", - "icon": "alcohol-shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "shop/alcohol/Bargain Booze": { - "tags": { - "name": "Bargain Booze", - "shop": "alcohol" - }, - "name": "Bargain Booze", - "icon": "alcohol-shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "shop/alcohol/Nicolas": { - "tags": { - "name": "Nicolas", - "shop": "alcohol" - }, - "name": "Nicolas", - "icon": "alcohol-shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "shop/alcohol/BWS": { - "tags": { - "name": "BWS", - "shop": "alcohol" - }, - "name": "BWS", - "icon": "alcohol-shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "shop/alcohol/Botilleria": { - "tags": { - "name": "Botilleria", - "shop": "alcohol" - }, - "name": "Botilleria", - "icon": "alcohol-shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "shop/alcohol/SAQ": { - "tags": { - "name": "SAQ", - "shop": "alcohol" - }, - "name": "SAQ", - "icon": "alcohol-shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "shop/alcohol/Gall & Gall": { - "tags": { - "name": "Gall & Gall", - "shop": "alcohol" - }, - "name": "Gall & Gall", - "icon": "alcohol-shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "shop/alcohol/Живое пиво": { - "tags": { - "name": "Живое пиво", - "shop": "alcohol" - }, - "name": "Живое пиво", - "icon": "alcohol-shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "drive_through" - ], - "suggestion": true - }, - "shop/bakery/Kamps": { - "tags": { - "name": "Kamps", - "shop": "bakery" - }, - "name": "Kamps", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Banette": { - "tags": { - "name": "Banette", - "shop": "bakery" - }, - "name": "Banette", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Bäckerei Schmidt": { - "tags": { - "name": "Bäckerei Schmidt", - "shop": "bakery" - }, - "name": "Bäckerei Schmidt", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Anker": { - "tags": { - "name": "Anker", - "shop": "bakery" - }, - "name": "Anker", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Hofpfisterei": { - "tags": { - "name": "Hofpfisterei", - "shop": "bakery" - }, - "name": "Hofpfisterei", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Greggs": { - "tags": { - "name": "Greggs", - "shop": "bakery" - }, - "name": "Greggs", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Oebel": { - "tags": { - "name": "Oebel", - "shop": "bakery" - }, - "name": "Oebel", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Boulangerie": { - "tags": { - "name": "Boulangerie", - "shop": "bakery" - }, - "name": "Boulangerie", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Stadtbäckerei": { - "tags": { - "name": "Stadtbäckerei", - "shop": "bakery" - }, - "name": "Stadtbäckerei", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Steinecke": { - "tags": { - "name": "Steinecke", - "shop": "bakery" - }, - "name": "Steinecke", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Ihle": { - "tags": { - "name": "Ihle", - "shop": "bakery" - }, - "name": "Ihle", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Goldilocks": { - "tags": { - "name": "Goldilocks", - "shop": "bakery" - }, - "name": "Goldilocks", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Dat Backhus": { - "tags": { - "name": "Dat Backhus", - "shop": "bakery" - }, - "name": "Dat Backhus", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/K&U": { - "tags": { - "name": "K&U", - "shop": "bakery" - }, - "name": "K&U", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Der Beck": { - "tags": { - "name": "Der Beck", - "shop": "bakery" - }, - "name": "Der Beck", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Thürmann": { - "tags": { - "name": "Thürmann", - "shop": "bakery" - }, - "name": "Thürmann", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Backwerk": { - "tags": { - "name": "Backwerk", - "shop": "bakery" - }, - "name": "Backwerk", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Schäfer's": { - "tags": { - "name": "Schäfer's", - "shop": "bakery" - }, - "name": "Schäfer's", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Panaderia": { - "tags": { - "name": "Panaderia", - "shop": "bakery" - }, - "name": "Panaderia", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Goeken backen": { - "tags": { - "name": "Goeken backen", - "shop": "bakery" - }, - "name": "Goeken backen", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Stadtbäckerei Junge": { - "tags": { - "name": "Stadtbäckerei Junge", - "shop": "bakery" - }, - "name": "Stadtbäckerei Junge", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Boulangerie Patisserie": { - "tags": { - "name": "Boulangerie Patisserie", - "shop": "bakery" - }, - "name": "Boulangerie Patisserie", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Paul": { - "tags": { - "name": "Paul", - "shop": "bakery" - }, - "name": "Paul", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Хлеб": { - "tags": { - "name": "Хлеб", - "shop": "bakery" - }, - "name": "Хлеб", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Пекарня": { - "tags": { - "name": "Пекарня", - "shop": "bakery" - }, - "name": "Пекарня", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/bakery/Кулиничи": { - "tags": { - "name": "Кулиничи", - "shop": "bakery" - }, - "name": "Кулиничи", - "icon": "bakery", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/sports/Sports Direct": { - "tags": { - "name": "Sports Direct", - "shop": "sports" - }, - "name": "Sports Direct", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/sports/Decathlon": { - "tags": { - "name": "Decathlon", - "shop": "sports" - }, - "name": "Decathlon", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/sports/Intersport": { - "tags": { - "name": "Intersport", - "shop": "sports" - }, - "name": "Intersport", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/sports/Sports Authority": { - "tags": { - "name": "Sports Authority", - "shop": "sports" - }, - "name": "Sports Authority", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/sports/Спортмастер": { - "tags": { - "name": "Спортмастер", - "shop": "sports" - }, - "name": "Спортмастер", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/sports/Sport 2000": { - "tags": { - "name": "Sport 2000", - "shop": "sports" - }, - "name": "Sport 2000", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/sports/Dick's Sporting Goods": { - "tags": { - "name": "Dick's Sporting Goods", - "shop": "sports" - }, - "name": "Dick's Sporting Goods", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/variety_store/Tedi": { - "tags": { - "name": "Tedi", - "shop": "variety_store" - }, - "name": "Tedi", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/variety_store/Dollarama": { - "tags": { - "name": "Dollarama", - "shop": "variety_store" - }, - "name": "Dollarama", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/variety_store/Family Dollar": { - "tags": { - "name": "Family Dollar", - "shop": "variety_store" - }, - "name": "Family Dollar", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/variety_store/Dollar Tree": { - "tags": { - "name": "Dollar Tree", - "shop": "variety_store" - }, - "name": "Dollar Tree", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/pet/Fressnapf": { - "tags": { - "name": "Fressnapf", - "shop": "pet" - }, - "name": "Fressnapf", - "icon": "dog-park", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/pet/PetSmart": { - "tags": { - "name": "PetSmart", - "shop": "pet" - }, - "name": "PetSmart", - "icon": "dog-park", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/pet/Das Futterhaus": { - "tags": { - "name": "Das Futterhaus", - "shop": "pet" - }, - "name": "Das Futterhaus", - "icon": "dog-park", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/pet/Pets at Home": { - "tags": { - "name": "Pets at Home", - "shop": "pet" - }, - "name": "Pets at Home", - "icon": "dog-park", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/pet/Petco": { - "tags": { - "name": "Petco", - "shop": "pet" - }, - "name": "Petco", - "icon": "dog-park", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/pet/Зоомагазин": { - "tags": { - "name": "Зоомагазин", - "shop": "pet" - }, - "name": "Зоомагазин", - "icon": "dog-park", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/shoes/Deichmann": { - "tags": { - "name": "Deichmann", - "shop": "shoes" - }, - "name": "Deichmann", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/shoes/Reno": { - "tags": { - "name": "Reno", - "shop": "shoes" - }, - "name": "Reno", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/shoes/Ecco": { - "tags": { - "name": "Ecco", - "shop": "shoes" - }, - "name": "Ecco", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/shoes/Clarks": { - "tags": { - "name": "Clarks", - "shop": "shoes" - }, - "name": "Clarks", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/shoes/La Halle aux Chaussures": { - "tags": { - "name": "La Halle aux Chaussures", - "shop": "shoes" - }, - "name": "La Halle aux Chaussures", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/shoes/Brantano": { - "tags": { - "name": "Brantano", - "shop": "shoes" - }, - "name": "Brantano", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/shoes/Geox": { - "tags": { - "name": "Geox", - "shop": "shoes" - }, - "name": "Geox", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/shoes/Salamander": { - "tags": { - "name": "Salamander", - "shop": "shoes" - }, - "name": "Salamander", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/shoes/Обувь": { - "tags": { - "name": "Обувь", - "shop": "shoes" - }, - "name": "Обувь", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/shoes/Payless Shoe Source": { - "tags": { - "name": "Payless Shoe Source", - "shop": "shoes" - }, - "name": "Payless Shoe Source", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/shoes/Famous Footwear": { - "tags": { - "name": "Famous Footwear", - "shop": "shoes" - }, - "name": "Famous Footwear", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/shoes/Quick Schuh": { - "tags": { - "name": "Quick Schuh", - "shop": "shoes" - }, - "name": "Quick Schuh", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/shoes/Shoe Zone": { - "tags": { - "name": "Shoe Zone", - "shop": "shoes" - }, - "name": "Shoe Zone", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/shoes/Foot Locker": { - "tags": { - "name": "Foot Locker", - "shop": "shoes" - }, - "name": "Foot Locker", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/shoes/Bata": { - "tags": { - "name": "Bata", - "shop": "shoes" - }, - "name": "Bata", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/shoes/ЦентрОбувь": { - "tags": { - "name": "ЦентрОбувь", - "shop": "shoes" - }, - "name": "ЦентрОбувь", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/toys/La Grande Récré": { - "tags": { - "name": "La Grande Récré", - "shop": "toys" - }, - "name": "La Grande Récré", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/toys/Toys R Us": { - "tags": { - "name": "Toys R Us", - "shop": "toys" - }, - "name": "Toys R Us", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/toys/Intertoys": { - "tags": { - "name": "Intertoys", - "shop": "toys" - }, - "name": "Intertoys", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/toys/Детский мир": { - "tags": { - "name": "Детский мир", - "shop": "toys" - }, - "name": "Детский мир", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/toys/Игрушки": { - "tags": { - "name": "Игрушки", - "shop": "toys" - }, - "name": "Игрушки", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/travel_agency/Flight Centre": { - "tags": { - "name": "Flight Centre", - "shop": "travel_agency" - }, - "name": "Flight Centre", - "icon": "suitcase", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/travel_agency/Thomas Cook": { - "tags": { - "name": "Thomas Cook", - "shop": "travel_agency" - }, - "name": "Thomas Cook", - "icon": "suitcase", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/jewelry/Bijou Brigitte": { - "tags": { - "name": "Bijou Brigitte", - "shop": "jewelry" - }, - "name": "Bijou Brigitte", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/jewelry/Christ": { - "tags": { - "name": "Christ", - "shop": "jewelry" - }, - "name": "Christ", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/jewelry/Swarovski": { - "tags": { - "name": "Swarovski", - "shop": "jewelry" - }, - "name": "Swarovski", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/optician/Fielmann": { - "tags": { - "name": "Fielmann", - "shop": "optician" - }, - "name": "Fielmann", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/optician/Apollo Optik": { - "tags": { - "name": "Apollo Optik", - "shop": "optician" - }, - "name": "Apollo Optik", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/optician/Vision Express": { - "tags": { - "name": "Vision Express", - "shop": "optician" - }, - "name": "Vision Express", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/optician/Оптика": { - "tags": { - "name": "Оптика", - "shop": "optician" - }, - "name": "Оптика", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/optician/Optic 2000": { - "tags": { - "name": "Optic 2000", - "shop": "optician" - }, - "name": "Optic 2000", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/optician/Alain Afflelou": { - "tags": { - "name": "Alain Afflelou", - "shop": "optician" - }, - "name": "Alain Afflelou", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/optician/Specsavers": { - "tags": { - "name": "Specsavers", - "shop": "optician" - }, - "name": "Specsavers", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/optician/Krys": { - "tags": { - "name": "Krys", - "shop": "optician" - }, - "name": "Krys", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/optician/Atol": { - "tags": { - "name": "Atol", - "shop": "optician" - }, - "name": "Atol", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/video/Blockbuster": { - "tags": { - "name": "Blockbuster", - "shop": "video" - }, - "name": "Blockbuster", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/video/World of Video": { - "tags": { - "name": "World of Video", - "shop": "video" - }, - "name": "World of Video", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Билайн": { - "tags": { - "name": "Билайн", - "shop": "mobile_phone" - }, - "name": "Билайн", - "icon": "mobilephone", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/ソフトバンクショップ (SoftBank shop)": { - "tags": { - "name": "ソフトバンクショップ (SoftBank shop)", - "shop": "mobile_phone" - }, - "name": "ソフトバンクショップ (SoftBank shop)", - "icon": "mobilephone", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Vodafone": { - "tags": { - "name": "Vodafone", - "shop": "mobile_phone" - }, - "name": "Vodafone", - "icon": "mobilephone", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/O2": { - "tags": { - "name": "O2", - "shop": "mobile_phone" - }, - "name": "O2", - "icon": "mobilephone", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Carphone Warehouse": { - "tags": { - "name": "Carphone Warehouse", - "shop": "mobile_phone" - }, - "name": "Carphone Warehouse", - "icon": "mobilephone", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Orange": { - "tags": { - "name": "Orange", - "shop": "mobile_phone" - }, - "name": "Orange", - "icon": "mobilephone", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Verizon Wireless": { - "tags": { - "name": "Verizon Wireless", - "shop": "mobile_phone" - }, - "name": "Verizon Wireless", - "icon": "mobilephone", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Sprint": { - "tags": { - "name": "Sprint", - "shop": "mobile_phone" - }, - "name": "Sprint", - "icon": "mobilephone", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/T-Mobile": { - "tags": { - "name": "T-Mobile", - "shop": "mobile_phone" - }, - "name": "T-Mobile", - "icon": "mobilephone", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/МТС": { - "tags": { - "name": "МТС", - "shop": "mobile_phone" - }, - "name": "МТС", - "icon": "mobilephone", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Евросеть": { - "tags": { - "name": "Евросеть", - "shop": "mobile_phone" - }, - "name": "Евросеть", - "icon": "mobilephone", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Bell": { - "tags": { - "name": "Bell", - "shop": "mobile_phone" - }, - "name": "Bell", - "icon": "mobilephone", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/The Phone House": { - "tags": { - "name": "The Phone House", - "shop": "mobile_phone" - }, - "name": "The Phone House", - "icon": "mobilephone", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/SFR": { - "tags": { - "name": "SFR", - "shop": "mobile_phone" - }, - "name": "SFR", - "icon": "mobilephone", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Связной": { - "tags": { - "name": "Связной", - "shop": "mobile_phone" - }, - "name": "Связной", - "icon": "mobilephone", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Мегафон": { - "tags": { - "name": "Мегафон", - "shop": "mobile_phone" - }, - "name": "Мегафон", - "icon": "mobilephone", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/AT&T": { - "tags": { - "name": "AT&T", - "shop": "mobile_phone" - }, - "name": "AT&T", - "icon": "mobilephone", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/ドコモショップ (docomo shop)": { - "tags": { - "name": "ドコモショップ (docomo shop)", - "shop": "mobile_phone" - }, - "name": "ドコモショップ (docomo shop)", - "icon": "mobilephone", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/au": { - "tags": { - "name": "au", - "shop": "mobile_phone" - }, - "name": "au", - "icon": "mobilephone", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Movistar": { - "tags": { - "name": "Movistar", - "shop": "mobile_phone" - }, - "name": "Movistar", - "icon": "mobilephone", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Bitė": { - "tags": { - "name": "Bitė", - "shop": "mobile_phone" - }, - "name": "Bitė", - "icon": "mobilephone", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/computer/PC World": { - "tags": { - "name": "PC World", - "shop": "computer" - }, - "name": "PC World", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/computer/DNS": { - "tags": { - "name": "DNS", - "shop": "computer" - }, - "name": "DNS", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/hairdresser/Klier": { - "tags": { - "name": "Klier", - "shop": "hairdresser" - }, - "name": "Klier", - "icon": "hairdresser", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/hairdresser/Supercuts": { - "tags": { - "name": "Supercuts", - "shop": "hairdresser" - }, - "name": "Supercuts", - "icon": "hairdresser", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/hairdresser/Hairkiller": { - "tags": { - "name": "Hairkiller", - "shop": "hairdresser" - }, - "name": "Hairkiller", - "icon": "hairdresser", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/hairdresser/Great Clips": { - "tags": { - "name": "Great Clips", - "shop": "hairdresser" - }, - "name": "Great Clips", - "icon": "hairdresser", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/hairdresser/Парикмахерская": { - "tags": { - "name": "Парикмахерская", - "shop": "hairdresser" - }, - "name": "Парикмахерская", - "icon": "hairdresser", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/hairdresser/Стиль": { - "tags": { - "name": "Стиль", - "shop": "hairdresser" - }, - "name": "Стиль", - "icon": "hairdresser", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/hairdresser/Franck Provost": { - "tags": { - "name": "Franck Provost", - "shop": "hairdresser" - }, - "name": "Franck Provost", - "icon": "hairdresser", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/hairdresser/Салон красоты": { - "tags": { - "name": "Салон красоты", - "shop": "hairdresser" - }, - "name": "Салон красоты", - "icon": "hairdresser", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/hardware/1000 мелочей": { - "tags": { - "name": "1000 мелочей", - "shop": "hardware" - }, - "name": "1000 мелочей", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/hardware/Хозтовары": { - "tags": { - "name": "Хозтовары", - "shop": "hardware" - }, - "name": "Хозтовары", - "icon": "shop", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/motorcycle/Yamaha": { - "tags": { - "name": "Yamaha", - "shop": "motorcycle" - }, - "name": "Yamaha", - "icon": "scooter", - "geometry": [ - "point", - "area" - ], - "fields": [ - "operator", - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - } - } -} \ No newline at end of file diff --git a/data/taginfo.json b/data/taginfo.json deleted file mode 100644 index 469eab573a..0000000000 --- a/data/taginfo.json +++ /dev/null @@ -1,2688 +0,0 @@ -{ - "data_format": 1, - "data_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/data/taginfo.json", - "project": { - "name": "iD Editor", - "description": "Online editor for OSM data.", - "project_url": "https://github.com/openstreetmap/iD", - "doc_url": "https://github.com/openstreetmap/iD/blob/master/data/presets/README.md", - "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/dist/img/logo.png", - "keywords": [ - "editor" - ] - }, - "tags": [ - { - "key": "aerialway" - }, - { - "key": "aeroway" - }, - { - "key": "amenity" - }, - { - "key": "highway" - }, - { - "key": "place" - }, - { - "key": "power" - }, - { - "key": "railway" - }, - { - "key": "junction", - "value": "roundabout" - }, - { - "key": "waterway" - }, - { - "key": "addr:housenumber" - }, - { - "key": "advertising", - "value": "billboard" - }, - { - "key": "aerialway", - "value": "cable_car" - }, - { - "key": "aerialway", - "value": "chair_lift" - }, - { - "key": "aerialway", - "value": "gondola" - }, - { - "key": "aerialway", - "value": "magic_carpet" - }, - { - "key": "aerialway", - "value": "platter" - }, - { - "key": "aerialway", - "value": "pylon" - }, - { - "key": "aerialway", - "value": "rope_tow" - }, - { - "key": "aerialway", - "value": "station" - }, - { - "key": "aerialway", - "value": "t-bar" - }, - { - "key": "aeroway", - "value": "aerodrome" - }, - { - "key": "aeroway", - "value": "apron" - }, - { - "key": "aeroway", - "value": "gate" - }, - { - "key": "aeroway", - "value": "hangar" - }, - { - "key": "aeroway", - "value": "helipad" - }, - { - "key": "aeroway", - "value": "runway" - }, - { - "key": "aeroway", - "value": "taxiway" - }, - { - "key": "aeroway", - "value": "terminal" - }, - { - "key": "amenity", - "value": "register_office" - }, - { - "key": "amenity", - "value": "swimming_pool" - }, - { - "key": "amenity", - "value": "arts_centre" - }, - { - "key": "amenity", - "value": "atm" - }, - { - "key": "amenity", - "value": "bank" - }, - { - "key": "amenity", - "value": "bar" - }, - { - "key": "amenity", - "value": "bbq" - }, - { - "key": "amenity", - "value": "bench" - }, - { - "key": "amenity", - "value": "bicycle_parking" - }, - { - "key": "amenity", - "value": "bicycle_rental" - }, - { - "key": "amenity", - "value": "bicycle_repair_station" - }, - { - "key": "amenity", - "value": "biergarten" - }, - { - "key": "amenity", - "value": "boat_rental" - }, - { - "key": "amenity", - "value": "bureau_de_change" - }, - { - "key": "amenity", - "value": "bus_station" - }, - { - "key": "amenity", - "value": "cafe" - }, - { - "key": "amenity", - "value": "car_rental" - }, - { - "key": "amenity", - "value": "car_sharing" - }, - { - "key": "amenity", - "value": "car_wash" - }, - { - "key": "amenity", - "value": "casino" - }, - { - "key": "amenity", - "value": "charging_station" - }, - { - "key": "amenity", - "value": "childcare" - }, - { - "key": "amenity", - "value": "cinema" - }, - { - "key": "amenity", - "value": "clinic" - }, - { - "key": "amenity", - "value": "clock" - }, - { - "key": "amenity", - "value": "college" - }, - { - "key": "amenity", - "value": "community_centre" - }, - { - "key": "amenity", - "value": "compressed_air" - }, - { - "key": "amenity", - "value": "courthouse" - }, - { - "key": "amenity", - "value": "coworking_space" - }, - { - "key": "amenity", - "value": "dentist" - }, - { - "key": "amenity", - "value": "doctors" - }, - { - "key": "amenity", - "value": "dojo" - }, - { - "key": "amenity", - "value": "drinking_water" - }, - { - "key": "amenity", - "value": "embassy" - }, - { - "key": "amenity", - "value": "fast_food" - }, - { - "key": "amenity", - "value": "ferry_terminal" - }, - { - "key": "amenity", - "value": "fire_station" - }, - { - "key": "amenity", - "value": "fountain" - }, - { - "key": "amenity", - "value": "fuel" - }, - { - "key": "amenity", - "value": "grave_yard" - }, - { - "key": "amenity", - "value": "grit_bin" - }, - { - "key": "amenity", - "value": "hospital" - }, - { - "key": "amenity", - "value": "hunting_stand" - }, - { - "key": "amenity", - "value": "ice_cream" - }, - { - "key": "amenity", - "value": "kindergarten" - }, - { - "key": "amenity", - "value": "library" - }, - { - "key": "amenity", - "value": "marketplace" - }, - { - "key": "amenity", - "value": "motorcycle_parking" - }, - { - "key": "amenity", - "value": "nightclub" - }, - { - "key": "amenity", - "value": "parking_entrance" - }, - { - "key": "amenity", - "value": "parking_space" - }, - { - "key": "amenity", - "value": "parking" - }, - { - "key": "amenity", - "value": "pharmacy" - }, - { - "key": "amenity", - "value": "place_of_worship" - }, - { - "key": "religion", - "value": "buddhist" - }, - { - "key": "religion", - "value": "christian" - }, - { - "key": "religion", - "value": "jewish" - }, - { - "key": "religion", - "value": "muslim" - }, - { - "key": "amenity", - "value": "planetarium" - }, - { - "key": "amenity", - "value": "police" - }, - { - "key": "amenity", - "value": "post_box" - }, - { - "key": "amenity", - "value": "post_office" - }, - { - "key": "amenity", - "value": "prison" - }, - { - "key": "amenity", - "value": "pub" - }, - { - "key": "amenity", - "value": "public_bookcase" - }, - { - "key": "amenity", - "value": "ranger_station" - }, - { - "key": "recycling_type", - "value": "centre" - }, - { - "key": "amenity", - "value": "recycling" - }, - { - "key": "amenity", - "value": "restaurant" - }, - { - "key": "amenity", - "value": "sanitary_dump_station" - }, - { - "key": "amenity", - "value": "school" - }, - { - "key": "amenity", - "value": "shelter" - }, - { - "key": "amenity", - "value": "social_facility" - }, - { - "key": "social_facility", - "value": "food_bank" - }, - { - "key": "social_facility:for", - "value": "senior" - }, - { - "key": "social_facility:for", - "value": "homeless" - }, - { - "key": "amenity", - "value": "studio" - }, - { - "key": "amenity", - "value": "taxi" - }, - { - "key": "amenity", - "value": "telephone" - }, - { - "key": "amenity", - "value": "theatre" - }, - { - "key": "amenity", - "value": "toilets" - }, - { - "key": "amenity", - "value": "townhall" - }, - { - "key": "amenity", - "value": "university" - }, - { - "key": "vending", - "value": "cigarettes" - }, - { - "key": "vending", - "value": "condoms" - }, - { - "key": "vending", - "value": "drinks" - }, - { - "key": "vending", - "value": "excrement_bags" - }, - { - "key": "vending", - "value": "news_papers" - }, - { - "key": "vending", - "value": "parcel_pickup;parcel_mail_in" - }, - { - "key": "vending", - "value": "parking_tickets" - }, - { - "key": "vending", - "value": "public_transport_tickets" - }, - { - "key": "vending", - "value": "sweets" - }, - { - "key": "amenity", - "value": "vending_machine" - }, - { - "key": "amenity", - "value": "veterinary" - }, - { - "key": "amenity", - "value": "waste_basket" - }, - { - "key": "amenity", - "value": "waste_disposal" - }, - { - "key": "amenity", - "value": "waste_transfer_station" - }, - { - "key": "amenity", - "value": "water_point" - }, - { - "key": "area", - "value": "yes" - }, - { - "key": "area:highway" - }, - { - "key": "barrier" - }, - { - "key": "barrier", - "value": "entrance" - }, - { - "key": "barrier", - "value": "block" - }, - { - "key": "barrier", - "value": "bollard" - }, - { - "key": "barrier", - "value": "cattle_grid" - }, - { - "key": "barrier", - "value": "city_wall" - }, - { - "key": "barrier", - "value": "cycle_barrier" - }, - { - "key": "barrier", - "value": "ditch" - }, - { - "key": "barrier", - "value": "fence" - }, - { - "key": "barrier", - "value": "gate" - }, - { - "key": "barrier", - "value": "hedge" - }, - { - "key": "barrier", - "value": "kissing_gate" - }, - { - "key": "barrier", - "value": "lift_gate" - }, - { - "key": "barrier", - "value": "retaining_wall" - }, - { - "key": "barrier", - "value": "stile" - }, - { - "key": "barrier", - "value": "toll_booth" - }, - { - "key": "barrier", - "value": "wall" - }, - { - "key": "boundary", - "value": "administrative" - }, - { - "key": "building" - }, - { - "key": "building", - "value": "bunker" - }, - { - "key": "building", - "value": "entrance" - }, - { - "key": "building", - "value": "train_station" - }, - { - "key": "building", - "value": "apartments" - }, - { - "key": "building", - "value": "barn" - }, - { - "key": "building", - "value": "cabin" - }, - { - "key": "building", - "value": "cathedral" - }, - { - "key": "building", - "value": "chapel" - }, - { - "key": "building", - "value": "church" - }, - { - "key": "building", - "value": "college" - }, - { - "key": "building", - "value": "commercial" - }, - { - "key": "building", - "value": "construction" - }, - { - "key": "building", - "value": "detached" - }, - { - "key": "building", - "value": "dormitory" - }, - { - "key": "building", - "value": "garage" - }, - { - "key": "building", - "value": "garages" - }, - { - "key": "building", - "value": "greenhouse" - }, - { - "key": "building", - "value": "hospital" - }, - { - "key": "building", - "value": "hotel" - }, - { - "key": "building", - "value": "house" - }, - { - "key": "building", - "value": "hut" - }, - { - "key": "building", - "value": "industrial" - }, - { - "key": "building", - "value": "kindergarten" - }, - { - "key": "building", - "value": "public" - }, - { - "key": "building", - "value": "residential" - }, - { - "key": "building", - "value": "retail" - }, - { - "key": "building", - "value": "roof" - }, - { - "key": "building", - "value": "school" - }, - { - "key": "building", - "value": "semidetached_house" - }, - { - "key": "building", - "value": "shed" - }, - { - "key": "building", - "value": "stable" - }, - { - "key": "building", - "value": "static_caravan" - }, - { - "key": "building", - "value": "terrace" - }, - { - "key": "building", - "value": "university" - }, - { - "key": "building", - "value": "warehouse" - }, - { - "key": "camp_site", - "value": "camp_pitch" - }, - { - "key": "craft" - }, - { - "key": "craft", - "value": "jeweler" - }, - { - "key": "craft", - "value": "locksmith" - }, - { - "key": "craft", - "value": "optician" - }, - { - "key": "craft", - "value": "tailor" - }, - { - "key": "craft", - "value": "basket_maker" - }, - { - "key": "craft", - "value": "beekeeper" - }, - { - "key": "craft", - "value": "blacksmith" - }, - { - "key": "craft", - "value": "boatbuilder" - }, - { - "key": "craft", - "value": "bookbinder" - }, - { - "key": "craft", - "value": "brewery" - }, - { - "key": "craft", - "value": "carpenter" - }, - { - "key": "craft", - "value": "carpet_layer" - }, - { - "key": "craft", - "value": "caterer" - }, - { - "key": "craft", - "value": "clockmaker" - }, - { - "key": "craft", - "value": "confectionery" - }, - { - "key": "craft", - "value": "dressmaker" - }, - { - "key": "craft", - "value": "electrician" - }, - { - "key": "craft", - "value": "gardener" - }, - { - "key": "craft", - "value": "glaziery" - }, - { - "key": "craft", - "value": "handicraft" - }, - { - "key": "craft", - "value": "hvac" - }, - { - "key": "craft", - "value": "insulation" - }, - { - "key": "craft", - "value": "key_cutter" - }, - { - "key": "craft", - "value": "metal_construction" - }, - { - "key": "craft", - "value": "painter" - }, - { - "key": "craft", - "value": "photographer" - }, - { - "key": "craft", - "value": "photographic_laboratory" - }, - { - "key": "craft", - "value": "plasterer" - }, - { - "key": "craft", - "value": "plumber" - }, - { - "key": "craft", - "value": "pottery" - }, - { - "key": "craft", - "value": "rigger" - }, - { - "key": "craft", - "value": "roofer" - }, - { - "key": "craft", - "value": "saddler" - }, - { - "key": "craft", - "value": "sailmaker" - }, - { - "key": "craft", - "value": "sawmill" - }, - { - "key": "craft", - "value": "scaffolder" - }, - { - "key": "craft", - "value": "sculpter" - }, - { - "key": "craft", - "value": "shoemaker" - }, - { - "key": "craft", - "value": "stonemason" - }, - { - "key": "craft", - "value": "sweep" - }, - { - "key": "craft", - "value": "tiler" - }, - { - "key": "craft", - "value": "tinsmith" - }, - { - "key": "craft", - "value": "upholsterer" - }, - { - "key": "craft", - "value": "watchmaker" - }, - { - "key": "craft", - "value": "window_construction" - }, - { - "key": "craft", - "value": "winery" - }, - { - "key": "embankment", - "value": "yes" - }, - { - "key": "emergency", - "value": "designated" - }, - { - "key": "emergency", - "value": "destination" - }, - { - "key": "emergency", - "value": "no" - }, - { - "key": "emergency", - "value": "official" - }, - { - "key": "emergency", - "value": "private" - }, - { - "key": "emergency", - "value": "yes" - }, - { - "key": "emergency", - "value": "ambulance_station" - }, - { - "key": "emergency", - "value": "defibrillator" - }, - { - "key": "emergency", - "value": "fire_hydrant" - }, - { - "key": "emergency", - "value": "phone" - }, - { - "key": "entrance" - }, - { - "key": "footway", - "value": "crossing" - }, - { - "key": "crossing", - "value": "zebra" - }, - { - "key": "footway", - "value": "sidewalk" - }, - { - "key": "ford", - "value": "yes" - }, - { - "key": "natural", - "value": "sand" - }, - { - "key": "landuse", - "value": "grass" - }, - { - "key": "sport", - "value": "golf" - }, - { - "key": "golf", - "value": "hole" - }, - { - "key": "natural", - "value": "water" - }, - { - "key": "golf", - "value": "lateral_water_hazard" - }, - { - "key": "landuse", - "value": "grass" - }, - { - "key": "landuse", - "value": "grass" - }, - { - "key": "natural", - "value": "water" - }, - { - "key": "golf", - "value": "water_hazard" - }, - { - "key": "healthcare", - "value": "blood_donation" - }, - { - "key": "highway", - "value": "bridleway" - }, - { - "key": "highway", - "value": "bus_stop" - }, - { - "key": "highway", - "value": "corridor" - }, - { - "key": "highway", - "value": "crossing" - }, - { - "key": "crossing", - "value": "zebra" - }, - { - "key": "highway", - "value": "cycleway" - }, - { - "key": "highway", - "value": "footway" - }, - { - "key": "highway", - "value": "give_way" - }, - { - "key": "highway", - "value": "living_street" - }, - { - "key": "highway", - "value": "mini_roundabout" - }, - { - "key": "highway", - "value": "motorway_junction" - }, - { - "key": "highway", - "value": "motorway_link" - }, - { - "key": "highway", - "value": "motorway" - }, - { - "key": "highway", - "value": "path" - }, - { - "key": "highway", - "value": "pedestrian" - }, - { - "key": "highway", - "value": "primary_link" - }, - { - "key": "highway", - "value": "primary" - }, - { - "key": "highway", - "value": "raceway" - }, - { - "key": "highway", - "value": "residential" - }, - { - "key": "highway", - "value": "rest_area" - }, - { - "key": "highway", - "value": "road" - }, - { - "key": "highway", - "value": "secondary_link" - }, - { - "key": "highway", - "value": "secondary" - }, - { - "key": "highway", - "value": "service" - }, - { - "key": "service", - "value": "alley" - }, - { - "key": "service", - "value": "drive-through" - }, - { - "key": "service", - "value": "driveway" - }, - { - "key": "service", - "value": "emergency_access" - }, - { - "key": "service", - "value": "parking_aisle" - }, - { - "key": "highway", - "value": "services" - }, - { - "key": "highway", - "value": "steps" - }, - { - "key": "highway", - "value": "stop" - }, - { - "key": "highway", - "value": "street_lamp" - }, - { - "key": "highway", - "value": "tertiary_link" - }, - { - "key": "highway", - "value": "tertiary" - }, - { - "key": "highway", - "value": "track" - }, - { - "key": "highway", - "value": "traffic_signals" - }, - { - "key": "highway", - "value": "trunk_link" - }, - { - "key": "highway", - "value": "trunk" - }, - { - "key": "highway", - "value": "turning_circle" - }, - { - "key": "highway", - "value": "unclassified" - }, - { - "key": "historic" - }, - { - "key": "historic", - "value": "archaeological_site" - }, - { - "key": "historic", - "value": "boundary_stone" - }, - { - "key": "historic", - "value": "castle" - }, - { - "key": "historic", - "value": "memorial" - }, - { - "key": "historic", - "value": "monument" - }, - { - "key": "historic", - "value": "ruins" - }, - { - "key": "historic", - "value": "wayside_cross" - }, - { - "key": "historic", - "value": "wayside_shrine" - }, - { - "key": "junction", - "value": "yes" - }, - { - "key": "landuse" - }, - { - "key": "landuse", - "value": "farm" - }, - { - "key": "landuse", - "value": "allotments" - }, - { - "key": "landuse", - "value": "basin" - }, - { - "key": "landuse", - "value": "cemetery" - }, - { - "key": "landuse", - "value": "churchyard" - }, - { - "key": "landuse", - "value": "commercial" - }, - { - "key": "landuse", - "value": "construction" - }, - { - "key": "landuse", - "value": "farmland" - }, - { - "key": "landuse", - "value": "farmyard" - }, - { - "key": "landuse", - "value": "forest" - }, - { - "key": "landuse", - "value": "garages" - }, - { - "key": "landuse", - "value": "grass" - }, - { - "key": "landuse", - "value": "industrial" - }, - { - "key": "landuse", - "value": "landfill" - }, - { - "key": "landuse", - "value": "meadow" - }, - { - "key": "landuse", - "value": "military" - }, - { - "key": "landuse", - "value": "orchard" - }, - { - "key": "landuse", - "value": "plant_nursery" - }, - { - "key": "landuse", - "value": "quarry" - }, - { - "key": "landuse", - "value": "recreation_ground" - }, - { - "key": "landuse", - "value": "residential" - }, - { - "key": "landuse", - "value": "retail" - }, - { - "key": "landuse", - "value": "vineyard" - }, - { - "key": "leisure" - }, - { - "key": "leisure", - "value": "adult_gaming_centre" - }, - { - "key": "leisure", - "value": "bird_hide" - }, - { - "key": "leisure", - "value": "bowling_alley" - }, - { - "key": "leisure", - "value": "common" - }, - { - "key": "leisure", - "value": "dog_park" - }, - { - "key": "leisure", - "value": "firepit" - }, - { - "key": "leisure", - "value": "fitness_centre" - }, - { - "key": "sport", - "value": "yoga" - }, - { - "key": "leisure", - "value": "fitness_station" - }, - { - "key": "leisure", - "value": "garden" - }, - { - "key": "leisure", - "value": "golf_course" - }, - { - "key": "leisure", - "value": "ice_rink" - }, - { - "key": "leisure", - "value": "marina" - }, - { - "key": "leisure", - "value": "miniature_golf" - }, - { - "key": "leisure", - "value": "nature_reserve" - }, - { - "key": "leisure", - "value": "park" - }, - { - "key": "leisure", - "value": "picnic_table" - }, - { - "key": "leisure", - "value": "pitch" - }, - { - "key": "sport", - "value": "american_football" - }, - { - "key": "sport", - "value": "baseball" - }, - { - "key": "sport", - "value": "basketball" - }, - { - "key": "sport", - "value": "bowls" - }, - { - "key": "sport", - "value": "rugby_league" - }, - { - "key": "sport", - "value": "rugby_union" - }, - { - "key": "sport", - "value": "skateboard" - }, - { - "key": "sport", - "value": "soccer" - }, - { - "key": "sport", - "value": "tennis" - }, - { - "key": "sport", - "value": "volleyball" - }, - { - "key": "leisure", - "value": "playground" - }, - { - "key": "sport", - "value": "running" - }, - { - "key": "leisure", - "value": "slipway" - }, - { - "key": "leisure", - "value": "sports_centre" - }, - { - "key": "sport", - "value": "swimming" - }, - { - "key": "leisure", - "value": "stadium" - }, - { - "key": "leisure", - "value": "swimming_pool" - }, - { - "key": "leisure", - "value": "track" - }, - { - "key": "leisure", - "value": "water_park" - }, - { - "key": "man_made" - }, - { - "key": "man_made", - "value": "embankment" - }, - { - "key": "man_made", - "value": "adit" - }, - { - "key": "man_made", - "value": "breakwater" - }, - { - "key": "man_made", - "value": "bridge" - }, - { - "key": "man_made", - "value": "chimney" - }, - { - "key": "man_made", - "value": "cutline" - }, - { - "key": "man_made", - "value": "flagpole" - }, - { - "key": "man_made", - "value": "gasometer" - }, - { - "key": "man_made", - "value": "groyne" - }, - { - "key": "man_made", - "value": "lighthouse" - }, - { - "key": "man_made", - "value": "mast" - }, - { - "key": "tower:type", - "value": "observation" - }, - { - "key": "man_made", - "value": "petroleum_well" - }, - { - "key": "man_made", - "value": "pier" - }, - { - "key": "man_made", - "value": "pipeline" - }, - { - "key": "man_made", - "value": "pumping_station" - }, - { - "key": "man_made", - "value": "silo" - }, - { - "key": "man_made", - "value": "storage_tank" - }, - { - "key": "man_made", - "value": "surveillance" - }, - { - "key": "man_made", - "value": "survey_point" - }, - { - "key": "man_made", - "value": "tower" - }, - { - "key": "man_made", - "value": "wastewater_plant" - }, - { - "key": "man_made", - "value": "water_tower" - }, - { - "key": "man_made", - "value": "water_well" - }, - { - "key": "man_made", - "value": "water_works" - }, - { - "key": "man_made", - "value": "works" - }, - { - "key": "military", - "value": "airfield" - }, - { - "key": "military", - "value": "barracks" - }, - { - "key": "military", - "value": "bunker" - }, - { - "key": "military", - "value": "checkpoint" - }, - { - "key": "military", - "value": "danger_area" - }, - { - "key": "military", - "value": "naval_base" - }, - { - "key": "military", - "value": "obstacle_course" - }, - { - "key": "military", - "value": "range" - }, - { - "key": "military", - "value": "training_area" - }, - { - "key": "natural" - }, - { - "key": "natural", - "value": "bay" - }, - { - "key": "natural", - "value": "beach" - }, - { - "key": "natural", - "value": "cave_entrance" - }, - { - "key": "natural", - "value": "cliff" - }, - { - "key": "natural", - "value": "coastline" - }, - { - "key": "natural", - "value": "fell" - }, - { - "key": "natural", - "value": "glacier" - }, - { - "key": "natural", - "value": "grassland" - }, - { - "key": "natural", - "value": "heath" - }, - { - "key": "natural", - "value": "peak" - }, - { - "key": "natural", - "value": "saddle" - }, - { - "key": "natural", - "value": "scree" - }, - { - "key": "natural", - "value": "scrub" - }, - { - "key": "natural", - "value": "spring" - }, - { - "key": "natural", - "value": "tree_row" - }, - { - "key": "natural", - "value": "tree" - }, - { - "key": "natural", - "value": "volcano" - }, - { - "key": "natural", - "value": "water" - }, - { - "key": "water", - "value": "lake" - }, - { - "key": "water", - "value": "pond" - }, - { - "key": "water", - "value": "reservoir" - }, - { - "key": "natural", - "value": "wetland" - }, - { - "key": "natural", - "value": "wood" - }, - { - "key": "office" - }, - { - "key": "office", - "value": "travel_agent" - }, - { - "key": "office", - "value": "accountant" - }, - { - "key": "office", - "value": "administrative" - }, - { - "key": "office", - "value": "architect" - }, - { - "key": "office", - "value": "company" - }, - { - "key": "office", - "value": "educational_institution" - }, - { - "key": "office", - "value": "employment_agency" - }, - { - "key": "office", - "value": "estate_agent" - }, - { - "key": "office", - "value": "financial" - }, - { - "key": "office", - "value": "government" - }, - { - "key": "government", - "value": "register_office" - }, - { - "key": "office", - "value": "insurance" - }, - { - "key": "office", - "value": "it" - }, - { - "key": "office", - "value": "lawyer" - }, - { - "key": "office", - "value": "newspaper" - }, - { - "key": "office", - "value": "ngo" - }, - { - "key": "office", - "value": "physician" - }, - { - "key": "office", - "value": "political_party" - }, - { - "key": "office", - "value": "research" - }, - { - "key": "office", - "value": "telecommunication" - }, - { - "key": "office", - "value": "therapist" - }, - { - "key": "piste:type" - }, - { - "key": "place", - "value": "city" - }, - { - "key": "place", - "value": "farm" - }, - { - "key": "place", - "value": "hamlet" - }, - { - "key": "place", - "value": "island" - }, - { - "key": "place", - "value": "isolated_dwelling" - }, - { - "key": "place", - "value": "locality" - }, - { - "key": "place", - "value": "neighbourhood" - }, - { - "key": "place", - "value": "suburb" - }, - { - "key": "place", - "value": "town" - }, - { - "key": "place", - "value": "village" - }, - { - "key": "power", - "value": "sub_station" - }, - { - "key": "power", - "value": "generator" - }, - { - "key": "power", - "value": "line" - }, - { - "key": "power", - "value": "minor_line" - }, - { - "key": "power", - "value": "pole" - }, - { - "key": "power", - "value": "substation" - }, - { - "key": "power", - "value": "tower" - }, - { - "key": "power", - "value": "transformer" - }, - { - "key": "public_transport", - "value": "platform" - }, - { - "key": "public_transport", - "value": "stop_position" - }, - { - "key": "railway", - "value": "abandoned" - }, - { - "key": "railway", - "value": "crossing" - }, - { - "key": "railway", - "value": "disused" - }, - { - "key": "railway", - "value": "funicular" - }, - { - "key": "railway", - "value": "halt" - }, - { - "key": "railway", - "value": "level_crossing" - }, - { - "key": "railway", - "value": "monorail" - }, - { - "key": "railway", - "value": "narrow_gauge" - }, - { - "key": "railway", - "value": "platform" - }, - { - "key": "railway", - "value": "rail" - }, - { - "key": "railway", - "value": "station" - }, - { - "key": "railway", - "value": "subway_entrance" - }, - { - "key": "railway", - "value": "subway" - }, - { - "key": "railway", - "value": "tram" - }, - { - "key": "route", - "value": "ferry" - }, - { - "key": "shop" - }, - { - "key": "shop", - "value": "fishmonger" - }, - { - "key": "shop", - "value": "vacant" - }, - { - "key": "shop", - "value": "alcohol" - }, - { - "key": "shop", - "value": "anime" - }, - { - "key": "shop", - "value": "antiques" - }, - { - "key": "shop", - "value": "art" - }, - { - "key": "shop", - "value": "baby_goods" - }, - { - "key": "shop", - "value": "bag" - }, - { - "key": "shop", - "value": "bakery" - }, - { - "key": "shop", - "value": "bathroom_furnishing" - }, - { - "key": "shop", - "value": "beauty" - }, - { - "key": "beauty", - "value": "nails" - }, - { - "key": "beauty", - "value": "tanning" - }, - { - "key": "shop", - "value": "bed" - }, - { - "key": "shop", - "value": "beverages" - }, - { - "key": "shop", - "value": "bicycle" - }, - { - "key": "shop", - "value": "bookmaker" - }, - { - "key": "shop", - "value": "books" - }, - { - "key": "shop", - "value": "boutique" - }, - { - "key": "shop", - "value": "butcher" - }, - { - "key": "shop", - "value": "candles" - }, - { - "key": "shop", - "value": "car_parts" - }, - { - "key": "shop", - "value": "car_repair" - }, - { - "key": "shop", - "value": "car" - }, - { - "key": "shop", - "value": "carpet" - }, - { - "key": "shop", - "value": "charity" - }, - { - "key": "shop", - "value": "cheese" - }, - { - "key": "shop", - "value": "chemist" - }, - { - "key": "shop", - "value": "chocolate" - }, - { - "key": "shop", - "value": "clothes" - }, - { - "key": "shop", - "value": "coffee" - }, - { - "key": "shop", - "value": "computer" - }, - { - "key": "shop", - "value": "confectionery" - }, - { - "key": "shop", - "value": "convenience" - }, - { - "key": "shop", - "value": "copyshop" - }, - { - "key": "shop", - "value": "cosmetics" - }, - { - "key": "shop", - "value": "craft" - }, - { - "key": "shop", - "value": "curtain" - }, - { - "key": "shop", - "value": "dairy" - }, - { - "key": "shop", - "value": "deli" - }, - { - "key": "shop", - "value": "department_store" - }, - { - "key": "shop", - "value": "doityourself" - }, - { - "key": "shop", - "value": "dry_cleaning" - }, - { - "key": "shop", - "value": "e-cigarette" - }, - { - "key": "shop", - "value": "electronics" - }, - { - "key": "shop", - "value": "erotic" - }, - { - "key": "shop", - "value": "fabric" - }, - { - "key": "shop", - "value": "farm" - }, - { - "key": "shop", - "value": "fashion" - }, - { - "key": "shop", - "value": "florist" - }, - { - "key": "shop", - "value": "frame" - }, - { - "key": "shop", - "value": "funeral_directors" - }, - { - "key": "shop", - "value": "furnace" - }, - { - "key": "shop", - "value": "furniture" - }, - { - "key": "shop", - "value": "garden_centre" - }, - { - "key": "shop", - "value": "gift" - }, - { - "key": "shop", - "value": "greengrocer" - }, - { - "key": "shop", - "value": "hairdresser" - }, - { - "key": "shop", - "value": "hardware" - }, - { - "key": "shop", - "value": "hearing_aids" - }, - { - "key": "shop", - "value": "herbalist" - }, - { - "key": "shop", - "value": "hifi" - }, - { - "key": "shop", - "value": "houseware" - }, - { - "key": "shop", - "value": "interior_decoration" - }, - { - "key": "shop", - "value": "jewelry" - }, - { - "key": "shop", - "value": "kiosk" - }, - { - "key": "shop", - "value": "kitchen" - }, - { - "key": "shop", - "value": "laundry" - }, - { - "key": "shop", - "value": "leather" - }, - { - "key": "shop", - "value": "locksmith" - }, - { - "key": "shop", - "value": "lottery" - }, - { - "key": "shop", - "value": "mall" - }, - { - "key": "shop", - "value": "massage" - }, - { - "key": "shop", - "value": "medical_supply" - }, - { - "key": "shop", - "value": "mobile_phone" - }, - { - "key": "shop", - "value": "money_lender" - }, - { - "key": "shop", - "value": "motorcycle" - }, - { - "key": "shop", - "value": "music" - }, - { - "key": "shop", - "value": "musical_instrument" - }, - { - "key": "shop", - "value": "newsagent" - }, - { - "key": "shop", - "value": "nutrition_supplements" - }, - { - "key": "shop", - "value": "optician" - }, - { - "key": "organic", - "value": "only" - }, - { - "key": "shop", - "value": "outdoor" - }, - { - "key": "shop", - "value": "paint" - }, - { - "key": "shop", - "value": "pastry" - }, - { - "key": "shop", - "value": "pawnbroker" - }, - { - "key": "shop", - "value": "pet" - }, - { - "key": "shop", - "value": "photo" - }, - { - "key": "shop", - "value": "pyrotechnics" - }, - { - "key": "shop", - "value": "radiotechnics" - }, - { - "key": "shop", - "value": "religion" - }, - { - "key": "shop", - "value": "scuba_diving" - }, - { - "key": "shop", - "value": "seafood" - }, - { - "key": "shop", - "value": "second_hand" - }, - { - "key": "shop", - "value": "shoes" - }, - { - "key": "shop", - "value": "sports" - }, - { - "key": "shop", - "value": "stationery" - }, - { - "key": "shop", - "value": "storage_rental" - }, - { - "key": "shop", - "value": "supermarket" - }, - { - "key": "shop", - "value": "tailor" - }, - { - "key": "shop", - "value": "tattoo" - }, - { - "key": "shop", - "value": "tea" - }, - { - "key": "shop", - "value": "ticket" - }, - { - "key": "shop", - "value": "tobacco" - }, - { - "key": "shop", - "value": "toys" - }, - { - "key": "shop", - "value": "travel_agency" - }, - { - "key": "shop", - "value": "tyres" - }, - { - "key": "shop", - "value": "vacuum_cleaner" - }, - { - "key": "shop", - "value": "variety_store" - }, - { - "key": "shop", - "value": "video_games" - }, - { - "key": "shop", - "value": "video" - }, - { - "key": "shop", - "value": "water_sports" - }, - { - "key": "shop", - "value": "weapons" - }, - { - "key": "shop", - "value": "window_blind" - }, - { - "key": "shop", - "value": "wine" - }, - { - "key": "tourism" - }, - { - "key": "tourism", - "value": "alpine_hut" - }, - { - "key": "tourism", - "value": "apartment" - }, - { - "key": "tourism", - "value": "artwork" - }, - { - "key": "tourism", - "value": "attraction" - }, - { - "key": "tourism", - "value": "camp_site" - }, - { - "key": "tourism", - "value": "caravan_site" - }, - { - "key": "tourism", - "value": "chalet" - }, - { - "key": "tourism", - "value": "gallery" - }, - { - "key": "tourism", - "value": "guest_house" - }, - { - "key": "tourism", - "value": "hostel" - }, - { - "key": "tourism", - "value": "hotel" - }, - { - "key": "tourism", - "value": "information" - }, - { - "key": "tourism", - "value": "motel" - }, - { - "key": "tourism", - "value": "museum" - }, - { - "key": "tourism", - "value": "picnic_site" - }, - { - "key": "tourism", - "value": "theme_park" - }, - { - "key": "tourism", - "value": "viewpoint" - }, - { - "key": "tourism", - "value": "zoo" - }, - { - "key": "traffic_calming" - }, - { - "key": "traffic_calming", - "value": "bump" - }, - { - "key": "traffic_calming", - "value": "chicane" - }, - { - "key": "traffic_calming", - "value": "choker" - }, - { - "key": "traffic_calming", - "value": "cushion" - }, - { - "key": "traffic_calming", - "value": "dip" - }, - { - "key": "traffic_calming", - "value": "hump" - }, - { - "key": "traffic_calming", - "value": "island" - }, - { - "key": "traffic_calming", - "value": "rumble_strip" - }, - { - "key": "traffic_calming", - "value": "table" - }, - { - "key": "type", - "value": "multipolygon" - }, - { - "key": "type", - "value": "boundary" - }, - { - "key": "boundary", - "value": "administrative" - }, - { - "key": "type", - "value": "restriction" - }, - { - "key": "restriction", - "value": "no_left_turn" - }, - { - "key": "restriction", - "value": "no_right_turn" - }, - { - "key": "restriction", - "value": "no_straight_on" - }, - { - "key": "restriction", - "value": "no_u_turn" - }, - { - "key": "restriction", - "value": "only_left_turn" - }, - { - "key": "restriction", - "value": "only_right_turn" - }, - { - "key": "restriction", - "value": "only_straight_on" - }, - { - "key": "type", - "value": "route_master" - }, - { - "key": "type", - "value": "route" - }, - { - "key": "route", - "value": "bicycle" - }, - { - "key": "route", - "value": "bus" - }, - { - "key": "route", - "value": "detour" - }, - { - "key": "route", - "value": "ferry" - }, - { - "key": "route", - "value": "foot" - }, - { - "key": "route", - "value": "hiking" - }, - { - "key": "route", - "value": "horse" - }, - { - "key": "route", - "value": "pipeline" - }, - { - "key": "route", - "value": "power" - }, - { - "key": "route", - "value": "road" - }, - { - "key": "route", - "value": "train" - }, - { - "key": "route", - "value": "tram" - }, - { - "key": "type", - "value": "site" - }, - { - "key": "waterway", - "value": "boatyard" - }, - { - "key": "waterway", - "value": "canal" - }, - { - "key": "waterway", - "value": "dam" - }, - { - "key": "waterway", - "value": "ditch" - }, - { - "key": "waterway", - "value": "dock" - }, - { - "key": "waterway", - "value": "drain" - }, - { - "key": "waterway", - "value": "fuel" - }, - { - "key": "waterway", - "value": "river" - }, - { - "key": "waterway", - "value": "riverbank" - }, - { - "key": "waterway", - "value": "sanitary_dump_station" - }, - { - "key": "waterway", - "value": "stream" - }, - { - "key": "waterway", - "value": "water_point" - }, - { - "key": "waterway", - "value": "weir" - } - ] -} \ No newline at end of file diff --git a/dist/locales/en.json b/dist/locales/en.json deleted file mode 100644 index 2d2b98b35c..0000000000 --- a/dist/locales/en.json +++ /dev/null @@ -1,4327 +0,0 @@ -{ - "en": { - "modes": { - "add_area": { - "title": "Area", - "description": "Add parks, buildings, lakes or other areas to the map.", - "tail": "Click on the map to start drawing an area, like a park, lake, or building." - }, - "add_line": { - "title": "Line", - "description": "Add highways, streets, pedestrian paths, canals or other lines to the map.", - "tail": "Click on the map to start drawing a road, path, or route." - }, - "add_point": { - "title": "Point", - "description": "Add restaurants, monuments, postal boxes or other points to the map.", - "tail": "Click on the map to add a point." - }, - "browse": { - "title": "Browse", - "description": "Pan and zoom the map." - }, - "draw_area": { - "tail": "Click to add nodes to your area. Click the first node to finish the area." - }, - "draw_line": { - "tail": "Click to add more nodes to the line. Click on other lines to connect to them, and double-click to end the line." - } - }, - "operations": { - "add": { - "annotation": { - "point": "Added a point.", - "vertex": "Added a node to a way.", - "relation": "Added a relation." - } - }, - "start": { - "annotation": { - "line": "Started a line.", - "area": "Started an area." - } - }, - "continue": { - "key": "A", - "title": "Continue", - "description": "Continue this line.", - "not_eligible": "No line can be continued here.", - "multiple": "Several lines can be continued here. To choose a line, press the Shift key and click on it to select it.", - "annotation": { - "line": "Continued a line.", - "area": "Continued an area." - } - }, - "cancel_draw": { - "annotation": "Canceled drawing." - }, - "change_role": { - "annotation": "Changed the role of a relation member." - }, - "change_tags": { - "annotation": "Changed tags." - }, - "circularize": { - "title": "Circularize", - "description": { - "line": "Make this line circular.", - "area": "Make this area circular." - }, - "key": "O", - "annotation": { - "line": "Made a line circular.", - "area": "Made an area circular." - }, - "not_closed": "This can't be made circular because it's not a loop.", - "too_large": "This can't be made circular because not enough of it is currently visible.", - "connected_to_hidden": "This can't be made circular because it is connected to a hidden feature." - }, - "orthogonalize": { - "title": "Square", - "description": { - "line": "Square the corners of this line.", - "area": "Square the corners of this area." - }, - "key": "S", - "annotation": { - "line": "Squared the corners of a line.", - "area": "Squared the corners of an area." - }, - "not_squarish": "This can't be made square because it is not squarish.", - "too_large": "This can't be made square because not enough of it is currently visible.", - "connected_to_hidden": "This can't be made square because it is connected to a hidden feature." - }, - "straighten": { - "title": "Straighten", - "description": "Straighten this line.", - "key": "S", - "annotation": "Straightened a line.", - "too_bendy": "This can't be straightened because it bends too much.", - "connected_to_hidden": "This line can't be straightened because it is connected to a hidden feature." - }, - "delete": { - "title": "Delete", - "description": "Delete object permanently.", - "annotation": { - "point": "Deleted a point.", - "vertex": "Deleted a node from a way.", - "line": "Deleted a line.", - "area": "Deleted an area.", - "relation": "Deleted a relation.", - "multiple": "Deleted {n} objects." - }, - "incomplete_relation": "This feature can't be deleted because it hasn't been fully downloaded.", - "part_of_relation": "This feature can't be deleted because it's part of a larger relation. You must remove it from the relation first.", - "connected_to_hidden": "This can't be deleted because it is connected to a hidden feature." - }, - "add_member": { - "annotation": "Added a member to a relation." - }, - "delete_member": { - "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." - } - }, - "disconnect": { - "title": "Disconnect", - "description": "Disconnect these lines/areas from each other.", - "key": "D", - "annotation": "Disconnected lines/areas.", - "not_connected": "There aren't enough lines/areas here to disconnect.", - "connected_to_hidden": "This can't be disconnected because it is connected to a hidden feature.", - "relation": "This can't be disconnected because it connects members of a relation." - }, - "merge": { - "title": "Merge", - "description": "Merge these features.", - "key": "C", - "annotation": "Merged {n} features.", - "not_eligible": "These features can't be merged.", - "not_adjacent": "These features can't be merged because they aren't connected.", - "restriction": "These features can't be merged because at least one is a member of a \"{relation}\" relation.", - "incomplete_relation": "These features can't be merged because at least one hasn't been fully downloaded.", - "conflicting_tags": "These features can't be merged because some of their tags have conflicting values." - }, - "move": { - "title": "Move", - "description": "Move this to a different location.", - "key": "M", - "annotation": { - "point": "Moved a point.", - "vertex": "Moved a node in a way.", - "line": "Moved a line.", - "area": "Moved an area.", - "multiple": "Moved multiple objects." - }, - "incomplete_relation": "This feature can't be moved because it hasn't been fully downloaded.", - "too_large": "This can't be moved because not enough of it is currently visible.", - "connected_to_hidden": "This can't be moved because it is connected to a hidden feature." - }, - "rotate": { - "title": "Rotate", - "description": "Rotate this object around its center point.", - "key": "R", - "annotation": { - "line": "Rotated a line.", - "area": "Rotated an area." - }, - "too_large": "This can't be rotated because not enough of it is currently visible.", - "connected_to_hidden": "This can't be rotated because it is connected to a hidden feature." - }, - "reverse": { - "title": "Reverse", - "description": "Make this line go in the opposite direction.", - "key": "V", - "annotation": "Reversed a line." - }, - "split": { - "title": "Split", - "description": { - "line": "Split this line into two at this node.", - "area": "Split the boundary of this area into two.", - "multiple": "Split the lines/area boundaries at this node into two." - }, - "key": "X", - "annotation": { - "line": "Split a line.", - "area": "Split an area boundary.", - "multiple": "Split {n} lines/area boundaries." - }, - "not_eligible": "Lines can't be split at their beginning or end.", - "multiple_ways": "There are too many lines here to split.", - "connected_to_hidden": "This can't be split because it is connected to a hidden feature." - }, - "restriction": { - "help": { - "select": "Click to select a road segment.", - "toggle": "Click to toggle turn restrictions.", - "toggle_on": "Click to add a \"{restriction}\" restriction.", - "toggle_off": "Click to remove the \"{restriction}\" restriction." - }, - "annotation": { - "create": "Added a turn restriction", - "delete": "Deleted a turn restriction" - } - } - }, - "undo": { - "tooltip": "Undo: {action}", - "nothing": "Nothing to undo." - }, - "redo": { - "tooltip": "Redo: {action}", - "nothing": "Nothing to redo." - }, - "tooltip_keyhint": "Shortcut:", - "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_language": "Choose language", - "localized_translation_name": "Name" - }, - "zoom_in_edit": "Zoom in to Edit", - "logout": "logout", - "loading_auth": "Connecting to OpenStreetMap...", - "report_a_bug": "Report a bug", - "help_translate": "Help translate", - "feature_info": { - "hidden_warning": "{count} hidden features", - "hidden_details": "These features are currently hidden: {details}" - }, - "status": { - "error": "Unable to connect to API.", - "offline": "The API is offline. Please try editing later.", - "readonly": "The API is read-only. You will need to wait to save your changes." - }, - "commit": { - "title": "Save Changes", - "description_placeholder": "Brief description of your contributions (required)", - "message_label": "Changeset comment", - "upload_explanation": "The changes you upload will be visible on all maps that use OpenStreetMap data.", - "upload_explanation_with_user": "The changes you upload as {user} will be visible on all maps that use OpenStreetMap data.", - "save": "Save", - "cancel": "Cancel", - "changes": "{count} Changes", - "warnings": "Warnings", - "modified": "Modified", - "deleted": "Deleted", - "created": "Created", - "about_changeset_comments": "About changeset comments", - "about_changeset_comments_link": "//wiki.openstreetmap.org/wiki/Good_changeset_comments", - "google_warning": "You mentioned Google in this comment: remember that copying from Google Maps is strictly forbidden.", - "google_warning_link": "http://www.openstreetmap.org/copyright" - }, - "contributors": { - "list": "Edits by {users}", - "truncated_list": "Edits by {users} and {count} others" - }, - "infobox": { - "selected": "{n} selected", - "geometry": "Geometry", - "closed": "closed", - "center": "Center", - "perimeter": "Perimeter", - "length": "Length", - "area": "Area", - "centroid": "Centroid", - "location": "Location", - "metric": "Metric", - "imperial": "Imperial" - }, - "geometry": { - "point": "point", - "vertex": "vertex", - "line": "line", - "area": "area", - "relation": "relation" - }, - "geocoder": { - "search": "Search worldwide...", - "no_results_visible": "No results in visible map area", - "no_results_worldwide": "No results found" - }, - "geolocate": { - "title": "Show My Location", - "locating": "Locating, please wait..." - }, - "inspector": { - "no_documentation_combination": "There is no documentation available for this tag combination", - "no_documentation_key": "There is no documentation available for this key", - "documentation_redirect": "This documentation has been redirected to a new page", - "show_more": "Show More", - "view_on_osm": "View on openstreetmap.org", - "all_fields": "All fields", - "all_tags": "All tags", - "all_members": "All members", - "all_relations": "All relations", - "new_relation": "New relation...", - "role": "Role", - "choose": "Select feature type", - "results": "{n} results for {search}", - "reference": "View on OpenStreetMap Wiki", - "back_tooltip": "Change feature", - "remove": "Remove", - "search": "Search", - "multiselect": "Selected items", - "unknown": "Unknown", - "incomplete": "", - "feature_list": "Search features", - "edit": "Edit feature", - "check": { - "yes": "Yes", - "no": "No" - }, - "add": "Add", - "none": "None", - "node": "Node", - "way": "Way", - "relation": "Relation", - "location": "Location", - "add_fields": "Add field:" - }, - "background": { - "title": "Background", - "description": "Background settings", - "percent_brightness": "{opacity}% brightness", - "none": "None", - "best_imagery": "Best known imagery source for this location", - "switch": "Switch back to this background", - "custom": "Custom", - "custom_button": "Edit custom background", - "custom_prompt": "Enter a tile URL template. Valid tokens are {z}, {x}, {y} for Z/X/Y scheme and {u} for quadtile scheme.", - "fix_misalignment": "Adjust imagery offset", - "imagery_source_faq": "Where does this imagery come from?", - "reset": "reset", - "offset": "Drag anywhere in the gray area below to adjust the imagery offset, or enter the offset values in meters.", - "minimap": { - "description": "Minimap", - "tooltip": "Show a zoomed out map to help locate the area currently displayed." - } - }, - "map_data": { - "title": "Map Data", - "description": "Map Data", - "data_layers": "Data Layers", - "fill_area": "Fill Areas", - "map_features": "Map Features", - "autohidden": "These features have been automatically hidden because too many would be shown on the screen. You can zoom in to edit them." - }, - "feature": { - "points": { - "description": "Points", - "tooltip": "Points of Interest" - }, - "traffic_roads": { - "description": "Traffic Roads", - "tooltip": "Highways, Streets, etc." - }, - "service_roads": { - "description": "Service Roads", - "tooltip": "Service Roads, Parking Aisles, Tracks, etc." - }, - "paths": { - "description": "Paths", - "tooltip": "Sidewalks, Foot Paths, Cycle Paths, etc." - }, - "buildings": { - "description": "Buildings", - "tooltip": "Buildings, Shelters, Garages, etc." - }, - "landuse": { - "description": "Landuse Features", - "tooltip": "Forests, Farmland, Parks, Residential, Commercial, etc." - }, - "boundaries": { - "description": "Boundaries", - "tooltip": "Administrative Boundaries" - }, - "water": { - "description": "Water Features", - "tooltip": "Rivers, Lakes, Ponds, Basins, etc." - }, - "rail": { - "description": "Rail Features", - "tooltip": "Railways" - }, - "power": { - "description": "Power Features", - "tooltip": "Power Lines, Power Plants, Substations, etc." - }, - "past_future": { - "description": "Past/Future", - "tooltip": "Proposed, Construction, Abandoned, Demolished, etc." - }, - "others": { - "description": "Others", - "tooltip": "Everything Else" - } - }, - "area_fill": { - "wireframe": { - "description": "No Fill (Wireframe)", - "tooltip": "Enabling wireframe mode makes it easy to see the background imagery." - }, - "partial": { - "description": "Partial Fill", - "tooltip": "Areas are drawn with fill only around their inner edges. (Recommended for beginner mappers)" - }, - "full": { - "description": "Full Fill", - "tooltip": "Areas are drawn fully filled." - } - }, - "restore": { - "heading": "You have unsaved changes", - "description": "Do you wish to restore unsaved changes from a previous editing session?", - "restore": "Restore", - "reset": "Reset" - }, - "save": { - "title": "Save", - "help": "Save changes to OpenStreetMap, making them visible to other users.", - "no_changes": "No changes to save.", - "error": "Errors occurred while trying to save", - "status_code": "Server returned status code {code}", - "unknown_error_details": "Please ensure you are connected to the internet.", - "uploading": "Uploading changes to OpenStreetMap.", - "unsaved_changes": "You have unsaved changes", - "conflict": { - "header": "Resolve conflicting edits", - "count": "Conflict {num} of {total}", - "previous": "< Previous", - "next": "Next >", - "keep_local": "Keep mine", - "keep_remote": "Use theirs", - "restore": "Restore", - "delete": "Leave Deleted", - "download_changes": "Or download your changes.", - "done": "All conflicts resolved!", - "help": "Another user changed some of the same map features you changed.\nClick on each item below for more details about the conflict, and choose whether to keep\nyour changes or the other user's changes.\n" - } - }, - "merge_remote_changes": { - "conflict": { - "deleted": "This object has been deleted by {user}.", - "location": "This object was moved by both you and {user}.", - "nodelist": "Nodes were changed by both you and {user}.", - "memberlist": "Relation members were changed by both you and {user}.", - "tags": "You changed the {tag} tag to \"{local}\" and {user} changed it to \"{remote}\"." - } - }, - "success": { - "edited_osm": "Edited OSM!", - "just_edited": "You just edited OpenStreetMap!", - "view_on_osm": "View on OSM", - "facebook": "Share on Facebook", - "twitter": "Share on Twitter", - "google": "Share on Google+", - "help_html": "Your changes should appear in the \"Standard\" layer in a few minutes. Other layers, and certain features, may take longer.", - "help_link_text": "Details", - "help_link_url": "https://wiki.openstreetmap.org/wiki/FAQ#I_have_just_made_some_changes_to_the_map._How_do_I_get_to_see_my_changes.3F" - }, - "confirm": { - "okay": "Okay", - "cancel": "Cancel" - }, - "splash": { - "welcome": "Welcome to the iD OpenStreetMap editor", - "text": "iD is a friendly but powerful tool for contributing to the world's best free world map. This is version {version}. For more information see {website} and report bugs at {github}.", - "walkthrough": "Start the Walkthrough", - "start": "Edit Now" - }, - "source_switch": { - "live": "live", - "lose_changes": "You have unsaved changes. Switching the map server will discard them. Are you sure you want to switch servers?", - "dev": "dev" - }, - "tag_reference": { - "description": "Description", - "on_wiki": "{tag} on wiki.osm.org", - "used_with": "used with {type}" - }, - "validations": { - "untagged_point": "Untagged point", - "untagged_line": "Untagged line", - "untagged_area": "Untagged area", - "many_deletions": "You're deleting {n} objects. Are you sure you want to do this? This will delete them from the map that everyone else sees on openstreetmap.org.", - "tag_suggests_area": "The tag {tag} suggests line should be area, but it is not an area", - "untagged_point_tooltip": "Select a feature type that describes what this point is.", - "untagged_line_tooltip": "Select a feature type that describes what this line is.", - "untagged_area_tooltip": "Select a feature type that describes what this area is.", - "deprecated_tags": "Deprecated tags: {tags}" - }, - "zoom": { - "in": "Zoom In", - "out": "Zoom Out" - }, - "cannot_zoom": "Cannot zoom out further in current mode.", - "full_screen": "Toggle Full Screen", - "gpx": { - "local_layer": "Local GPX file", - "drag_drop": "Drag and drop a .gpx file on the page, or click the button to the right to browse", - "zoom": "Zoom to GPX track", - "browse": "Browse for a .gpx file" - }, - "mapillary_images": { - "tooltip": "Street-level photos from Mapillary", - "title": "Photo Overlay (Mapillary)" - }, - "mapillary_signs": { - "tooltip": "Traffic signs from Mapillary (must enable Photo Overlay)", - "title": "Traffic Sign Overlay (Mapillary)" - }, - "mapillary": { - "view_on_mapillary": "View this image on Mapillary" - }, - "help": { - "title": "Help", - "help": "# Help\n\nThis is an editor for [OpenStreetMap](http://www.openstreetmap.org/), the\nfree and editable map of the world. You can use it to add and update\ndata in your area, making an open-source and open-data map of the world\nbetter for everyone.\n\nEdits that you make on this map will be visible to everyone who uses\nOpenStreetMap. In order to make an edit, you'll need to\n[log in](https://www.openstreetmap.org/login).\n\nThe [iD editor](http://ideditor.com/) is a collaborative project with [source\ncode available on GitHub](https://github.com/openstreetmap/iD).\n", - "editing_saving": "# Editing & Saving\n\nThis editor is designed to work primarily online, and you're accessing\nit through a website right now.\n\n### Selecting Features\n\nTo select a map feature, like a road or point of interest, click\non it on the map. This will highlight the selected feature, open a panel with\ndetails about it, and show a menu of things you can do with the feature.\n\nTo select multiple features, hold down the 'Shift' key. Then either click\non the features you want to select, or drag on the map to draw a rectangle.\nThis will draw a box and select all the points within it.\n\n### Saving Edits\n\nWhen you make changes like editing roads, buildings, and places, these are\nstored locally until you save them to the server. Don't worry if you make\na mistake - you can undo changes by clicking the undo button, and redo\nchanges by clicking the redo button.\n\nClick 'Save' to finish a group of edits - for instance, if you've completed\nan area of town and would like to start on a new area. You'll have a chance\nto review what you've done, and the editor supplies helpful suggestions\nand warnings if something doesn't seem right about the changes.\n\nIf everything looks good, you can enter a short comment explaining the change\nyou made, and click 'Save' again to post the changes\nto [OpenStreetMap.org](http://www.openstreetmap.org/), where they are visible\nto all other users and available for others to build and improve upon.\n\nIf you can't finish your edits in one sitting, you can leave the editor\nwindow and come back (on the same browser and computer), and the\neditor application will offer to restore your work.\n\n### Using the editor\n\nA list of available keyboard shortcuts can be found [here](http://wiki.openstreetmap.org/wiki/ID/Shortcuts).\n", - "roads": "# Roads\n\nYou can create, fix, and delete roads with this editor. Roads can be all\nkinds: paths, highways, trails, cycleways, and more - any often-crossed\nsegment should be mappable.\n\n### Selecting\n\nClick on a road to select it. An outline should become visible, along\nwith a small tools menu on the map and a sidebar showing more information\nabout the road.\n\n### Modifying\n\nOften you'll see roads that aren't aligned to the imagery behind them\nor to a GPS track. You can adjust these roads so they are in the correct\nplace.\n\nFirst click on the road you want to change. This will highlight it and show\ncontrol points along it that you can drag to better locations. If\nyou want to add new control points for more detail, double-click a part\nof the road without a node, and one will be added.\n\nIf the road connects to another road, but doesn't properly connect on\nthe map, you can drag one of its control points onto the other road in\norder to join them. Having roads connect is important for the map\nand essential for providing driving directions.\n\nYou can also click the 'Move' tool or press the `M` shortcut key to move the entire road at\none time, and then click again to save that movement.\n\n### Deleting\n\nIf a road is entirely incorrect - you can see that it doesn't exist in satellite\nimagery and ideally have confirmed locally that it's not present - you can delete\nit, which removes it from the map. Be cautious when deleting features -\nlike any other edit, the results are seen by everyone and satellite imagery\nis often out of date, so the road could simply be newly built.\n\nYou can delete a road by clicking on it to select it, then clicking the\ntrash can icon or pressing the 'Delete' key.\n\n### Creating\n\nFound somewhere there should be a road but there isn't? Click the 'Line'\nicon in the top-left of the editor or press the shortcut key `2` to start drawing\na line.\n\nClick on the start of the road on the map to start drawing. If the road\nbranches off from an existing road, start by clicking on the place where they connect.\n\nThen click on points along the road so that it follows the right path, according\nto satellite imagery or GPS. If the road you are drawing crosses another road, connect\nit by clicking on the intersection point. When you're done drawing, double-click\nor press 'Return' or 'Enter' on your keyboard.\n", - "gps": "# GPS\n\nCollected GPS traces are one valuable source of data for OpenStreetMap. This editor\nsupports local traces - `.gpx` files on your local computer. You can collect\nthis kind of GPS trace with a number of smartphone applications as well as\npersonal GPS hardware.\n\nFor information on how to perform a GPS survey, read\n[Mapping with a smartphone, GPS, or paper](http://learnosm.org/en/mobile-mapping/).\n\nTo use a GPX track for mapping, drag and drop the GPX file onto the map\neditor. If it's recognized, it will be added to the map as a bright purple\nline. Click on the 'Map Data' menu on the right side to enable,\ndisable, or zoom to this new GPX-powered layer.\n\nThe GPX track isn't directly uploaded to OpenStreetMap - the best way to\nuse it is to draw on the map, using it as a guide for the new features that\nyou add, and also to [upload it to OpenStreetMap](http://www.openstreetmap.org/trace/create)\nfor other users to use.\n", - "imagery": "# Imagery\n\nAerial imagery is an important resource for mapping. A combination of\nairplane flyovers, satellite views, and freely-compiled sources are available\nin the editor under the 'Background Settings' menu on the right.\n\nBy default a [Bing Maps](http://www.bing.com/maps/) satellite layer is\npresented in the editor, but as you pan and zoom the map to new geographical\nareas, new sources will become available. Some countries, like the United\nStates, France, and Denmark have very high-quality imagery available for some areas.\n\nImagery is sometimes offset from the map data because of a mistake on the\nimagery provider's side. If you see a lot of roads shifted from the background,\ndon't immediately move them all to match the background. Instead you can adjust\nthe imagery so that it matches the existing data by clicking 'Fix alignment' at\nthe bottom of the Background Settings UI.\n", - "addresses": "# Addresses\n\nAddresses are some of the most useful information for the map.\n\nAlthough addresses are often represented as parts of streets, in OpenStreetMap\nthey're recorded as attributes of buildings and places along streets.\n\nYou can add address information to places mapped as building outlines\nas well as those mapped as single points. The optimal source of address\ndata is from an on-the-ground survey or personal knowledge - as with any\nother feature, copying from commercial sources like Google Maps is strictly\nforbidden.\n", - "inspector": "# Using the Inspector\n\nThe inspector is the section on the left side of the page that allows you to\nedit the details of the selected feature.\n\n### Selecting a Feature Type\n\nAfter you add a point, line, or area, you can choose what type of feature it\nis, like whether it's a highway or residential road, supermarket or cafe.\nThe inspector will display buttons for common feature types, and you can\nfind others by typing what you're looking for in the search box.\n\nClick the 'i' in the bottom-right-hand corner of a feature type button to\nlearn more about it. Click a button to choose that type.\n\n### Using Forms and Editing Tags\n\nAfter you choose a feature type, or when you select a feature that already\nhas a type assigned, the inspector will display fields with details about\nthe feature like its name and address.\n\nBelow the fields you see, you can click the 'Add field' dropdown to add\nother details, like a Wikipedia link, wheelchair access, and more.\n\nAt the bottom of the inspector, click 'Additional tags' to add arbitrary\nother tags to the element. [Taginfo](http://taginfo.openstreetmap.org/) is a\ngreat resource for learn more about popular tag combinations.\n\nChanges you make in the inspector are automatically applied to the map.\nYou can undo them at any time by clicking the 'Undo' button.\n", - "buildings": "# Buildings\n\nOpenStreetMap is the world's largest database of buildings. You can create\nand improve this database.\n\n### Selecting\n\nYou can select a building by clicking on its border. This will highlight the\nbuilding and open a small tools menu and a sidebar showing more information\nabout the building.\n\n### Modifying\n\nSometimes buildings are incorrectly placed or have incorrect tags.\n\nTo move an entire building, select it, then click the 'Move' tool. Move your\nmouse to shift the building, and click when it's correctly placed.\n\nTo fix the specific shape of a building, click and drag the nodes that form\nits border into better places.\n\n### Creating\n\nOne of the main questions around adding buildings to the map is that\nOpenStreetMap records buildings both as shapes and points. The rule of thumb\nis to _map a building as a shape whenever possible_, and map companies, homes,\namenities, and other things that operate out of buildings as points placed\nwithin the building shape.\n\nStart drawing a building as a shape by clicking the 'Area' button in the top\nleft of the interface, and end it either by pressing 'Return' on your keyboard\nor clicking on the first node drawn to close the shape.\n\n### Deleting\n\nIf a building is entirely incorrect - you can see that it doesn't exist in satellite\nimagery and ideally have confirmed locally that it's not present - you can delete\nit, which removes it from the map. Be cautious when deleting features -\nlike any other edit, the results are seen by everyone and satellite imagery\nis often out of date, so the building could simply be newly built.\n\nYou can delete a building by clicking on it to select it, then clicking the\ntrash can icon or pressing the 'Delete' key.\n", - "relations": "# Relations\n\nA relation is a special type of feature in OpenStreetMap that groups together\nother features. For example, two common types of relations are *route relations*,\nwhich group together sections of road that belong to a specific freeway or\nhighway, and *multipolygons*, which group together several lines that define\na complex area (one with several pieces or holes in it like a donut).\n\nThe group of features in a relation are called *members*. In the sidebar, you can\nsee which relations a feature is a member of, and click on a relation there\nto select the it. When the relation is selected, you can see all of its\nmembers listed in the sidebar and highlighted on the map.\n\nFor the most part, iD will take care of maintaining relations automatically\nwhile you edit. The main thing you should be aware of is that if you delete a\nsection of road to redraw it more accurately, you should make sure that the\nnew section is a member of the same relations as the original.\n\n## Editing Relations\n\nIf you want to edit relations, here are the basics.\n\nTo add a feature to a relation, select the feature, click the \"+\" button in the\n\"All relations\" section of the sidebar, and select or type the name of the relation.\n\nTo create a new relation, select the first feature that should be a member,\nclick the \"+\" button in the \"All relations\" section, and select \"New relation...\".\n\nTo remove a feature from a relation, select the feature and click the trash\nbutton next to the relation you want to remove it from.\n\nYou can create multipolygons with holes using the \"Merge\" tool. Draw two areas (inner\nand outer), hold the Shift key and click on each of them to select them both, and then\nclick the \"Merge\" (+) button.\n" - }, - "intro": { - "done": "done", - "graph": { - "city_hall": "Three Rivers City Hall", - "fire_department": "Three Rivers Fire Department", - "memory_isle_park": "Memory Isle Park", - "riverwalk_trail": "Riverwalk Trail", - "w_michigan_ave": "West Michigan Avenue", - "e_michigan_ave": "East Michigan Avenue", - "spring_st": "Spring Street", - "scidmore_park": "Scidmore Park", - "petting_zoo": "Scidmore Park Petting Zoo", - "n_andrews_st": "North Andrews Street", - "s_andrews_st": "South Andrews Street", - "n_constantine_st": "North Constantine Street", - "s_constantine_st": "South Constantine Street", - "rocky_river": "Rocky River", - "railroad_dr": "Railroad Drive", - "conrail_rr": "Conrail Railroad", - "st_joseph_river": "Saint Joseph River", - "n_main_st": "North Main Street", - "s_main_st": "South Main Street", - "water_st": "Water Street", - "foster_st": "Foster Street", - "portage_river": "Portage River", - "flower_st": "Flower Street", - "elm_st": "Elm Street", - "walnut_st": "Walnut Street", - "morris_ave": "Morris Avenue", - "east_st": "East Street", - "portage_ave": "Portage Avenue" - }, - "navigation": { - "title": "Navigation", - "drag": "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**", - "select": "Map features are represented three ways: using points, lines or areas. All features can be selected by clicking on them. **Click on the point to select it.**", - "pane": "When a feature is selected, the feature editor is displayed. The header shows us the feature type and the main pane shows the feature's attributes, such as its name and address. **Close the feature editor by pressing the {button} button in the top right.**", - "search": "You can also search for features in the current view, or worldwide. **Search for '{name}'**", - "choose": "**Choose {name} from the list to select it.**", - "chosen": "Great! {name} is now selected. **Close the feature editor by pressing the {button} button.**" - }, - "points": { - "title": "Points", - "add": "Points can be used to represent features such as shops, restaurants, and monuments. They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**", - "place": "The point can be placed by clicking on the map. **Click the map to place the new point on top of the building.**", - "search": "There are many different features that can be represented by points. The point you just added is a Cafe. **Search for '{name}'**", - "choose": "**Choose Cafe from the list.**", - "describe": "The point is now marked as a cafe. Using the feature editor, we can add more information about the feature. **Add a name**", - "close": "The feature editor will remember all of your changes automatically. When you change a feature, the close button will change to a checkmark. **Click the {button} button to close the feature editor**", - "reselect": "Often points will already exist, but have mistakes or be incomplete. We can edit existing points. **Click to select the point you just created.**", - "fixname": "**Change the name, then click the {button} button to close the feature editor.**", - "reselect_delete": "All features on the map can be deleted. **Click to select the point you created.**", - "delete": "The menu around the point contains operations that can be performed on it, including delete. **Click on the {button} button to delete the point.**" - }, - "areas": { - "title": "Areas", - "add": "Areas are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the {button} Area button to add a new area.**", - "corner": "Areas are drawn by placing nodes that mark the boundary of the area. **Click to place a starting node on one of the corners of the playground.**", - "place": "Draw the area by placing more nodes. Finish the area by clicking on the starting node. **Draw an area for the playground.**", - "search": "**Search for '{name}'.**", - "choose": "**Choose Playground from the list.**", - "describe": "**Add a name, then click the {button} button to close the feature editor**" - }, - "lines": { - "title": "Lines", - "add": "Lines are used to represent features such as roads, railroads, and rivers. **Click the {button} Line button to add a new line.**", - "start": "**Start the line by clicking on the end of the road.**", - "intersect": "Click to add more nodes to the line. You can drag the map while drawing if necessary. Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on {name} to create an intersection connecting the two lines.**", - "finish": "Lines can be finished by clicking on the last node again. **Finish drawing the road.**", - "road": "**Select Road from the list**", - "residential": "There are different types of roads, the most common of which is Residential. **Choose the Residential road type**", - "describe": "**Name the road, then click the {button} button to close the feature editor.**", - "restart": "The road needs to intersect {name}.", - "wrong_preset": "You didn't select the Residential road type. **Click here to choose again**" - }, - "startediting": { - "title": "Start Editing", - "help": "You can replay this walkthrough or view more documentation by clicking the {button} Help button.", - "save": "Don't forget to regularly save your changes!", - "start": "Start mapping!" - } - }, - "presets": { - "categories": { - "category-barrier": { - "name": "Barrier Features" - }, - "category-building": { - "name": "Building Features" - }, - "category-golf": { - "name": "Golf Features" - }, - "category-landuse": { - "name": "Land Use Features" - }, - "category-path": { - "name": "Path Features" - }, - "category-rail": { - "name": "Rail Features" - }, - "category-restriction": { - "name": "Restriction Features" - }, - "category-road": { - "name": "Road Features" - }, - "category-route": { - "name": "Route Features" - }, - "category-water-area": { - "name": "Water Features" - }, - "category-water-line": { - "name": "Water Features" - } - }, - "fields": { - "access_simple": { - "label": "Allowed Access" - }, - "access_toilets": { - "label": "Access" - }, - "access": { - "label": "Allowed Access", - "placeholder": "Not Specified", - "types": { - "access": "All", - "foot": "Foot", - "motor_vehicle": "Motor Vehicles", - "bicycle": "Bicycles", - "horse": "Horses" - }, - "options": { - "yes": { - "title": "Allowed", - "description": "Access permitted by law; a right of way" - }, - "no": { - "title": "Prohibited", - "description": "Access not permitted to the general public" - }, - "permissive": { - "title": "Permissive", - "description": "Access permitted until such time as the owner revokes the permission" - }, - "private": { - "title": "Private", - "description": "Access permitted only with permission of the owner on an individual basis" - }, - "designated": { - "title": "Designated", - "description": "Access permitted according to signs or specific local laws" - }, - "destination": { - "title": "Destination", - "description": "Access permitted only to reach a destination" - }, - "dismount": { - "title": "Dismount", - "description": "Access permitted but rider must dismount" - } - } - }, - "address": { - "label": "Address", - "placeholders": { - "city": "City", - "conscriptionnumber": "123", - "country": "Country", - "district": "District", - "floor": "Floor", - "hamlet": "Hamlet", - "housename": "Housename", - "housenumber": "123", - "place": "Place", - "postcode": "Postcode", - "province": "Province", - "state": "State", - "street": "Street", - "subdistrict": "Subdistrict", - "suburb": "Suburb" - } - }, - "admin_level": { - "label": "Admin Level" - }, - "aerialway": { - "label": "Type" - }, - "aerialway/access": { - "label": "Access", - "options": { - "entry": "Entry", - "exit": "Exit", - "both": "Both" - } - }, - "aerialway/bubble": { - "label": "Bubble" - }, - "aerialway/capacity": { - "label": "Capacity (per hour)", - "placeholder": "500, 2500, 5000..." - }, - "aerialway/duration": { - "label": "Duration (minutes)", - "placeholder": "1, 2, 3..." - }, - "aerialway/heating": { - "label": "Heated" - }, - "aerialway/occupancy": { - "label": "Occupancy", - "placeholder": "2, 4, 8..." - }, - "aerialway/summer/access": { - "label": "Access (summer)", - "options": { - "entry": "Entry", - "exit": "Exit", - "both": "Both" - } - }, - "aeroway": { - "label": "Type" - }, - "amenity": { - "label": "Type" - }, - "area/highway": { - "label": "Type" - }, - "artist": { - "label": "Artist" - }, - "artwork_type": { - "label": "Type" - }, - "atm": { - "label": "ATM" - }, - "backrest": { - "label": "Backrest" - }, - "barrier": { - "label": "Type" - }, - "beauty": { - "label": "Shop Type" - }, - "bench": { - "label": "Bench" - }, - "bicycle_parking": { - "label": "Type" - }, - "bin": { - "label": "Waste Bin" - }, - "blood_components": { - "label": "Blood Components", - "options": { - "whole": "whole blood", - "plasma": "plasma", - "platelets": "platelets", - "stemcells": "stem cell samples" - } - }, - "boundary": { - "label": "Type" - }, - "brand": { - "label": "Brand" - }, - "building_area": { - "label": "Building" - }, - "building": { - "label": "Building" - }, - "capacity": { - "label": "Capacity", - "placeholder": "50, 100, 200..." - }, - "cardinal_direction": { - "label": "Direction", - "options": { - "N": "North", - "E": "East", - "S": "South", - "W": "West", - "NE": "Northeast", - "SE": "Southeast", - "SW": "Southwest", - "NW": "Northwest", - "NNE": "North-northeast", - "ENE": "East-northeast", - "ESE": "East-southeast", - "SSE": "South-southeast", - "SSW": "South-southwest", - "WSW": "West-southwest", - "WNW": "West-northwest", - "NNW": "North-northwest" - } - }, - "clock_direction": { - "label": "Direction", - "options": { - "clockwise": "Clockwise", - "anticlockwise": "Counterclockwise" - } - }, - "collection_times": { - "label": "Collection Times" - }, - "construction": { - "label": "Type" - }, - "content": { - "label": "Contents" - }, - "country": { - "label": "Country" - }, - "covered": { - "label": "Covered" - }, - "craft": { - "label": "Type" - }, - "crop": { - "label": "Crop" - }, - "crossing": { - "label": "Type" - }, - "cuisine": { - "label": "Cuisine" - }, - "currency_multi": { - "label": "Currency Types" - }, - "cycle_network": { - "label": "Network" - }, - "cycleway": { - "label": "Bike Lanes", - "placeholder": "none", - "types": { - "cycleway:left": "Left side", - "cycleway:right": "Right side" - }, - "options": { - "none": { - "title": "None", - "description": "No bike lane" - }, - "lane": { - "title": "Standard bike lane", - "description": "A bike lane separated from auto traffic by a painted line" - }, - "shared_lane": { - "title": "Shared bike lane", - "description": "A bike lane with no separation from auto traffic" - }, - "track": { - "title": "Bike track", - "description": "A bike lane separated from traffic by a physical barrier" - }, - "share_busway": { - "title": "Bike lane shared with bus", - "description": "A bike lane shared with a bus lane" - }, - "opposite_lane": { - "title": "Opposite bike lane", - "description": "A bike lane that travels in the opposite direction of traffic" - }, - "opposite": { - "title": "Contraflow bike lane", - "description": "A bike lane that travels in both directions on a one-way street" - } - } - }, - "date": { - "label": "Date" - }, - "delivery": { - "label": "Delivery" - }, - "denomination": { - "label": "Denomination" - }, - "denotation": { - "label": "Denotation" - }, - "description": { - "label": "Description" - }, - "diaper": { - "label": "Diaper Changing Available" - }, - "display": { - "label": "Display" - }, - "dock": { - "label": "Type" - }, - "drive_through": { - "label": "Drive-Through" - }, - "electrified": { - "label": "Electrification", - "placeholder": "Contact Line, Electrified Rail...", - "options": { - "contact_line": "Contact Line", - "rail": "Electrified Rail", - "yes": "Yes (unspecified)", - "no": "No" - } - }, - "elevation": { - "label": "Elevation" - }, - "emergency": { - "label": "Emergency" - }, - "entrance": { - "label": "Type" - }, - "except": { - "label": "Exceptions" - }, - "fax": { - "label": "Fax", - "placeholder": "+31 42 123 4567" - }, - "fee": { - "label": "Fee" - }, - "fire_hydrant/type": { - "label": "Type", - "options": { - "pillar": "Pillar/Aboveground", - "underground": "Underground", - "wall": "Wall", - "pond": "Pond" - } - }, - "fixme": { - "label": "Fix Me" - }, - "fuel_multi": { - "label": "Fuel Types" - }, - "fuel": { - "label": "Fuel" - }, - "gauge": { - "label": "Gauge" - }, - "gender": { - "label": "Gender", - "placeholder": "Unknown", - "options": { - "male": "Male", - "female": "Female", - "unisex": "Unisex" - } - }, - "generator/method": { - "label": "Method" - }, - "generator/source": { - "label": "Source" - }, - "generator/type": { - "label": "Type" - }, - "golf_hole": { - "label": "Reference", - "placeholder": "Hole number (1-18)" - }, - "handicap": { - "label": "Handicap", - "placeholder": "1-18" - }, - "handrail": { - "label": "Handrail" - }, - "highway": { - "label": "Type" - }, - "historic": { - "label": "Type" - }, - "hoops": { - "label": "Hoops", - "placeholder": "1, 2, 4..." - }, - "iata": { - "label": "IATA" - }, - "icao": { - "label": "ICAO" - }, - "incline_steps": { - "label": "Incline", - "options": { - "up": "Up", - "down": "Down" - } - }, - "incline": { - "label": "Incline" - }, - "indoor": { - "label": "Indoor" - }, - "information": { - "label": "Type" - }, - "internet_access": { - "label": "Internet Access", - "options": { - "yes": "Yes", - "no": "No", - "wlan": "Wifi", - "wired": "Wired", - "terminal": "Terminal" - } - }, - "internet_access/fee": { - "label": "Internet Access Fee" - }, - "kerb": { - "label": "Curb Ramp" - }, - "lamp_type": { - "label": "Type" - }, - "landuse": { - "label": "Type" - }, - "lanes": { - "label": "Lanes", - "placeholder": "1, 2, 3..." - }, - "layer": { - "label": "Layer" - }, - "leaf_cycle_singular": { - "label": "Leaf Cycle", - "options": { - "evergreen": "Evergreen", - "deciduous": "Deciduous", - "semi_evergreen": "Semi-Evergreen", - "semi_deciduous": "Semi-Deciduous" - } - }, - "leaf_cycle": { - "label": "Leaf Cycle", - "options": { - "evergreen": "Evergreen", - "deciduous": "Deciduous", - "semi_evergreen": "Semi-Evergreen", - "semi_deciduous": "Semi-Deciduous", - "mixed": "Mixed" - } - }, - "leaf_type_singular": { - "label": "Leaf Type", - "options": { - "broadleaved": "Broadleaved", - "needleleaved": "Needleleaved", - "leafless": "Leafless" - } - }, - "leaf_type": { - "label": "Leaf Type", - "options": { - "broadleaved": "Broadleaved", - "needleleaved": "Needleleaved", - "mixed": "Mixed", - "leafless": "Leafless" - } - }, - "leisure": { - "label": "Type" - }, - "length": { - "label": "Length (Meters)" - }, - "level": { - "label": "Level" - }, - "levels": { - "label": "Levels", - "placeholder": "2, 4, 6..." - }, - "lit": { - "label": "Lit" - }, - "location": { - "label": "Location" - }, - "man_made": { - "label": "Type" - }, - "maxspeed": { - "label": "Speed Limit", - "placeholder": "40, 50, 60..." - }, - "maxstay": { - "label": "Max Stay" - }, - "mtb/scale": { - "label": "Mountain Biking Difficulty", - "placeholder": "0, 1, 2, 3...", - "options": { - "0": "0: Solid gravel/packed earth, no obstacles, wide curves", - "1": "1: Some loose surface, small obstacles, wide curves", - "2": "2: Much loose surface, large obstacles, easy hairpins", - "3": "3: Slippery surface, large obstacles, tight hairpins", - "4": "4: Loose surface or boulders, dangerous hairpins", - "5": "5: Maximum difficulty, boulder fields, landslides", - "6": "6: Not rideable except by the very best mountain bikers" - } - }, - "mtb/scale/imba": { - "label": "IMBA Trail Difficulty", - "placeholder": "Easy, Medium, Difficult...", - "options": { - "0": "Easiest (white circle)", - "1": "Easy (green circle)", - "2": "Medium (blue square)", - "3": "Difficult (black diamond)", - "4": "Extremely Difficult (double black diamond)" - } - }, - "mtb/scale/uphill": { - "label": "Mountain Biking Uphill Difficulty", - "placeholder": "0, 1, 2, 3...", - "options": { - "0": "0: Avg. incline <10%, gravel/packed earth, no obstacles", - "1": "1: Avg. incline <15%, gravel/packed earth, few small objects", - "2": "2: Avg. incline <20%, stable surface, fistsize rocks/roots", - "3": "3: Avg. incline <25%, variable surface, fistsize rocks/branches", - "4": "4: Avg. incline <30%, poor condition, big rocks/branches", - "5": "5: Very steep, bike generally needs to be pushed or carried" - } - }, - "name": { - "label": "Name", - "placeholder": "Common name (if any)" - }, - "natural": { - "label": "Natural" - }, - "network_bicycle": { - "label": "Network Type", - "placeholder": "Local, Regional, National, International", - "options": { - "lcn": "Local", - "rcn": "Regional", - "ncn": "National", - "icn": "International" - } - }, - "network_foot": { - "label": "Network Type", - "placeholder": "Local, Regional, National, International", - "options": { - "lwn": "Local", - "rwn": "Regional", - "nwn": "National", - "iwn": "International" - } - }, - "network_horse": { - "label": "Network Type", - "placeholder": "Local, Regional, National, International", - "options": { - "lhn": "Local", - "rhn": "Regional", - "nhn": "National", - "ihn": "International" - } - }, - "network_road": { - "label": "Network" - }, - "network": { - "label": "Network" - }, - "note": { - "label": "Note" - }, - "office": { - "label": "Type" - }, - "oneway_yes": { - "label": "One Way", - "options": { - "undefined": "Assumed to be Yes", - "yes": "Yes", - "no": "No" - } - }, - "oneway": { - "label": "One Way", - "options": { - "undefined": "Assumed to be No", - "yes": "Yes", - "no": "No" - } - }, - "opening_hours": { - "label": "Hours" - }, - "operator": { - "label": "Operator" - }, - "par": { - "label": "Par", - "placeholder": "3, 4, 5..." - }, - "parallel_direction": { - "label": "Direction", - "options": { - "forward": "Forward", - "backward": "Backward" - } - }, - "park_ride": { - "label": "Park and Ride" - }, - "parking": { - "label": "Type", - "options": { - "surface": "Surface", - "multi-storey": "Multilevel", - "underground": "Underground", - "sheds": "Sheds", - "carports": "Carports", - "garage_boxes": "Garage Boxes", - "lane": "Roadside Lane" - } - }, - "payment_multi": { - "label": "Payment Types" - }, - "phone": { - "label": "Phone", - "placeholder": "+31 42 123 4567" - }, - "piste/difficulty": { - "label": "Difficulty", - "placeholder": "Easy, Intermediate, Advanced...", - "options": { - "novice": "Novice (instructional)", - "easy": "Easy (green circle)", - "intermediate": "Intermediate (blue square)", - "advanced": "Advanced (black diamond)", - "expert": "Expert (double black diamond)", - "freeride": "Freeride (off-piste)", - "extreme": "Extreme (climbing equipment required)" - } - }, - "piste/grooming": { - "label": "Grooming", - "options": { - "classic": "Classic", - "mogul": "Mogul", - "backcountry": "Backcountry", - "classic+skating": "Classic and Skating", - "scooter": "Scooter/Snowmobile", - "skating": "Skating" - } - }, - "piste/type": { - "label": "Type", - "options": { - "downhill": "Downhill", - "nordic": "Nordic", - "skitour": "Skitour", - "sled": "Sled", - "hike": "Hike", - "sleigh": "Sleigh", - "ice_skate": "Ice Skate", - "snow_park": "Snow Park", - "playground": "Playground" - } - }, - "place": { - "label": "Type" - }, - "population": { - "label": "Population" - }, - "power_supply": { - "label": "Power Supply" - }, - "power": { - "label": "Type" - }, - "railway": { - "label": "Type" - }, - "recycling_accepts": { - "label": "Accepts" - }, - "recycling_type": { - "label": "Recycling Type", - "options": { - "container": "Container", - "centre": "Recycling Center" - } - }, - "ref": { - "label": "Reference" - }, - "relation": { - "label": "Type" - }, - "religion": { - "label": "Religion" - }, - "restriction": { - "label": "Type" - }, - "restrictions": { - "label": "Turn Restrictions" - }, - "rooms": { - "label": "Rooms" - }, - "route_master": { - "label": "Type" - }, - "route": { - "label": "Type" - }, - "sac_scale": { - "label": "Hiking Difficulty", - "placeholder": "Mountain Hiking, Alpine Hiking...", - "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": { - "label": "Toilet Disposal" - }, - "seasonal": { - "label": "Seasonal" - }, - "second_hand": { - "label": "Sells Used", - "placeholder": "Yes, No, Only", - "options": { - "yes": "Yes", - "no": "No", - "only": "Only" - } - }, - "service_rail": { - "label": "Service Type", - "options": { - "spur": "Spur", - "yard": "Yard", - "siding": "Siding", - "crossover": "Crossover" - } - }, - "service": { - "label": "Type" - }, - "service/bicycle": { - "label": "Services" - }, - "shelter_type": { - "label": "Type" - }, - "shelter": { - "label": "Shelter" - }, - "shop": { - "label": "Type" - }, - "site": { - "label": "Type" - }, - "smoking": { - "label": "Smoking", - "placeholder": "No, Separated, Yes...", - "options": { - "no": "No smoking anywhere", - "separated": "In smoking areas, not physically isolated", - "isolated": "In smoking areas, physically isolated", - "outside": "Allowed outside", - "yes": "Allowed everywhere", - "dedicated": "Dedicated to smokers (e.g. smokers' club)" - } - }, - "smoothness": { - "label": "Smoothness", - "placeholder": "Thin Rollers, Wheels, Off-Road...", - "options": { - "excellent": "Thin Rollers: rollerblade, skateboard", - "good": "Thin Wheels: racing bike", - "intermediate": "Wheels: city bike, wheelchair, scooter", - "bad": "Robust Wheels: trekking bike, car, rickshaw", - "very_bad": "High Clearance: light duty off-road vehicle", - "horrible": "Off-Road: heavy duty off-road vehicle", - "very_horrible": "Specialized off-road: tractor, ATV", - "impassable": "Impassable / No wheeled vehicle" - } - }, - "social_facility_for": { - "label": "People served", - "placeholder": "Homeless, Disabled, Child, etc" - }, - "source": { - "label": "Source" - }, - "sport_ice": { - "label": "Sport" - }, - "sport_racing": { - "label": "Sport" - }, - "sport": { - "label": "Sport" - }, - "stars": { - "label": "Stars" - }, - "stop": { - "label": "Stop Type", - "options": { - "all": "All Ways", - "minor": "Minor Road" - } - }, - "structure": { - "label": "Structure", - "placeholder": "Unknown", - "options": { - "bridge": "Bridge", - "tunnel": "Tunnel", - "embankment": "Embankment", - "cutting": "Cutting", - "ford": "Ford" - } - }, - "studio": { - "label": "Type" - }, - "substation": { - "label": "Type" - }, - "supervised": { - "label": "Supervised" - }, - "support": { - "label": "Support" - }, - "surface": { - "label": "Surface" - }, - "tactile_paving": { - "label": "Tactile Paving" - }, - "takeaway": { - "label": "Takeaway", - "placeholder": "Yes, No, Takeaway Only...", - "options": { - "yes": "Yes", - "no": "No", - "only": "Takeaway Only" - } - }, - "toilets/disposal": { - "label": "Disposal", - "options": { - "flush": "Flush", - "pitlatrine": "Pit/Latrine", - "chemical": "Chemical", - "bucket": "Bucket" - } - }, - "tourism": { - "label": "Type" - }, - "towertype": { - "label": "Tower type" - }, - "tracktype": { - "label": "Track Type", - "placeholder": "Solid, Mostly Solid, Soft...", - "options": { - "grade1": "Solid: paved or heavily compacted hardcore surface", - "grade2": "Mostly Solid: gravel/rock with some soft material mixed in", - "grade3": "Even mixture of hard and soft materials", - "grade4": "Mostly Soft: soil/sand/grass with some hard material mixed in", - "grade5": "Soft: soil/sand/grass" - } - }, - "traffic_calming": { - "label": "Type" - }, - "traffic_signals": { - "label": "Type" - }, - "trail_visibility": { - "label": "Trail Visibility", - "placeholder": "Excellent, Good, Bad...", - "options": { - "excellent": "Excellent: unambiguous path or markers everywhere", - "good": "Good: markers visible, sometimes require searching", - "intermediate": "Intermediate: few markers, path mostly visible", - "bad": "Bad: no markers, path sometimes invisible/pathless", - "horrible": "Horrible: often pathless, some orientation skills required", - "no": "No: pathless, excellent orientation skills required" - } - }, - "trees": { - "label": "Trees" - }, - "tunnel": { - "label": "Tunnel" - }, - "vending": { - "label": "Type of Goods" - }, - "visibility": { - "label": "Visibility", - "options": { - "house": "Up to 5m (16ft)", - "street": "5 to 20m (16 to 65ft)", - "area": "Over 20m (65ft)" - } - }, - "water_point": { - "label": "Water Point" - }, - "water": { - "label": "Type" - }, - "waterway": { - "label": "Type" - }, - "website": { - "label": "Website", - "placeholder": "http://example.com/" - }, - "wetland": { - "label": "Type" - }, - "wheelchair": { - "label": "Wheelchair Access" - }, - "width": { - "label": "Width (Meters)" - }, - "wikipedia": { - "label": "Wikipedia" - } - }, - "presets": { - "aerialway": { - "name": "Aerialway", - "terms": "ski lift,funifor,funitel" - }, - "aeroway": { - "name": "Aeroway", - "terms": "" - }, - "amenity": { - "name": "Amenity", - "terms": "" - }, - "highway": { - "name": "Highway", - "terms": "" - }, - "place": { - "name": "Place", - "terms": "" - }, - "power": { - "name": "Power", - "terms": "" - }, - "railway": { - "name": "Railway", - "terms": "" - }, - "roundabout": { - "name": "Roundabout", - "terms": "" - }, - "waterway": { - "name": "Waterway", - "terms": "" - }, - "address": { - "name": "Address", - "terms": "" - }, - "advertising/billboard": { - "name": "Billboard", - "terms": "" - }, - "aerialway/cable_car": { - "name": "Cable Car", - "terms": "tramway,ropeway" - }, - "aerialway/chair_lift": { - "name": "Chair Lift", - "terms": "" - }, - "aerialway/gondola": { - "name": "Gondola", - "terms": "" - }, - "aerialway/magic_carpet": { - "name": "Magic Carpet Lift", - "terms": "" - }, - "aerialway/platter": { - "name": "Platter Lift", - "terms": "button lift,poma lift" - }, - "aerialway/pylon": { - "name": "Aerialway Pylon", - "terms": "" - }, - "aerialway/rope_tow": { - "name": "Rope Tow Lift", - "terms": "handle tow,bugel lift" - }, - "aerialway/station": { - "name": "Aerialway Station", - "terms": "" - }, - "aerialway/t-bar": { - "name": "T-bar Lift", - "terms": "" - }, - "aeroway/aerodrome": { - "name": "Airport", - "terms": "airplane,airport,aerodrome" - }, - "aeroway/apron": { - "name": "Apron", - "terms": "ramp" - }, - "aeroway/gate": { - "name": "Airport gate", - "terms": "" - }, - "aeroway/hangar": { - "name": "Hangar", - "terms": "" - }, - "aeroway/helipad": { - "name": "Helipad", - "terms": "helicopter,helipad,heliport" - }, - "aeroway/runway": { - "name": "Runway", - "terms": "landing strip" - }, - "aeroway/taxiway": { - "name": "Taxiway", - "terms": "" - }, - "aeroway/terminal": { - "name": "Airport terminal", - "terms": "airport,aerodrome" - }, - "amenity/register_office": { - "name": "Register Office", - "terms": "" - }, - "amenity/swimming_pool": { - "name": "Swimming Pool", - "terms": "" - }, - "amenity/arts_centre": { - "name": "Arts Center", - "terms": "" - }, - "amenity/atm": { - "name": "ATM", - "terms": "money,cash,machine" - }, - "amenity/bank": { - "name": "Bank", - "terms": "credit union,check,deposit,fund,investment,repository,reserve,safe,savings,stock,treasury,trust,vault" - }, - "amenity/bar": { - "name": "Bar", - "terms": "dive,beer,bier,booze" - }, - "amenity/bbq": { - "name": "Barbecue/Grill", - "terms": "bbq,grill" - }, - "amenity/bench": { - "name": "Bench", - "terms": "seat" - }, - "amenity/bicycle_parking": { - "name": "Bicycle Parking", - "terms": "bike" - }, - "amenity/bicycle_rental": { - "name": "Bicycle Rental", - "terms": "bike" - }, - "amenity/bicycle_repair_station": { - "name": "Bicycle Repair Tool Stand", - "terms": "bike,repair,chain,pump" - }, - "amenity/biergarten": { - "name": "Beer Garden", - "terms": "beer,bier,booze" - }, - "amenity/boat_rental": { - "name": "Boat Rental", - "terms": "" - }, - "amenity/bureau_de_change": { - "name": "Currency Exchange", - "terms": "bureau de change,money changer" - }, - "amenity/bus_station": { - "name": "Bus Station", - "terms": "" - }, - "amenity/cafe": { - "name": "Cafe", - "terms": "bistro,coffee,tea" - }, - "amenity/car_rental": { - "name": "Car Rental", - "terms": "" - }, - "amenity/car_sharing": { - "name": "Car Sharing", - "terms": "" - }, - "amenity/car_wash": { - "name": "Car Wash", - "terms": "" - }, - "amenity/casino": { - "name": "Casino", - "terms": "gambling,roulette,craps,poker,blackjack" - }, - "amenity/charging_station": { - "name": "Charging Station", - "terms": "EV,Electric Vehicle,Supercharger" - }, - "amenity/childcare": { - "name": "Nursery/Childcare", - "terms": "daycare,orphanage,playgroup" - }, - "amenity/cinema": { - "name": "Cinema", - "terms": "drive-in,film,flick,movie,theater,picture,show,screen" - }, - "amenity/clinic": { - "name": "Clinic", - "terms": "medical,urgentcare" - }, - "amenity/clock": { - "name": "Clock", - "terms": "" - }, - "amenity/college": { - "name": "College Grounds", - "terms": "university" - }, - "amenity/community_centre": { - "name": "Community Center", - "terms": "event,hall" - }, - "amenity/compressed_air": { - "name": "Compressed Air", - "terms": "" - }, - "amenity/courthouse": { - "name": "Courthouse", - "terms": "" - }, - "amenity/coworking_space": { - "name": "Coworking Space", - "terms": "coworking,office" - }, - "amenity/dentist": { - "name": "Dentist", - "terms": "tooth,teeth" - }, - "amenity/doctors": { - "name": "Doctor", - "terms": "medic*" - }, - "amenity/dojo": { - "name": "Dojo / Martial Arts Academy", - "terms": "martial arts,dojang" - }, - "amenity/drinking_water": { - "name": "Drinking Water", - "terms": "fountain,potable" - }, - "amenity/embassy": { - "name": "Embassy", - "terms": "" - }, - "amenity/fast_food": { - "name": "Fast Food", - "terms": "restaurant,takeaway" - }, - "amenity/ferry_terminal": { - "name": "Ferry Terminal", - "terms": "" - }, - "amenity/fire_station": { - "name": "Fire Station", - "terms": "" - }, - "amenity/fountain": { - "name": "Fountain", - "terms": "" - }, - "amenity/fuel": { - "name": "Gas Station", - "terms": "petrol,fuel,gasoline,propane,diesel,lng,cng,biodiesel" - }, - "amenity/grave_yard": { - "name": "Graveyard", - "terms": "" - }, - "amenity/grit_bin": { - "name": "Grit Bin", - "terms": "salt,sand" - }, - "amenity/hospital": { - "name": "Hospital Grounds", - "terms": "clinic,doctor,emergency room,health service,hospice,infirmary,institution,nursing home,sanatorium,sanitarium,sick,surgery,ward" - }, - "amenity/hunting_stand": { - "name": "Hunting Stand", - "terms": "" - }, - "amenity/ice_cream": { - "name": "Ice Cream Shop", - "terms": "gelato,sorbet,sherbet,frozen,yogurt" - }, - "amenity/kindergarten": { - "name": "Preschool/Kindergarten Grounds", - "terms": "kindergarden,pre-school" - }, - "amenity/library": { - "name": "Library", - "terms": "book" - }, - "amenity/marketplace": { - "name": "Marketplace", - "terms": "" - }, - "amenity/motorcycle_parking": { - "name": "Motorcycle Parking", - "terms": "" - }, - "amenity/nightclub": { - "name": "Nightclub", - "terms": "disco*,night club,dancing,dance club" - }, - "amenity/parking_entrance": { - "name": "Parking Garage Entrance/Exit", - "terms": "" - }, - "amenity/parking_space": { - "name": "Parking Space", - "terms": "" - }, - "amenity/parking": { - "name": "Car Parking", - "terms": "" - }, - "amenity/pharmacy": { - "name": "Pharmacy", - "terms": "drug*,med*,prescription" - }, - "amenity/place_of_worship": { - "name": "Place of Worship", - "terms": "abbey,basilica,bethel,cathedral,chancel,chantry,chapel,church,fold,house of God,house of prayer,house of worship,minster,mission,mosque,oratory,parish,sacellum,sanctuary,shrine,synagogue,tabernacle,temple" - }, - "amenity/place_of_worship/buddhist": { - "name": "Buddhist Temple", - "terms": "stupa,vihara,monastery,temple,pagoda,zendo,dojo" - }, - "amenity/place_of_worship/christian": { - "name": "Church", - "terms": "christian,abbey,basilica,bethel,cathedral,chancel,chantry,chapel,fold,house of God,house of prayer,house of worship,minster,mission,oratory,parish,sacellum,sanctuary,shrine,tabernacle,temple" - }, - "amenity/place_of_worship/jewish": { - "name": "Synagogue", - "terms": "jewish" - }, - "amenity/place_of_worship/muslim": { - "name": "Mosque", - "terms": "muslim" - }, - "amenity/planetarium": { - "name": "Planetarium", - "terms": "museum,astronomy,observatory" - }, - "amenity/police": { - "name": "Police", - "terms": "badge,constable,constabulary,cop,detective,fed,law,enforcement,officer,patrol" - }, - "amenity/post_box": { - "name": "Mailbox", - "terms": "letter,post" - }, - "amenity/post_office": { - "name": "Post Office", - "terms": "letter,mail" - }, - "amenity/prison": { - "name": "Prison Grounds", - "terms": "cell,jail" - }, - "amenity/pub": { - "name": "Pub", - "terms": "dive,beer,bier,booze" - }, - "amenity/public_bookcase": { - "name": "Public Bookcase", - "terms": "library,bookcrossing" - }, - "amenity/ranger_station": { - "name": "Ranger Station", - "terms": "visitor center,visitor centre,permit center,permit centre,backcountry office,warden office,warden center" - }, - "amenity/recycling_centre": { - "name": "Recycling Center", - "terms": "bottle,can,dump,glass,garbage,rubbish,scrap,trash" - }, - "amenity/recycling": { - "name": "Recycling", - "terms": "bin,can,bottle,glass,garbage,rubbish,scrap,trash" - }, - "amenity/restaurant": { - "name": "Restaurant", - "terms": "bar,breakfast,cafe,café,canteen,coffee,dine,dining,dinner,drive-in,eat,grill,lunch,table" - }, - "amenity/sanitary_dump_station": { - "name": "RV Toilet Disposal", - "terms": "Motor Home,Camper,Sanitary,Dump Station,Elsan,CDP,CTDP,Chemical Toilet" - }, - "amenity/school": { - "name": "School Grounds", - "terms": "academy,elementary school,middle school,high school" - }, - "amenity/shelter": { - "name": "Shelter", - "terms": "lean-to,gazebo,picnic" - }, - "amenity/social_facility": { - "name": "Social Facility", - "terms": "" - }, - "amenity/social_facility/food_bank": { - "name": "Food Bank", - "terms": "" - }, - "amenity/social_facility/group_home": { - "name": "Elderly Group Home", - "terms": "old,senior,living" - }, - "amenity/social_facility/homeless_shelter": { - "name": "Homeless Shelter", - "terms": "houseless,unhoused,displaced" - }, - "amenity/studio": { - "name": "Studio", - "terms": "recording,radio,television" - }, - "amenity/taxi": { - "name": "Taxi Stand", - "terms": "cab" - }, - "amenity/telephone": { - "name": "Telephone", - "terms": "phone" - }, - "amenity/theatre": { - "name": "Theater", - "terms": "theatre,performance,play,musical" - }, - "amenity/toilets": { - "name": "Toilets", - "terms": "bathroom,restroom,outhouse,privy,head,lavatory,latrine,water closet,WC,W.C." - }, - "amenity/townhall": { - "name": "Town Hall", - "terms": "village,city,government,courthouse,municipal" - }, - "amenity/university": { - "name": "University Grounds", - "terms": "college" - }, - "amenity/vending_machine/cigarettes": { - "name": "Cigarette Vending Machine", - "terms": "cigarette" - }, - "amenity/vending_machine/condoms": { - "name": "Condom Vending Machine", - "terms": "condom" - }, - "amenity/vending_machine/drinks": { - "name": "Drink Vending Machine", - "terms": "drink,soda,beverage,juice,pop" - }, - "amenity/vending_machine/excrement_bags": { - "name": "Excrement Bag Vending Machine", - "terms": "excrement bags,poop,dog,animal" - }, - "amenity/vending_machine/news_papers": { - "name": "Newspaper Vending Machine", - "terms": "newspaper" - }, - "amenity/vending_machine/parcel_pickup_dropoff": { - "name": "Parcel Pickup/Dropoff Vending Machine", - "terms": "parcel,mail,pickup" - }, - "amenity/vending_machine/parking_tickets": { - "name": "Parking Ticket Vending Machine", - "terms": "parking,ticket" - }, - "amenity/vending_machine/public_transport_tickets": { - "name": "Transit Ticket Vending Machine", - "terms": "bus,train,ferry,rail,ticket,transportation" - }, - "amenity/vending_machine/sweets": { - "name": "Snack Vending Machine", - "terms": "candy,gum,chip,pretzel,cookie,cracker" - }, - "amenity/vending_machine/vending_machine": { - "name": "Vending Machine", - "terms": "" - }, - "amenity/veterinary": { - "name": "Veterinary", - "terms": "pet clinic,veterinarian,animal hospital,pet doctor" - }, - "amenity/waste_basket": { - "name": "Waste Basket", - "terms": "bin,garbage,rubbish,litter,trash" - }, - "amenity/waste_disposal": { - "name": "Garbage Dumpster", - "terms": "garbage,rubbish,litter,trash" - }, - "amenity/waste_transfer_station": { - "name": "Waste Transfer Station", - "terms": "dump,garbage,recycling,rubbish,scrap,trash" - }, - "amenity/water_point": { - "name": "RV Drinking Water", - "terms": "" - }, - "area": { - "name": "Area", - "terms": "" - }, - "area/highway": { - "name": "Road Surface", - "terms": "" - }, - "barrier": { - "name": "Barrier", - "terms": "" - }, - "barrier/entrance": { - "name": "Entrance", - "terms": "" - }, - "barrier/block": { - "name": "Block", - "terms": "" - }, - "barrier/bollard": { - "name": "Bollard", - "terms": "" - }, - "barrier/cattle_grid": { - "name": "Cattle Grid", - "terms": "" - }, - "barrier/city_wall": { - "name": "City Wall", - "terms": "" - }, - "barrier/cycle_barrier": { - "name": "Cycle Barrier", - "terms": "" - }, - "barrier/ditch": { - "name": "Trench", - "terms": "" - }, - "barrier/fence": { - "name": "Fence", - "terms": "" - }, - "barrier/gate": { - "name": "Gate", - "terms": "" - }, - "barrier/hedge": { - "name": "Hedge", - "terms": "" - }, - "barrier/kissing_gate": { - "name": "Kissing Gate", - "terms": "" - }, - "barrier/lift_gate": { - "name": "Lift Gate", - "terms": "" - }, - "barrier/retaining_wall": { - "name": "Retaining Wall", - "terms": "" - }, - "barrier/stile": { - "name": "Stile", - "terms": "" - }, - "barrier/toll_booth": { - "name": "Toll Booth", - "terms": "" - }, - "barrier/wall": { - "name": "Wall", - "terms": "" - }, - "boundary/administrative": { - "name": "Administrative Boundary", - "terms": "" - }, - "building": { - "name": "Building", - "terms": "" - }, - "building/bunker": { - "name": "Bunker", - "terms": "" - }, - "building/entrance": { - "name": "Entrance/Exit", - "terms": "" - }, - "building/train_station": { - "name": "Train Station", - "terms": "" - }, - "building/apartments": { - "name": "Apartments", - "terms": "" - }, - "building/barn": { - "name": "Barn", - "terms": "" - }, - "building/cabin": { - "name": "Cabin", - "terms": "" - }, - "building/cathedral": { - "name": "Cathedral Building", - "terms": "" - }, - "building/chapel": { - "name": "Chapel Building", - "terms": "" - }, - "building/church": { - "name": "Church Building", - "terms": "" - }, - "building/college": { - "name": "College Building", - "terms": "university" - }, - "building/commercial": { - "name": "Commercial Building", - "terms": "" - }, - "building/construction": { - "name": "Building Under Construction", - "terms": "" - }, - "building/detached": { - "name": "Detached House", - "terms": "home,single,family,residence,dwelling" - }, - "building/dormitory": { - "name": "Dormitory", - "terms": "" - }, - "building/garage": { - "name": "Garage", - "terms": "" - }, - "building/garages": { - "name": "Garages", - "terms": "" - }, - "building/greenhouse": { - "name": "Greenhouse", - "terms": "" - }, - "building/hospital": { - "name": "Hospital Building", - "terms": "" - }, - "building/hotel": { - "name": "Hotel Building", - "terms": "" - }, - "building/house": { - "name": "House", - "terms": "home,family,residence,dwelling" - }, - "building/hut": { - "name": "Hut", - "terms": "" - }, - "building/industrial": { - "name": "Industrial Building", - "terms": "" - }, - "building/kindergarten": { - "name": "Preschool/Kindergarten Building", - "terms": "kindergarden,pre-school" - }, - "building/public": { - "name": "Public Building", - "terms": "" - }, - "building/residential": { - "name": "Residential Building", - "terms": "" - }, - "building/retail": { - "name": "Retail Building", - "terms": "" - }, - "building/roof": { - "name": "Roof", - "terms": "" - }, - "building/school": { - "name": "School Building", - "terms": "academy,elementary school,middle school,high school" - }, - "building/semidetached_house": { - "name": "Semi-Detached House", - "terms": "home,double,duplex,twin,family,residence,dwelling" - }, - "building/shed": { - "name": "Shed", - "terms": "" - }, - "building/stable": { - "name": "Stable", - "terms": "" - }, - "building/static_caravan": { - "name": "Static Mobile Home", - "terms": "" - }, - "building/terrace": { - "name": "Row Houses", - "terms": "home,terrace,brownstone,family,residence,dwelling" - }, - "building/university": { - "name": "University Building", - "terms": "college" - }, - "building/warehouse": { - "name": "Warehouse", - "terms": "" - }, - "camp_site/camp_pitch": { - "name": "Camp Pitch", - "terms": "tent,rv" - }, - "craft": { - "name": "Craft", - "terms": "" - }, - "craft/jeweler": { - "name": "Jeweler", - "terms": "" - }, - "craft/locksmith": { - "name": "Locksmith", - "terms": "" - }, - "craft/optician": { - "name": "Optician", - "terms": "" - }, - "craft/tailor": { - "name": "Tailor", - "terms": "clothes,suit" - }, - "craft/basket_maker": { - "name": "Basket Maker", - "terms": "" - }, - "craft/beekeeper": { - "name": "Beekeeper", - "terms": "" - }, - "craft/blacksmith": { - "name": "Blacksmith", - "terms": "" - }, - "craft/boatbuilder": { - "name": "Boat Builder", - "terms": "" - }, - "craft/bookbinder": { - "name": "Bookbinder", - "terms": "book repair" - }, - "craft/brewery": { - "name": "Brewery", - "terms": "beer,bier" - }, - "craft/carpenter": { - "name": "Carpenter", - "terms": "woodworker" - }, - "craft/carpet_layer": { - "name": "Carpet Layer", - "terms": "" - }, - "craft/caterer": { - "name": "Caterer", - "terms": "" - }, - "craft/clockmaker": { - "name": "Clockmaker", - "terms": "" - }, - "craft/confectionery": { - "name": "Confectionery", - "terms": "sweets,candy" - }, - "craft/dressmaker": { - "name": "Dressmaker", - "terms": "seamstress" - }, - "craft/electrician": { - "name": "Electrician", - "terms": "power,wire" - }, - "craft/gardener": { - "name": "Gardener", - "terms": "landscaper,grounds keeper" - }, - "craft/glaziery": { - "name": "Glaziery", - "terms": "glass,stained-glass,window" - }, - "craft/handicraft": { - "name": "Handicraft", - "terms": "" - }, - "craft/hvac": { - "name": "HVAC", - "terms": "heat*,vent*,air conditioning" - }, - "craft/insulator": { - "name": "Insulator", - "terms": "" - }, - "craft/key_cutter": { - "name": "Key Cutter", - "terms": "" - }, - "craft/metal_construction": { - "name": "Metal Construction", - "terms": "" - }, - "craft/painter": { - "name": "Painter", - "terms": "" - }, - "craft/photographer": { - "name": "Photographer", - "terms": "" - }, - "craft/photographic_laboratory": { - "name": "Photographic Laboratory", - "terms": "film" - }, - "craft/plasterer": { - "name": "Plasterer", - "terms": "" - }, - "craft/plumber": { - "name": "Plumber", - "terms": "pipe" - }, - "craft/pottery": { - "name": "Pottery", - "terms": "ceramic" - }, - "craft/rigger": { - "name": "Rigger", - "terms": "" - }, - "craft/roofer": { - "name": "Roofer", - "terms": "" - }, - "craft/saddler": { - "name": "Saddler", - "terms": "" - }, - "craft/sailmaker": { - "name": "Sailmaker", - "terms": "" - }, - "craft/sawmill": { - "name": "Sawmill", - "terms": "lumber" - }, - "craft/scaffolder": { - "name": "Scaffolder", - "terms": "" - }, - "craft/sculpter": { - "name": "Sculpter", - "terms": "" - }, - "craft/shoemaker": { - "name": "Shoemaker", - "terms": "cobbler" - }, - "craft/stonemason": { - "name": "Stonemason", - "terms": "masonry" - }, - "craft/sweep": { - "name": "Chimney Sweep", - "terms": "" - }, - "craft/tiler": { - "name": "Tiler", - "terms": "" - }, - "craft/tinsmith": { - "name": "Tinsmith", - "terms": "" - }, - "craft/upholsterer": { - "name": "Upholsterer", - "terms": "" - }, - "craft/watchmaker": { - "name": "Watchmaker", - "terms": "" - }, - "craft/window_construction": { - "name": "Window Construction", - "terms": "glass" - }, - "craft/winery": { - "name": "Winery", - "terms": "" - }, - "embankment": { - "name": "Embankment", - "terms": "" - }, - "emergency/designated": { - "name": "Emergency Access Designated", - "terms": "" - }, - "emergency/destination": { - "name": "Emergency Access Destination", - "terms": "" - }, - "emergency/no": { - "name": "Emergency Access No", - "terms": "" - }, - "emergency/official": { - "name": "Emergency Access Official", - "terms": "" - }, - "emergency/private": { - "name": "Emergency Access Private", - "terms": "" - }, - "emergency/yes": { - "name": "Emergency Access Yes", - "terms": "" - }, - "emergency/ambulance_station": { - "name": "Ambulance Station", - "terms": "EMS,EMT,rescue" - }, - "emergency/defibrillator": { - "name": "Defibrillator", - "terms": "AED" - }, - "emergency/fire_hydrant": { - "name": "Fire Hydrant", - "terms": "" - }, - "emergency/phone": { - "name": "Emergency Phone", - "terms": "" - }, - "entrance": { - "name": "Entrance/Exit", - "terms": "" - }, - "footway/crossing": { - "name": "Street Crossing", - "terms": "" - }, - "footway/crosswalk": { - "name": "Pedestrian Crosswalk", - "terms": "zebra crossing" - }, - "footway/sidewalk": { - "name": "Sidewalk", - "terms": "" - }, - "ford": { - "name": "Ford", - "terms": "" - }, - "golf/bunker": { - "name": "Sand Trap", - "terms": "hazard,bunker" - }, - "golf/fairway": { - "name": "Fairway", - "terms": "" - }, - "golf/green": { - "name": "Putting Green", - "terms": "" - }, - "golf/hole": { - "name": "Golf Hole", - "terms": "" - }, - "golf/lateral_water_hazard_area": { - "name": "Lateral Water Hazard", - "terms": "" - }, - "golf/lateral_water_hazard_line": { - "name": "Lateral Water Hazard", - "terms": "" - }, - "golf/rough": { - "name": "Rough", - "terms": "" - }, - "golf/tee": { - "name": "Tee Box", - "terms": "teeing ground" - }, - "golf/water_hazard_area": { - "name": "Water Hazard", - "terms": "" - }, - "golf/water_hazard_line": { - "name": "Water Hazard", - "terms": "" - }, - "healthcare/blood_donation": { - "name": "Blood Donor Center", - "terms": "blood bank,blood donation,blood transfusion,apheresis,plasmapheresis,plateletpheresis,stem cell donation" - }, - "highway/bridleway": { - "name": "Bridle Path", - "terms": "bridleway,equestrian,horse" - }, - "highway/bus_stop": { - "name": "Bus Stop", - "terms": "" - }, - "highway/corridor": { - "name": "Indoor Corridor", - "terms": "gallery,hall,hallway,indoor,passage,passageway" - }, - "highway/crossing": { - "name": "Street Crossing", - "terms": "" - }, - "highway/crosswalk": { - "name": "Pedestrian Crosswalk", - "terms": "zebra crossing" - }, - "highway/cycleway": { - "name": "Cycle Path", - "terms": "bike" - }, - "highway/footway": { - "name": "Foot Path", - "terms": "hike,hiking,trackway,trail,walk" - }, - "highway/give_way": { - "name": "Yield Sign", - "terms": "give way,yield,sign" - }, - "highway/living_street": { - "name": "Living Street", - "terms": "" - }, - "highway/mini_roundabout": { - "name": "Mini-Roundabout", - "terms": "" - }, - "highway/motorway_junction": { - "name": "Motorway Junction / Exit", - "terms": "" - }, - "highway/motorway_link": { - "name": "Motorway Link", - "terms": "ramp,on ramp,off ramp" - }, - "highway/motorway": { - "name": "Motorway", - "terms": "" - }, - "highway/path": { - "name": "Path", - "terms": "hike,hiking,trackway,trail,walk" - }, - "highway/pedestrian": { - "name": "Pedestrian Street", - "terms": "" - }, - "highway/primary_link": { - "name": "Primary Link", - "terms": "ramp,on ramp,off ramp" - }, - "highway/primary": { - "name": "Primary Road", - "terms": "" - }, - "highway/raceway": { - "name": "Motor Raceway", - "terms": "auto*,race*,nascar" - }, - "highway/residential": { - "name": "Residential Road", - "terms": "" - }, - "highway/rest_area": { - "name": "Rest Area", - "terms": "rest stop" - }, - "highway/road": { - "name": "Unknown Road", - "terms": "" - }, - "highway/secondary_link": { - "name": "Secondary Link", - "terms": "ramp,on ramp,off ramp" - }, - "highway/secondary": { - "name": "Secondary Road", - "terms": "" - }, - "highway/service": { - "name": "Service Road", - "terms": "" - }, - "highway/service/alley": { - "name": "Alley", - "terms": "" - }, - "highway/service/drive-through": { - "name": "Drive-Through", - "terms": "" - }, - "highway/service/driveway": { - "name": "Driveway", - "terms": "" - }, - "highway/service/emergency_access": { - "name": "Emergency Access", - "terms": "" - }, - "highway/service/parking_aisle": { - "name": "Parking Aisle", - "terms": "" - }, - "highway/services": { - "name": "Service Area", - "terms": "services,travel plaza,service station" - }, - "highway/steps": { - "name": "Steps", - "terms": "stairs,staircase" - }, - "highway/stop": { - "name": "Stop Sign", - "terms": "stop,halt,sign" - }, - "highway/street_lamp": { - "name": "Street Lamp", - "terms": "streetlight,street light,lamp,light,gaslight" - }, - "highway/tertiary_link": { - "name": "Tertiary Link", - "terms": "ramp,on ramp,off ramp" - }, - "highway/tertiary": { - "name": "Tertiary Road", - "terms": "" - }, - "highway/track": { - "name": "Unmaintained Track Road", - "terms": "woods road,forest road,logging road,fire road,farm road,agricultural road,ranch road,carriage road,primitive,unmaintained,rut,offroad,4wd,4x4,four wheel drive,atv,quad,jeep,double track,two track" - }, - "highway/traffic_signals": { - "name": "Traffic Signals", - "terms": "light,stoplight,traffic light" - }, - "highway/trunk_link": { - "name": "Trunk Link", - "terms": "ramp,on ramp,off ramp" - }, - "highway/trunk": { - "name": "Trunk Road", - "terms": "" - }, - "highway/turning_circle": { - "name": "Turning Circle", - "terms": "cul-de-sac" - }, - "highway/unclassified": { - "name": "Minor/Unclassified Road", - "terms": "" - }, - "historic": { - "name": "Historic Site", - "terms": "" - }, - "historic/archaeological_site": { - "name": "Archaeological Site", - "terms": "" - }, - "historic/boundary_stone": { - "name": "Boundary Stone", - "terms": "" - }, - "historic/castle": { - "name": "Castle", - "terms": "" - }, - "historic/memorial": { - "name": "Memorial", - "terms": "" - }, - "historic/monument": { - "name": "Monument", - "terms": "" - }, - "historic/ruins": { - "name": "Ruins", - "terms": "" - }, - "historic/wayside_cross": { - "name": "Wayside Cross", - "terms": "" - }, - "historic/wayside_shrine": { - "name": "Wayside Shrine", - "terms": "" - }, - "junction": { - "name": "Junction", - "terms": "" - }, - "landuse": { - "name": "Land Use", - "terms": "" - }, - "landuse/farm": { - "name": "Farmland", - "terms": "" - }, - "landuse/allotments": { - "name": "Community Garden", - "terms": "allotment,garden" - }, - "landuse/basin": { - "name": "Basin", - "terms": "" - }, - "landuse/cemetery": { - "name": "Cemetery", - "terms": "" - }, - "landuse/churchyard": { - "name": "Churchyard", - "terms": "" - }, - "landuse/commercial": { - "name": "Commercial Area", - "terms": "" - }, - "landuse/construction": { - "name": "Construction", - "terms": "" - }, - "landuse/farmland": { - "name": "Farmland", - "terms": "" - }, - "landuse/farmyard": { - "name": "Farmyard", - "terms": "" - }, - "landuse/forest": { - "name": "Forest", - "terms": "tree" - }, - "landuse/garages": { - "name": "Garages", - "terms": "" - }, - "landuse/grass": { - "name": "Grass", - "terms": "" - }, - "landuse/industrial": { - "name": "Industrial Area", - "terms": "" - }, - "landuse/landfill": { - "name": "Landfill", - "terms": "dump" - }, - "landuse/meadow": { - "name": "Meadow", - "terms": "" - }, - "landuse/military": { - "name": "Military Area", - "terms": "" - }, - "landuse/orchard": { - "name": "Orchard", - "terms": "" - }, - "landuse/plant_nursery": { - "name": "Plant Nursery", - "terms": "vivero" - }, - "landuse/quarry": { - "name": "Quarry", - "terms": "" - }, - "landuse/recreation_ground": { - "name": "Recreation Ground", - "terms": "playing fields" - }, - "landuse/residential": { - "name": "Residential Area", - "terms": "" - }, - "landuse/retail": { - "name": "Retail Area", - "terms": "" - }, - "landuse/vineyard": { - "name": "Vineyard", - "terms": "" - }, - "leisure": { - "name": "Leisure", - "terms": "" - }, - "leisure/adult_gaming_centre": { - "name": "Adult Gaming Center", - "terms": "gambling,slot machine" - }, - "leisure/bird_hide": { - "name": "Bird Hide", - "terms": "machan,ornithology" - }, - "leisure/bowling_alley": { - "name": "Bowling Alley", - "terms": "" - }, - "leisure/common": { - "name": "Common", - "terms": "open space" - }, - "leisure/dog_park": { - "name": "Dog Park", - "terms": "" - }, - "leisure/firepit": { - "name": "Firepit", - "terms": "fireplace,campfire" - }, - "leisure/fitness_centre": { - "name": "Gym / Fitness Center", - "terms": "health,gym,leisure,studio" - }, - "leisure/fitness_centre/yoga": { - "name": "Yoga Studio", - "terms": "studio" - }, - "leisure/fitness_station": { - "name": "Outdoor Fitness Station", - "terms": "fitness,gym" - }, - "leisure/garden": { - "name": "Garden", - "terms": "" - }, - "leisure/golf_course": { - "name": "Golf Course", - "terms": "links" - }, - "leisure/ice_rink": { - "name": "Ice Rink", - "terms": "hockey,skating,curling" - }, - "leisure/marina": { - "name": "Marina", - "terms": "boat" - }, - "leisure/miniature_golf": { - "name": "Miniature Golf", - "terms": "crazy golf,mini golf,putt-putt" - }, - "leisure/nature_reserve": { - "name": "Nature Reserve", - "terms": "protected,wildlife" - }, - "leisure/park": { - "name": "Park", - "terms": "esplanade,estate,forest,garden,grass,green,grounds,lawn,lot,meadow,parkland,place,playground,plaza,pleasure garden,recreation area,square,tract,village green,woodland" - }, - "leisure/picnic_table": { - "name": "Picnic Table", - "terms": "bench" - }, - "leisure/pitch": { - "name": "Sport Pitch", - "terms": "field" - }, - "leisure/pitch/american_football": { - "name": "American Football Field", - "terms": "" - }, - "leisure/pitch/baseball": { - "name": "Baseball Diamond", - "terms": "" - }, - "leisure/pitch/basketball": { - "name": "Basketball Court", - "terms": "" - }, - "leisure/pitch/bowls": { - "name": "Bowling Green", - "terms": "" - }, - "leisure/pitch/rugby_league": { - "name": "Rugby League Field", - "terms": "" - }, - "leisure/pitch/rugby_union": { - "name": "Rugby Union Field", - "terms": "" - }, - "leisure/pitch/skateboard": { - "name": "Skate Park", - "terms": "" - }, - "leisure/pitch/soccer": { - "name": "Soccer Field", - "terms": "" - }, - "leisure/pitch/tennis": { - "name": "Tennis Court", - "terms": "" - }, - "leisure/pitch/volleyball": { - "name": "Volleyball Court", - "terms": "" - }, - "leisure/playground": { - "name": "Playground", - "terms": "jungle gym,play area" - }, - "leisure/running_track": { - "name": "Running Track", - "terms": "" - }, - "leisure/slipway": { - "name": "Slipway", - "terms": "boat launch,boat ramp" - }, - "leisure/sports_centre": { - "name": "Sports Center / Complex", - "terms": "" - }, - "leisure/sports_centre/swimming": { - "name": "Swimming Pool Facility", - "terms": "dive,water" - }, - "leisure/stadium": { - "name": "Stadium", - "terms": "" - }, - "leisure/swimming_pool": { - "name": "Swimming Pool", - "terms": "dive,water" - }, - "leisure/track": { - "name": "Racetrack (non-Motorsport)", - "terms": "" - }, - "leisure/water_park": { - "name": "Water Park", - "terms": "swim,pool,dive" - }, - "line": { - "name": "Line", - "terms": "" - }, - "man_made": { - "name": "Man Made", - "terms": "" - }, - "man_made/embankment": { - "name": "Embankment", - "terms": "" - }, - "man_made/adit": { - "name": "Adit", - "terms": "entrance,underground,mine,cave" - }, - "man_made/breakwater": { - "name": "Breakwater", - "terms": "" - }, - "man_made/bridge": { - "name": "Bridge", - "terms": "" - }, - "man_made/chimney": { - "name": "Chimney", - "terms": "" - }, - "man_made/cutline": { - "name": "Cut line", - "terms": "" - }, - "man_made/flagpole": { - "name": "Flagpole", - "terms": "" - }, - "man_made/gasometer": { - "name": "Gasometer", - "terms": "gas holder" - }, - "man_made/groyne": { - "name": "Groyne", - "terms": "" - }, - "man_made/lighthouse": { - "name": "Lighthouse", - "terms": "" - }, - "man_made/mast": { - "name": "Radio Mast", - "terms": "broadcast tower,cell phone tower,cell tower,guyed tower,mobile phone tower,radio tower,television tower,transmission mast,transmission tower,tv tower" - }, - "man_made/observation": { - "name": "Observation Tower", - "terms": "lookout tower,fire tower" - }, - "man_made/petroleum_well": { - "name": "Oil Well", - "terms": "drilling rig,oil derrick,oil drill,oil horse,oil rig,oil pump,petroleum well,pumpjack" - }, - "man_made/pier": { - "name": "Pier", - "terms": "dock" - }, - "man_made/pipeline": { - "name": "Pipeline", - "terms": "" - }, - "man_made/pumping_station": { - "name": "Pumping Station", - "terms": "" - }, - "man_made/silo": { - "name": "Silo", - "terms": "grain,corn,wheat" - }, - "man_made/storage_tank": { - "name": "Storage Tank", - "terms": "water,oil,gas,petrol" - }, - "man_made/surveillance": { - "name": "Surveillance", - "terms": "cctv" - }, - "man_made/survey_point": { - "name": "Survey Point", - "terms": "" - }, - "man_made/tower": { - "name": "Tower", - "terms": "" - }, - "man_made/wastewater_plant": { - "name": "Wastewater Plant", - "terms": "sewage*,water treatment plant,reclamation plant" - }, - "man_made/water_tower": { - "name": "Water Tower", - "terms": "" - }, - "man_made/water_well": { - "name": "Water Well", - "terms": "" - }, - "man_made/water_works": { - "name": "Water Works", - "terms": "" - }, - "man_made/works": { - "name": "Works", - "terms": "car assembly plant,aluminium processing plant,brewery,furniture manufacture factory,oil refinery,plastic recycling" - }, - "military/airfield": { - "name": "Airfield", - "terms": "" - }, - "military/barracks": { - "name": "Barracks", - "terms": "" - }, - "military/bunker": { - "name": "Bunker", - "terms": "" - }, - "military/checkpoint": { - "name": "Checkpoint", - "terms": "" - }, - "military/danger_area": { - "name": "Danger Area", - "terms": "" - }, - "military/naval_base": { - "name": "Naval Base", - "terms": "" - }, - "military/obstacle_course": { - "name": "Obstacle Course", - "terms": "" - }, - "military/range": { - "name": "Military Range", - "terms": "" - }, - "military/training_area": { - "name": "Training area", - "terms": "" - }, - "natural": { - "name": "Natural", - "terms": "" - }, - "natural/bay": { - "name": "Bay", - "terms": "" - }, - "natural/beach": { - "name": "Beach", - "terms": "" - }, - "natural/cave_entrance": { - "name": "Cave Entrance", - "terms": "cavern,hollow,grotto,shelter,cavity" - }, - "natural/cliff": { - "name": "Cliff", - "terms": "" - }, - "natural/coastline": { - "name": "Coastline", - "terms": "shore" - }, - "natural/fell": { - "name": "Fell", - "terms": "" - }, - "natural/glacier": { - "name": "Glacier", - "terms": "" - }, - "natural/grassland": { - "name": "Grassland", - "terms": "" - }, - "natural/heath": { - "name": "Heath", - "terms": "" - }, - "natural/peak": { - "name": "Peak", - "terms": "acme,aiguille,alp,climax,crest,crown,hill,mount,mountain,pinnacle,summit,tip,top" - }, - "natural/saddle": { - "name": "Saddle", - "terms": "pass,mountain pass,top" - }, - "natural/scree": { - "name": "Scree", - "terms": "loose rocks" - }, - "natural/scrub": { - "name": "Scrub", - "terms": "bush,shrubs" - }, - "natural/spring": { - "name": "Spring", - "terms": "" - }, - "natural/tree_row": { - "name": "Tree row", - "terms": "" - }, - "natural/tree": { - "name": "Tree", - "terms": "" - }, - "natural/volcano": { - "name": "Volcano", - "terms": "mountain,crater" - }, - "natural/water": { - "name": "Water", - "terms": "" - }, - "natural/water/lake": { - "name": "Lake", - "terms": "lakelet,loch,mere" - }, - "natural/water/pond": { - "name": "Pond", - "terms": "lakelet,millpond,tarn,pool,mere" - }, - "natural/water/reservoir": { - "name": "Reservoir", - "terms": "" - }, - "natural/wetland": { - "name": "Wetland", - "terms": "" - }, - "natural/wood": { - "name": "Wood", - "terms": "tree" - }, - "office": { - "name": "Office", - "terms": "" - }, - "office/travel_agent": { - "name": "Travel Agency", - "terms": "" - }, - "office/accountant": { - "name": "Accountant", - "terms": "" - }, - "office/administrative": { - "name": "Administrative Office", - "terms": "" - }, - "office/architect": { - "name": "Architect", - "terms": "" - }, - "office/company": { - "name": "Company Office", - "terms": "" - }, - "office/educational_institution": { - "name": "Educational Institution", - "terms": "" - }, - "office/employment_agency": { - "name": "Employment Agency", - "terms": "job" - }, - "office/estate_agent": { - "name": "Real Estate Office", - "terms": "" - }, - "office/financial": { - "name": "Financial Office", - "terms": "" - }, - "office/government": { - "name": "Government Office", - "terms": "" - }, - "office/government/register_office": { - "name": "Register Office", - "terms": "clerk,marriage,death,birth,certificate" - }, - "office/insurance": { - "name": "Insurance Office", - "terms": "" - }, - "office/it": { - "name": "IT Office", - "terms": "" - }, - "office/lawyer": { - "name": "Law Office", - "terms": "" - }, - "office/newspaper": { - "name": "Newspaper", - "terms": "" - }, - "office/ngo": { - "name": "NGO Office", - "terms": "" - }, - "office/physician": { - "name": "Physician", - "terms": "" - }, - "office/political_party": { - "name": "Political Party", - "terms": "" - }, - "office/research": { - "name": "Research Office", - "terms": "" - }, - "office/telecommunication": { - "name": "Telecom Office", - "terms": "" - }, - "office/therapist": { - "name": "Therapist", - "terms": "" - }, - "piste": { - "name": "Piste/Ski Trail", - "terms": "ski,sled,sleigh,snowboard,nordic,downhill,snowmobile" - }, - "place/city": { - "name": "City", - "terms": "" - }, - "place/farm": { - "name": "Farm", - "terms": "" - }, - "place/hamlet": { - "name": "Hamlet", - "terms": "" - }, - "place/island": { - "name": "Island", - "terms": "archipelago,atoll,bar,cay,isle,islet,key,reef" - }, - "place/isolated_dwelling": { - "name": "Isolated Dwelling", - "terms": "" - }, - "place/locality": { - "name": "Locality", - "terms": "" - }, - "place/neighbourhood": { - "name": "Neighborhood", - "terms": "neighbourhood" - }, - "place/suburb": { - "name": "Borough", - "terms": "Boro,Quarter" - }, - "place/town": { - "name": "Town", - "terms": "" - }, - "place/village": { - "name": "Village", - "terms": "" - }, - "point": { - "name": "Point", - "terms": "" - }, - "power/sub_station": { - "name": "Substation", - "terms": "" - }, - "power/generator": { - "name": "Power Generator", - "terms": "" - }, - "power/line": { - "name": "Power Line", - "terms": "" - }, - "power/minor_line": { - "name": "Minor Power Line", - "terms": "" - }, - "power/pole": { - "name": "Power Pole", - "terms": "" - }, - "power/substation": { - "name": "Substation", - "terms": "" - }, - "power/tower": { - "name": "High-Voltage Tower", - "terms": "" - }, - "power/transformer": { - "name": "Transformer", - "terms": "" - }, - "public_transport/platform": { - "name": "Platform", - "terms": "" - }, - "public_transport/stop_position": { - "name": "Stop Position", - "terms": "" - }, - "railway/abandoned": { - "name": "Abandoned Railway", - "terms": "" - }, - "railway/crossing": { - "name": "Railway Crossing (Path)", - "terms": "crossing,pedestrian crossing,railroad crossing,level crossing,grade crossing,path through railroad,train crossing" - }, - "railway/disused": { - "name": "Disused Railway", - "terms": "" - }, - "railway/funicular": { - "name": "Funicular", - "terms": "venicular,cliff railway,cable car,cable railway,funicular railway" - }, - "railway/halt": { - "name": "Railway Halt", - "terms": "break,interrupt,rest,wait,interruption" - }, - "railway/level_crossing": { - "name": "Railway Crossing (Road)", - "terms": "crossing,railroad crossing,level crossing,grade crossing,road through railroad,train crossing" - }, - "railway/monorail": { - "name": "Monorail", - "terms": "" - }, - "railway/narrow_gauge": { - "name": "Narrow Gauge Rail", - "terms": "narrow gauge railway,narrow gauge railroad" - }, - "railway/platform": { - "name": "Railway Platform", - "terms": "" - }, - "railway/rail": { - "name": "Rail", - "terms": "" - }, - "railway/station": { - "name": "Railway Station", - "terms": "train station,station" - }, - "railway/subway_entrance": { - "name": "Subway Entrance", - "terms": "" - }, - "railway/subway": { - "name": "Subway", - "terms": "" - }, - "railway/tram": { - "name": "Tram", - "terms": "streetcar" - }, - "relation": { - "name": "Relation", - "terms": "" - }, - "route/ferry": { - "name": "Ferry Route", - "terms": "" - }, - "shop": { - "name": "Shop", - "terms": "" - }, - "shop/fishmonger": { - "name": "Fishmonger", - "terms": "" - }, - "shop/vacant": { - "name": "Vacant Shop", - "terms": "" - }, - "shop/alcohol": { - "name": "Liquor Store", - "terms": "alcohol,beer,booze,wine" - }, - "shop/anime": { - "name": "Anime Shop", - "terms": "manga,japan,cosplay,figurine,dakimakura" - }, - "shop/antiques": { - "name": "Antiques Shop", - "terms": "" - }, - "shop/art": { - "name": "Art Store", - "terms": "art*,exhibit*,gallery" - }, - "shop/baby_goods": { - "name": "Baby Goods Store", - "terms": "" - }, - "shop/bag": { - "name": "Bag/Luggage Store", - "terms": "handbag,purse" - }, - "shop/bakery": { - "name": "Bakery", - "terms": "" - }, - "shop/bathroom_furnishing": { - "name": "Bathroom Furnishing Store", - "terms": "" - }, - "shop/beauty": { - "name": "Beauty Shop", - "terms": "spa,salon,tanning" - }, - "shop/beauty/nails": { - "name": "Nail Salon", - "terms": "manicure,pedicure" - }, - "shop/beauty/tanning": { - "name": "Tanning Salon", - "terms": "" - }, - "shop/bed": { - "name": "Bedding/Mattress Store", - "terms": "" - }, - "shop/beverages": { - "name": "Beverage Store", - "terms": "" - }, - "shop/bicycle": { - "name": "Bicycle Shop", - "terms": "bike,repair" - }, - "shop/bookmaker": { - "name": "Bookmaker", - "terms": "betting" - }, - "shop/books": { - "name": "Book Store", - "terms": "" - }, - "shop/boutique": { - "name": "Boutique", - "terms": "" - }, - "shop/butcher": { - "name": "Butcher", - "terms": "meat" - }, - "shop/candles": { - "name": "Candle Shop", - "terms": "" - }, - "shop/car_parts": { - "name": "Car Parts Store", - "terms": "auto" - }, - "shop/car_repair": { - "name": "Car Repair Shop", - "terms": "auto,garage,service" - }, - "shop/car": { - "name": "Car Dealership", - "terms": "auto" - }, - "shop/carpet": { - "name": "Carpet Store", - "terms": "rug" - }, - "shop/charity": { - "name": "Charity Store", - "terms": "thrift,op shop,nonprofit" - }, - "shop/cheese": { - "name": "Cheese Store", - "terms": "" - }, - "shop/chemist": { - "name": "Drugstore", - "terms": "med*,drug*,gift" - }, - "shop/chocolate": { - "name": "Chocolate Store", - "terms": "" - }, - "shop/clothes": { - "name": "Clothing Store", - "terms": "" - }, - "shop/coffee": { - "name": "Coffee Store", - "terms": "" - }, - "shop/computer": { - "name": "Computer Store", - "terms": "" - }, - "shop/confectionery": { - "name": "Candy Store", - "terms": "" - }, - "shop/convenience": { - "name": "Convenience Store", - "terms": "" - }, - "shop/copyshop": { - "name": "Copy Store", - "terms": "" - }, - "shop/cosmetics": { - "name": "Cosmetics Store", - "terms": "" - }, - "shop/craft": { - "name": "Arts and Crafts Store", - "terms": "art*,paint*,frame" - }, - "shop/curtain": { - "name": "Curtain Store", - "terms": "drape*,window" - }, - "shop/dairy": { - "name": "Dairy Store", - "terms": "milk,egg,cheese" - }, - "shop/deli": { - "name": "Deli", - "terms": "lunch,meat,sandwich" - }, - "shop/department_store": { - "name": "Department Store", - "terms": "" - }, - "shop/doityourself": { - "name": "DIY Store", - "terms": "" - }, - "shop/dry_cleaning": { - "name": "Dry Cleaner", - "terms": "" - }, - "shop/e-cigarette": { - "name": "E-Cigarette Shop", - "terms": "electronic,vapor" - }, - "shop/electronics": { - "name": "Electronics Store", - "terms": "appliance,audio,computer,tv" - }, - "shop/erotic": { - "name": "Erotic Store", - "terms": "sex,porn" - }, - "shop/fabric": { - "name": "Fabric Store", - "terms": "sew" - }, - "shop/farm": { - "name": "Produce Stand", - "terms": "farm shop,farm stand" - }, - "shop/fashion": { - "name": "Fashion Store", - "terms": "" - }, - "shop/florist": { - "name": "Florist", - "terms": "flower" - }, - "shop/frame": { - "name": "Framing Shop", - "terms": "art*,paint*,photo*,frame" - }, - "shop/funeral_directors": { - "name": "Funeral Home", - "terms": "undertaker,memorial home" - }, - "shop/furnace": { - "name": "Furnace Store", - "terms": "oven,stove" - }, - "shop/furniture": { - "name": "Furniture Store", - "terms": "chair,sofa,table" - }, - "shop/garden_centre": { - "name": "Garden Center", - "terms": "landscape,mulch,shrub,tree" - }, - "shop/gift": { - "name": "Gift Shop", - "terms": "souvenir" - }, - "shop/greengrocer": { - "name": "Greengrocer", - "terms": "fruit,vegetable" - }, - "shop/hairdresser": { - "name": "Hairdresser", - "terms": "barber" - }, - "shop/hardware": { - "name": "Hardware Store", - "terms": "" - }, - "shop/hearing_aids": { - "name": "Hearing Aids Store", - "terms": "" - }, - "shop/herbalist": { - "name": "Herbalist", - "terms": "" - }, - "shop/hifi": { - "name": "Hifi Store", - "terms": "stereo,video" - }, - "shop/houseware": { - "name": "Houseware Store", - "terms": "home,household" - }, - "shop/interior_decoration": { - "name": "Interior Decoration Store", - "terms": "" - }, - "shop/jewelry": { - "name": "Jeweler", - "terms": "diamond,gem,ring" - }, - "shop/kiosk": { - "name": "News Kiosk", - "terms": "" - }, - "shop/kitchen": { - "name": "Kitchen Design Store", - "terms": "" - }, - "shop/laundry": { - "name": "Laundry", - "terms": "" - }, - "shop/leather": { - "name": "Leather Store", - "terms": "" - }, - "shop/locksmith": { - "name": "Locksmith", - "terms": "key,lockpick" - }, - "shop/lottery": { - "name": "Lottery Shop", - "terms": "" - }, - "shop/mall": { - "name": "Mall", - "terms": "shopping" - }, - "shop/massage": { - "name": "Massage Shop", - "terms": "" - }, - "shop/medical_supply": { - "name": "Medical Supply Store", - "terms": "" - }, - "shop/mobile_phone": { - "name": "Mobile Phone Store", - "terms": "" - }, - "shop/money_lender": { - "name": "Money Lender", - "terms": "" - }, - "shop/motorcycle": { - "name": "Motorcycle Dealership", - "terms": "bike" - }, - "shop/music": { - "name": "Music Store", - "terms": "CD,vinyl" - }, - "shop/musical_instrument": { - "name": "Musical Instrument Store", - "terms": "guitar" - }, - "shop/newsagent": { - "name": "Newspaper/Magazine Shop", - "terms": "" - }, - "shop/nutrition_supplements": { - "name": "Nutrition Supplements Store", - "terms": "" - }, - "shop/optician": { - "name": "Optician", - "terms": "eye,glasses" - }, - "shop/organic": { - "name": "Organic Goods Store", - "terms": "" - }, - "shop/outdoor": { - "name": "Outdoors Store", - "terms": "camping,climbing,hiking" - }, - "shop/paint": { - "name": "Paint Store", - "terms": "" - }, - "shop/pastry": { - "name": "Pastry Shop", - "terms": "patisserie,cake shop,cakery" - }, - "shop/pawnbroker": { - "name": "Pawn Shop", - "terms": "" - }, - "shop/pet": { - "name": "Pet Store", - "terms": "cat,dog,fish" - }, - "shop/photo": { - "name": "Photography Store", - "terms": "camera,film" - }, - "shop/pyrotechnics": { - "name": "Fireworks Store", - "terms": "" - }, - "shop/radiotechnics": { - "name": "Radio/Electronic Component Store", - "terms": "" - }, - "shop/religion": { - "name": "Religious Store", - "terms": "" - }, - "shop/scuba_diving": { - "name": "Scuba Diving Shop", - "terms": "" - }, - "shop/seafood": { - "name": "Seafood Shop", - "terms": "fishmonger" - }, - "shop/second_hand": { - "name": "Consignment/Thrift Store", - "terms": "secondhand,second hand,resale,thrift,used" - }, - "shop/shoes": { - "name": "Shoe Store", - "terms": "" - }, - "shop/sports": { - "name": "Sporting Goods Store", - "terms": "" - }, - "shop/stationery": { - "name": "Stationery Store", - "terms": "card,paper" - }, - "shop/storage_rental": { - "name": "Storage Rental", - "terms": "" - }, - "shop/supermarket": { - "name": "Supermarket", - "terms": "grocery,store,shop" - }, - "shop/tailor": { - "name": "Tailor", - "terms": "clothes,suit" - }, - "shop/tattoo": { - "name": "Tattoo Parlor", - "terms": "" - }, - "shop/tea": { - "name": "Tea Store", - "terms": "" - }, - "shop/ticket": { - "name": "Ticket Seller", - "terms": "" - }, - "shop/tobacco": { - "name": "Tobacco Shop", - "terms": "" - }, - "shop/toys": { - "name": "Toy Store", - "terms": "" - }, - "shop/travel_agency": { - "name": "Travel Agency", - "terms": "" - }, - "shop/tyres": { - "name": "Tire Store", - "terms": "" - }, - "shop/vacuum_cleaner": { - "name": "Vacuum Cleaner Store", - "terms": "" - }, - "shop/variety_store": { - "name": "Variety Store", - "terms": "" - }, - "shop/video_games": { - "name": "Video Game Store", - "terms": "" - }, - "shop/video": { - "name": "Video Store", - "terms": "DVD" - }, - "shop/water_sports": { - "name": "Watersport/Swim Shop", - "terms": "" - }, - "shop/weapons": { - "name": "Weapon Shop", - "terms": "ammo,gun,knife,knives" - }, - "shop/window_blind": { - "name": "Window Blind Store", - "terms": "" - }, - "shop/wine": { - "name": "Wine Shop", - "terms": "" - }, - "tourism": { - "name": "Tourism", - "terms": "" - }, - "tourism/alpine_hut": { - "name": "Alpine Hut", - "terms": "" - }, - "tourism/apartment": { - "name": "Guest Apartment / Condo", - "terms": "" - }, - "tourism/artwork": { - "name": "Artwork", - "terms": "mural,sculpture,statue" - }, - "tourism/attraction": { - "name": "Tourist Attraction", - "terms": "" - }, - "tourism/camp_site": { - "name": "Campground", - "terms": "tent,rv" - }, - "tourism/caravan_site": { - "name": "RV Park", - "terms": "Motor Home,Camper" - }, - "tourism/chalet": { - "name": "Chalet", - "terms": "" - }, - "tourism/gallery": { - "name": "Art Gallery", - "terms": "art*,exhibit*,paint*,photo*,sculpt*" - }, - "tourism/guest_house": { - "name": "Guest House", - "terms": "B&B,Bed and Breakfast" - }, - "tourism/hostel": { - "name": "Hostel", - "terms": "" - }, - "tourism/hotel": { - "name": "Hotel", - "terms": "" - }, - "tourism/information": { - "name": "Information", - "terms": "" - }, - "tourism/motel": { - "name": "Motel", - "terms": "" - }, - "tourism/museum": { - "name": "Museum", - "terms": "art*,exhibit*,gallery,foundation,hall,institution,paint*,photo*,sculpt*" - }, - "tourism/picnic_site": { - "name": "Picnic Site", - "terms": "camp" - }, - "tourism/theme_park": { - "name": "Theme Park", - "terms": "" - }, - "tourism/viewpoint": { - "name": "Viewpoint", - "terms": "" - }, - "tourism/zoo": { - "name": "Zoo", - "terms": "" - }, - "traffic_calming": { - "name": "Traffic Calming", - "terms": "bump,hump,slow,speed" - }, - "traffic_calming/bump": { - "name": "Speed Bump", - "terms": "hump,speed,slow" - }, - "traffic_calming/chicane": { - "name": "Traffic Chicane", - "terms": "driveway link,speed,slow" - }, - "traffic_calming/choker": { - "name": "Traffic Choker", - "terms": "speed,slow" - }, - "traffic_calming/cushion": { - "name": "Speed Cushion", - "terms": "bump,hump,speed,slow" - }, - "traffic_calming/dip": { - "name": "Dip", - "terms": "speed,slow" - }, - "traffic_calming/hump": { - "name": "Speed Hump", - "terms": "bump,speed,slow" - }, - "traffic_calming/island": { - "name": "Traffic Island", - "terms": "circle,roundabout,slow" - }, - "traffic_calming/rumble_strip": { - "name": "Rumble Strip", - "terms": "audible lines,sleeper lines,growlers" - }, - "traffic_calming/table": { - "name": "Raised Pedestrian Crossing", - "terms": "flat top,hump,speed,slow" - }, - "type/multipolygon": { - "name": "Multipolygon", - "terms": "" - }, - "type/boundary": { - "name": "Boundary", - "terms": "" - }, - "type/boundary/administrative": { - "name": "Administrative Boundary", - "terms": "" - }, - "type/restriction": { - "name": "Restriction", - "terms": "" - }, - "type/restriction/no_left_turn": { - "name": "No Left Turn", - "terms": "" - }, - "type/restriction/no_right_turn": { - "name": "No Right Turn", - "terms": "" - }, - "type/restriction/no_straight_on": { - "name": "No Straight On", - "terms": "" - }, - "type/restriction/no_u_turn": { - "name": "No U-turn", - "terms": "" - }, - "type/restriction/only_left_turn": { - "name": "Left Turn Only", - "terms": "" - }, - "type/restriction/only_right_turn": { - "name": "Right Turn Only", - "terms": "" - }, - "type/restriction/only_straight_on": { - "name": "No Turns", - "terms": "" - }, - "type/route_master": { - "name": "Route Master", - "terms": "" - }, - "type/route": { - "name": "Route", - "terms": "" - }, - "type/route/bicycle": { - "name": "Cycle Route", - "terms": "" - }, - "type/route/bus": { - "name": "Bus Route", - "terms": "" - }, - "type/route/detour": { - "name": "Detour Route", - "terms": "" - }, - "type/route/ferry": { - "name": "Ferry Route", - "terms": "" - }, - "type/route/foot": { - "name": "Foot Route", - "terms": "" - }, - "type/route/hiking": { - "name": "Hiking Route", - "terms": "" - }, - "type/route/horse": { - "name": "Riding Route", - "terms": "" - }, - "type/route/pipeline": { - "name": "Pipeline Route", - "terms": "" - }, - "type/route/power": { - "name": "Power Route", - "terms": "" - }, - "type/route/road": { - "name": "Road Route", - "terms": "" - }, - "type/route/train": { - "name": "Train Route", - "terms": "" - }, - "type/route/tram": { - "name": "Tram Route", - "terms": "" - }, - "type/site": { - "name": "Site", - "terms": "" - }, - "vertex": { - "name": "Other", - "terms": "" - }, - "waterway/boatyard": { - "name": "Boatyard", - "terms": "" - }, - "waterway/canal": { - "name": "Canal", - "terms": "" - }, - "waterway/dam": { - "name": "Dam", - "terms": "" - }, - "waterway/ditch": { - "name": "Ditch", - "terms": "" - }, - "waterway/dock": { - "name": "Wet Dock / Dry Dock", - "terms": "boat,ship,vessel,marine" - }, - "waterway/drain": { - "name": "Drain", - "terms": "" - }, - "waterway/fuel": { - "name": "Marine Fuel Station", - "terms": "petrol,gas,diesel,boat" - }, - "waterway/river": { - "name": "River", - "terms": "beck,branch,brook,course,creek,estuary,rill,rivulet,run,runnel,stream,tributary,watercourse" - }, - "waterway/riverbank": { - "name": "Riverbank", - "terms": "" - }, - "waterway/sanitary_dump_station": { - "name": "Marine Toilet Disposal", - "terms": "Boat,Watercraft,Sanitary,Dump Station,Pumpout,Pump out,Elsan,CDP,CTDP,Chemical Toilet" - }, - "waterway/stream": { - "name": "Stream", - "terms": "beck,branch,brook,burn,course,creek,current,drift,flood,flow,freshet,race,rill,rindle,rivulet,run,runnel,rush,spate,spritz,surge,tide,torrent,tributary,watercourse" - }, - "waterway/water_point": { - "name": "Marine Drinking Water", - "terms": "" - }, - "waterway/weir": { - "name": "Weir", - "terms": "" - } - } - } - } -} \ No newline at end of file