diff --git a/.gitignore b/.gitignore index a0c380a16..873f0ee1b 100644 --- a/.gitignore +++ b/.gitignore @@ -5,8 +5,4 @@ npm-debug.log dist/*.js dist/*.css dist/img/*.svg -dist/locales/en.json -data/presets/categories.json -data/presets/fields.json -data/presets/presets.json data/data.js diff --git a/build.js b/build.js index c16e862ec..b99c51eea 100644 --- a/build.js +++ b/build.js @@ -235,9 +235,9 @@ validateCategoryPresets(categories, presets); validatePresetFields(presets, fields); // Save individual data files -fs.writeFileSync('data/presets/categories.json', JSON.stringify(categories)); -fs.writeFileSync('data/presets/fields.json', JSON.stringify(fields)); -fs.writeFileSync('data/presets/presets.json', JSON.stringify(presets)); +fs.writeFileSync('data/presets/categories.json', JSON.stringify(categories, null, 4)); +fs.writeFileSync('data/presets/fields.json', JSON.stringify(fields, null, 4)); +fs.writeFileSync('data/presets/presets.json', JSON.stringify(presets, null, 4)); fs.writeFileSync('data/presets.yaml', YAML.dump({en: {presets: translate}}, {sortKeys: sortKeys}) .replace(/\'.*#\':/g, '#') @@ -278,13 +278,13 @@ _.forEach(presets, function(preset) { taginfo.tags.push(tag); }); -fs.writeFileSync('data/taginfo.json', JSON.stringify(taginfo, null, 1)); +fs.writeFileSync('data/taginfo.json', JSON.stringify(taginfo, null, 4)); // Push changes from data/core.yaml into en.json var core = YAML.load(fs.readFileSync('data/core.yaml', 'utf8')); var presets = {en: {presets: translations}}; var en = _.merge(core, presets); -fs.writeFileSync('dist/locales/en.json', JSON.stringify(en.en, null, 1)); +fs.writeFileSync('dist/locales/en.json', JSON.stringify(en.en, null, 4)); fs.writeFileSync('data/data.js', 'iD.data = ' + JSON.stringify({ deprecated: r('deprecated.json'), diff --git a/data/presets/categories.json b/data/presets/categories.json new file mode 100644 index 000000000..84954b11f --- /dev/null +++ b/data/presets/categories.json @@ -0,0 +1,152 @@ +{ + "category-building": { + "geometry": "area", + "name": "Building", + "icon": "building", + "members": [ + "building/house", + "building/apartments", + "building/commercial", + "building/industrial", + "building/residential", + "building" + ] + }, + "category-golf": { + "geometry": "area", + "name": "Golf", + "icon": "golf", + "members": [ + "golf/fairway", + "golf/green", + "golf/lateral_water_hazard", + "golf/rough", + "golf/bunker", + "golf/tee", + "golf/water_hazard" + ] + }, + "category-landuse": { + "geometry": "area", + "name": "Land Use", + "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", + "icon": "category-path", + "members": [ + "highway/pedestrian", + "highway/footway", + "highway/cycleway", + "highway/bridleway", + "highway/path", + "highway/steps" + ] + }, + "category-rail": { + "geometry": "line", + "name": "Rail", + "icon": "category-rail", + "members": [ + "railway/rail", + "railway/subway", + "railway/tram", + "railway/monorail", + "railway/disused", + "railway/abandoned" + ] + }, + "category-restriction": { + "geometry": "relation", + "name": "Restriction", + "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", + "icon": "category-roads", + "members": [ + "highway/residential", + "highway/motorway", + "highway/trunk", + "highway/primary", + "highway/secondary", + "highway/tertiary", + "highway/service", + "highway/motorway_link", + "highway/trunk_link", + "highway/primary_link", + "highway/secondary_link", + "highway/tertiary_link", + "highway/unclassified", + "highway/track", + "highway/road" + ] + }, + "category-route": { + "geometry": "relation", + "name": "Route", + "icon": "route", + "members": [ + "type/route/road", + "type/route/bicycle", + "type/route/foot", + "type/route/hiking", + "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", + "icon": "water", + "members": [ + "natural/water/lake", + "natural/water/pond", + "natural/water/reservoir", + "natural/water" + ] + }, + "category-water-line": { + "geometry": "line", + "name": "Water", + "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 new file mode 100644 index 000000000..d07d50b42 --- /dev/null +++ b/data/presets/fields.json @@ -0,0 +1,1482 @@ +{ + "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" + } + } + } + }, + "access_simple": { + "key": "access", + "type": "combo", + "label": "Allowed Access", + "placeholder": "yes", + "options": [ + "permissive", + "private", + "customers", + "no" + ] + }, + "access_toilets": { + "key": "access", + "type": "combo", + "label": "Access", + "options": [ + "public", + "permissive", + "private", + "customers" + ] + }, + "address": { + "type": "address", + "keys": [ + "addr:housename", + "addr:housenumber", + "addr:conscriptionnumber", + "addr:street", + "addr:city", + "addr:postcode", + "addr:place", + "addr:hamlet", + "addr:suburb", + "addr:subdistrict", + "addr:district", + "addr:province", + "addr:state", + "addr:country" + ], + "reference": { + "key": "addr" + }, + "icon": "address", + "universal": true, + "label": "Address", + "strings": { + "placeholders": { + "housename": "Housename", + "housenumber": "123", + "conscriptionnumber": "123", + "street": "Street", + "city": "City", + "postcode": "Postcode", + "place": "Place", + "hamlet": "Hamlet", + "suburb": "Suburb", + "subdistrict": "Subdistrict", + "district": "District", + "province": "Province", + "state": "State", + "country": "Country" + } + } + }, + "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" + }, + "bench": { + "key": "bench", + "type": "check", + "label": "Bench" + }, + "bicycle_parking": { + "key": "bicycle_parking", + "type": "combo", + "label": "Type" + }, + "boundary": { + "key": "boundary", + "type": "combo", + "label": "Type" + }, + "brand": { + "key": "brand", + "type": "text", + "label": "Brand" + }, + "building": { + "key": "building", + "type": "combo", + "label": "Building" + }, + "building_area": { + "key": "building", + "type": "combo", + "default": "yes", + "geometry": "area", + "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" + }, + "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" + } + } + } + }, + "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" + ] + }, + "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": { + "key": "fuel", + "type": "combo", + "label": "Fuel" + }, + "fuel/biodiesel": { + "key": "fuel:biodiesel", + "type": "check", + "label": "Sells Biodiesel" + }, + "fuel/diesel": { + "key": "fuel:diesel", + "type": "check", + "label": "Sells Diesel" + }, + "fuel/e10": { + "key": "fuel:e10", + "type": "check", + "label": "Sells E10" + }, + "fuel/e85": { + "key": "fuel:e85", + "type": "check", + "label": "Sells E85" + }, + "fuel/lpg": { + "key": "fuel:lpg", + "type": "check", + "label": "Sells Propane" + }, + "fuel/octane_100": { + "key": "fuel:octane_100", + "type": "check", + "label": "Sells Racing Gasoline" + }, + "fuel/octane_91": { + "key": "fuel:octane_91", + "type": "check", + "label": "Sells Regular Gasoline" + }, + "fuel/octane_95": { + "key": "fuel:octane_95", + "type": "check", + "label": "Sells Midgrade Gasoline" + }, + "fuel/octane_98": { + "key": "fuel:octane_98", + "type": "check", + "label": "Sells Premium Gasoline" + }, + "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": { + "key": "incline", + "type": "combo", + "label": "Incline" + }, + "incline_steps": { + "key": "incline", + "type": "combo", + "label": "Incline", + "strings": { + "options": { + "up": "Up", + "down": "Down" + } + } + }, + "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" + } + } + }, + "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": { + "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_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_type": { + "key": "leaf_type", + "type": "combo", + "label": "Leaf Type", + "strings": { + "options": { + "broadleaved": "Broadleaved", + "needleleaved": "Needleleaved", + "mixed": "Mixed", + "leafless": "Leafless" + } + } + }, + "leaf_type_singular": { + "key": "leaf_type", + "type": "combo", + "label": "Leaf Type", + "strings": { + "options": { + "broadleaved": "Broadleaved", + "needleleaved": "Needleleaved", + "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": { + "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": { + "key": "oneway", + "type": "check", + "label": "One Way", + "strings": { + "options": { + "undefined": "Assumed to be No", + "yes": "Yes", + "no": "No" + } + } + }, + "oneway_yes": { + "key": "oneway", + "type": "check", + "label": "One Way", + "strings": { + "options": { + "undefined": "Assumed to be Yes", + "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..." + }, + "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" + } + } + }, + "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": { + "key": "power", + "type": "typeCombo", + "label": "Type" + }, + "power_supply": { + "key": "power_supply", + "type": "check", + "label": "Power Supply" + }, + "railway": { + "key": "railway", + "type": "typeCombo", + "label": "Type" + }, + "recycling/cans": { + "key": "recycling:cans", + "type": "check", + "label": "Accepts Cans" + }, + "recycling/clothes": { + "key": "recycling:clothes", + "type": "check", + "label": "Accepts Clothes" + }, + "recycling/glass": { + "key": "recycling:glass", + "type": "check", + "label": "Accepts Glass" + }, + "recycling/glass_bottles": { + "key": "recycling:glass_bottles", + "type": "check", + "label": "Accepts Glass Bottles" + }, + "recycling/paper": { + "key": "recycling:paper", + "type": "check", + "label": "Accepts Paper" + }, + "recycling/plastic": { + "key": "recycling:plastic", + "type": "check", + "label": "Accepts Plastic" + }, + "recycling/type": { + "key": "recycling_type", + "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" + }, + "route": { + "key": "route", + "type": "combo", + "label": "Type" + }, + "route_master": { + "key": "route_master", + "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" + }, + "service": { + "key": "service", + "type": "combo", + "label": "Type", + "options": [ + "parking_aisle", + "driveway", + "alley", + "emergency_access", + "drive-through" + ] + }, + "service/bicycle/chain_tool": { + "key": "service:bicycle:chain_tool", + "type": "check", + "label": "Chain Tool", + "strings": { + "options": { + "undefined": "Assumed to be No", + "yes": "Yes", + "no": "No" + } + } + }, + "service/bicycle/pump": { + "key": "service:bicycle:pump", + "type": "check", + "label": "Air Pump", + "strings": { + "options": { + "undefined": "Assumed to be No", + "yes": "Yes", + "no": "No" + } + } + }, + "service_rail": { + "key": "service", + "type": "combo", + "label": "Service Type", + "strings": { + "options": { + "spur": "Spur", + "yard": "Yard", + "siding": "Siding", + "crossover": "Crossover" + } + } + }, + "shelter": { + "key": "shelter", + "type": "check", + "label": "Shelter" + }, + "shelter_type": { + "key": "shelter_type", + "type": "combo", + "label": "Type" + }, + "shop": { + "key": "shop", + "type": "typeCombo", + "label": "Type" + }, + "sloped_curb": { + "key": "sloped_curb", + "type": "combo", + "label": "Sloped Curb" + }, + "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": { + "key": "sport", + "type": "combo", + "label": "Sport" + }, + "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" + ] + }, + "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_type": { + "key": "type", + "type": "combo", + "label": "Type", + "options": [ + "audio", + "video" + ] + }, + "substation": { + "key": "substation", + "type": "typeCombo", + "label": "Type" + }, + "supervised": { + "key": "supervised", + "type": "check", + "label": "Supervised" + }, + "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_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" + }, + "water": { + "key": "water", + "type": "combo", + "label": "Type" + }, + "water_point": { + "key": "water_point", + "type": "check", + "label": "Water Point" + }, + "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", + "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 new file mode 100644 index 000000000..86f029770 --- /dev/null +++ b/data/presets/presets.json @@ -0,0 +1,39380 @@ +{ + "address": { + "fields": [ + "address" + ], + "geometry": [ + "point" + ], + "tags": { + "addr:housenumber": "*" + }, + "addTags": {}, + "removeTags": {}, + "matchScore": 0.2, + "name": "Address" + }, + "aerialway": { + "fields": [ + "aerialway" + ], + "geometry": [ + "point", + "vertex", + "line" + ], + "tags": { + "aerialway": "*" + }, + "terms": [ + "ski lift", + "funifor", + "funitel" + ], + "searchable": false, + "name": "Aerialway" + }, + "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": { + "icon": "airport", + "fields": [ + "aeroway" + ], + "geometry": [ + "point", + "vertex", + "line", + "area" + ], + "tags": { + "aeroway": "*" + }, + "searchable": false, + "name": "Aeroway" + }, + "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": { + "fields": [ + "amenity" + ], + "geometry": [ + "point", + "vertex", + "area" + ], + "tags": { + "amenity": "*" + }, + "searchable": false, + "name": "Amenity" + }, + "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", + "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" + ], + "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/chain_tool", + "service/bicycle/pump" + ], + "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" + ], + "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" + ], + "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": { + "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/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" + ], + "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" + ], + "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/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": { + "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/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/pharmacy": { + "icon": "pharmacy", + "fields": [ + "operator", + "address", + "building_area", + "opening_hours", + "drive_through" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "amenity": "pharmacy" + }, + "terms": [ + "drug", + "medicine" + ], + "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/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" + ], + "geometry": [ + "point", + "vertex" + ], + "tags": { + "amenity": "post_box" + }, + "terms": [ + "letter", + "post" + ], + "name": "Mailbox" + }, + "amenity/post_office": { + "icon": "post", + "fields": [ + "operator", + "address", + "building_area", + "collection_times" + ], + "geometry": [ + "point", + "area" + ], + "terms": [ + "letter", + "mail" + ], + "tags": { + "amenity": "post_office" + }, + "name": "Post Office" + }, + "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": { + "icon": "waste-basket", + "fields": [ + "operator", + "address", + "recycling/type", + "recycling/cans", + "recycling/glass_bottles", + "recycling/paper", + "recycling/glass", + "recycling/plastic", + "recycling/clothes" + ], + "geometry": [ + "point", + "area" + ], + "terms": [ + "can", + "bottle", + "garbage", + "scrap", + "trash" + ], + "tags": { + "amenity": "recycling" + }, + "name": "Recycling" + }, + "amenity/register_office": { + "icon": "town-hall", + "fields": [ + "address", + "building_area", + "opening_hours", + "operator" + ], + "geometry": [ + "point", + "area" + ], + "terms": [], + "tags": { + "amenity": "register_office" + }, + "name": "Register Office" + }, + "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" + ], + "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_type", + "address", + "building_area" + ], + "geometry": [ + "point", + "area" + ], + "terms": [ + "recording", + "radio", + "television" + ], + "tags": { + "amenity": "studio" + }, + "name": "Studio" + }, + "amenity/swimming_pool": { + "icon": "swimming", + "geometry": [ + "point", + "vertex", + "area" + ], + "tags": { + "amenity": "swimming_pool" + }, + "name": "Swimming Pool", + "searchable": false + }, + "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" + ], + "geometry": [ + "point" + ], + "terms": [ + "cigarette" + ], + "tags": { + "amenity": "vending_machine", + "vending": "cigarettes" + }, + "name": "Cigarette Vending Machine" + }, + "amenity/vending_machine/condoms": { + "fields": [ + "operator" + ], + "geometry": [ + "point" + ], + "terms": [ + "condom" + ], + "tags": { + "amenity": "vending_machine", + "vending": "condoms" + }, + "name": "Condom Vending Machine" + }, + "amenity/vending_machine/drinks": { + "fields": [ + "operator" + ], + "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" + ], + "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" + ], + "geometry": [ + "point" + ], + "terms": [ + "newspaper" + ], + "tags": { + "amenity": "vending_machine", + "vending": "news_papers" + }, + "name": "Newspaper Vending Machine" + }, + "amenity/vending_machine/parcel_pickup_dropoff": { + "fields": [ + "operator" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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", + "geometry": [ + "point", + "vertex" + ], + "tags": { + "amenity": "waste_basket" + }, + "terms": [ + "bin", + "rubbish", + "litter", + "trash", + "garbage" + ], + "name": "Waste Basket" + }, + "amenity/waste_disposal": { + "icon": "waste-basket", + "geometry": [ + "point", + "vertex" + ], + "tags": { + "amenity": "waste_disposal" + }, + "terms": [ + "rubbish", + "litter", + "trash" + ], + "name": "Garbage Dumpster" + }, + "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": { + "geometry": [ + "point", + "vertex", + "line", + "area" + ], + "tags": { + "barrier": "*" + }, + "fields": [ + "barrier" + ], + "name": "Barrier" + }, + "barrier/block": { + "fields": [ + "access" + ], + "geometry": [ + "point", + "vertex" + ], + "tags": { + "barrier": "block" + }, + "name": "Block" + }, + "barrier/bollard": { + "fields": [ + "access" + ], + "geometry": [ + "point", + "vertex", + "line" + ], + "tags": { + "barrier": "bollard" + }, + "name": "Bollard" + }, + "barrier/cattle_grid": { + "geometry": [ + "vertex" + ], + "tags": { + "barrier": "cattle_grid" + }, + "name": "Cattle Grid" + }, + "barrier/city_wall": { + "geometry": [ + "line", + "area" + ], + "tags": { + "barrier": "city_wall" + }, + "name": "City Wall" + }, + "barrier/cycle_barrier": { + "fields": [ + "access" + ], + "geometry": [ + "vertex" + ], + "tags": { + "barrier": "cycle_barrier" + }, + "name": "Cycle Barrier" + }, + "barrier/ditch": { + "geometry": [ + "line", + "area" + ], + "tags": { + "barrier": "ditch" + }, + "name": "Ditch" + }, + "barrier/entrance": { + "icon": "entrance", + "geometry": [ + "vertex" + ], + "tags": { + "barrier": "entrance" + }, + "name": "Entrance", + "searchable": false + }, + "barrier/fence": { + "geometry": [ + "line" + ], + "tags": { + "barrier": "fence" + }, + "name": "Fence" + }, + "barrier/gate": { + "fields": [ + "access" + ], + "geometry": [ + "point", + "vertex", + "line" + ], + "tags": { + "barrier": "gate" + }, + "name": "Gate" + }, + "barrier/hedge": { + "geometry": [ + "line", + "area" + ], + "tags": { + "barrier": "hedge" + }, + "name": "Hedge" + }, + "barrier/kissing_gate": { + "fields": [ + "access" + ], + "geometry": [ + "vertex" + ], + "tags": { + "barrier": "kissing_gate" + }, + "name": "Kissing Gate" + }, + "barrier/lift_gate": { + "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": { + "fields": [ + "access" + ], + "geometry": [ + "point", + "vertex" + ], + "tags": { + "barrier": "stile" + }, + "name": "Stile" + }, + "barrier/toll_booth": { + "fields": [ + "access" + ], + "geometry": [ + "vertex" + ], + "tags": { + "barrier": "toll_booth" + }, + "name": "Toll Booth" + }, + "barrier/wall": { + "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/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/bunker": { + "fields": [ + "address", + "levels" + ], + "geometry": [ + "area" + ], + "tags": { + "building": "bunker" + }, + "matchScore": 0.5, + "name": "Bunker", + "searchable": false + }, + "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/entrance": { + "icon": "entrance", + "geometry": [ + "vertex" + ], + "tags": { + "building": "entrance" + }, + "name": "Entrance/Exit", + "searchable": false + }, + "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/train_station": { + "icon": "building", + "fields": [ + "address", + "levels" + ], + "geometry": [ + "point", + "vertex", + "area" + ], + "tags": { + "building": "train_station" + }, + "matchScore": 0.5, + "name": "Train Station", + "searchable": false + }, + "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" + }, + "craft": { + "icon": "marker-stroked", + "fields": [ + "craft", + "operator", + "address", + "building_area", + "opening_hours" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "craft": "*" + }, + "terms": [], + "name": "Craft" + }, + "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/jeweler": { + "icon": "marker-stroked", + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "craft": "jeweler" + }, + "name": "Jeweler", + "searchable": false + }, + "craft/key_cutter": { + "icon": "marker-stroked", + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "craft": "key_cutter" + }, + "name": "Key Cutter" + }, + "craft/locksmith": { + "icon": "marker-stroked", + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "craft": "locksmith" + }, + "name": "Locksmith", + "searchable": false + }, + "craft/metal_construction": { + "icon": "marker-stroked", + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "craft": "metal_construction" + }, + "name": "Metal Construction" + }, + "craft/optician": { + "icon": "marker-stroked", + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "craft": "optician" + }, + "name": "Optician", + "searchable": false + }, + "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/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/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/ambulance_station": { + "icon": "hospital", + "fields": [ + "operator", + "building_area", + "address" + ], + "geometry": [ + "point", + "area" + ], + "terms": [ + "EMS", + "EMT", + "rescue" + ], + "tags": { + "emergency": "ambulance_station" + }, + "name": "Ambulance Station" + }, + "emergency/fire_hydrant": { + "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", + "sloped_curb", + "tactile_paving" + ], + "geometry": [ + "line" + ], + "tags": { + "highway": "footway", + "footway": "crossing" + }, + "terms": [], + "name": "Street Crossing" + }, + "footway/crosswalk": { + "icon": "highway-footway", + "fields": [ + "crossing", + "access", + "surface", + "sloped_curb", + "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": { + "icon": "golf", + "geometry": [ + "line", + "area" + ], + "tags": { + "golf": "lateral_water_hazard", + "natural": "water" + }, + "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": { + "icon": "golf", + "geometry": [ + "line", + "area" + ], + "tags": { + "golf": "water_hazard", + "natural": "water" + }, + "name": "Water Hazard" + }, + "highway": { + "fields": [ + "highway" + ], + "geometry": [ + "point", + "vertex", + "line", + "area" + ], + "tags": { + "highway": "*" + }, + "searchable": false, + "name": "Highway" + }, + "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", + "sloped_curb", + "tactile_paving" + ], + "geometry": [ + "vertex" + ], + "tags": { + "highway": "crossing" + }, + "terms": [], + "name": "Street Crossing" + }, + "highway/crosswalk": { + "fields": [ + "crossing", + "sloped_curb", + "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/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": { + "icon": "highway-motorway", + "fields": [ + "oneway_yes", + "maxspeed", + "structure", + "access", + "lanes", + "surface", + "ref" + ], + "geometry": [ + "line" + ], + "tags": { + "highway": "motorway" + }, + "terms": [], + "name": "Motorway" + }, + "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/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": { + "icon": "highway-primary", + "fields": [ + "oneway", + "maxspeed", + "structure", + "access", + "lanes", + "surface", + "ref", + "cycleway" + ], + "geometry": [ + "line" + ], + "tags": { + "highway": "primary" + }, + "terms": [], + "name": "Primary Road" + }, + "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/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": { + "icon": "highway-secondary", + "fields": [ + "oneway", + "maxspeed", + "structure", + "access", + "lanes", + "surface", + "ref", + "cycleway" + ], + "geometry": [ + "line" + ], + "tags": { + "highway": "secondary" + }, + "terms": [], + "name": "Secondary 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/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": { + "geometry": [ + "vertex" + ], + "tags": { + "highway": "stop" + }, + "terms": [ + "stop 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": { + "icon": "highway-tertiary", + "fields": [ + "oneway", + "maxspeed", + "structure", + "access", + "lanes", + "surface", + "ref", + "cycleway" + ], + "geometry": [ + "line" + ], + "tags": { + "highway": "tertiary" + }, + "terms": [], + "name": "Tertiary Road" + }, + "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/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", + "fire road" + ], + "name": "Track" + }, + "highway/traffic_signals": { + "geometry": [ + "vertex" + ], + "tags": { + "highway": "traffic_signals" + }, + "fields": [ + "traffic_signals" + ], + "terms": [ + "light", + "stoplight", + "traffic light" + ], + "name": "Traffic Signals" + }, + "highway/trunk": { + "icon": "highway-trunk", + "fields": [ + "oneway", + "maxspeed", + "structure", + "access", + "lanes", + "surface", + "ref" + ], + "geometry": [ + "line" + ], + "tags": { + "highway": "trunk" + }, + "terms": [], + "name": "Trunk Road" + }, + "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/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 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/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/farm": { + "icon": "farm", + "fields": [ + "crop" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "landuse": "farm" + }, + "terms": [], + "name": "Farmland", + "searchable": false + }, + "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/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/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/garden": { + "icon": "garden", + "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/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" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "leisure": "pitch", + "sport": "basketball" + }, + "terms": [], + "name": "Basketball Court" + }, + "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" + ], + "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": [ + "gym" + ], + "name": "Sports Center / Gym" + }, + "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/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/chimney": { + "geometry": [ + "point", + "area" + ], + "tags": { + "man_made": "chimney" + }, + "name": "Chimney" + }, + "man_made/cutline": { + "geometry": [ + "line" + ], + "tags": { + "man_made": "cutline" + }, + "name": "Cut line" + }, + "man_made/embankment": { + "geometry": [ + "line" + ], + "tags": { + "man_made": "embankment" + }, + "name": "Embankment", + "searchable": false + }, + "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" + ], + "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/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" + ], + "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": { + "fields": [ + "leaf_type_singular", + "leaf_cycle_singular", + "denotation" + ], + "icon": "park", + "geometry": [ + "point", + "vertex" + ], + "terms": [], + "tags": { + "natural": "tree" + }, + "name": "Tree" + }, + "natural/tree_row": { + "fields": [ + "leaf_type", + "leaf_cycle", + "denotation" + ], + "icon": "park", + "geometry": [ + "line" + ], + "terms": [], + "tags": { + "natural": "tree_row" + }, + "name": "Tree row" + }, + "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/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/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" + }, + "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 + }, + "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": { + "fields": [ + "place" + ], + "geometry": [ + "point", + "vertex", + "area" + ], + "tags": { + "place": "*" + }, + "searchable": false, + "name": "Place" + }, + "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", + "fields": [ + "population" + ], + "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": { + "geometry": [ + "point", + "vertex", + "line", + "area" + ], + "tags": { + "power": "*" + }, + "fields": [ + "power" + ], + "searchable": false, + "name": "Power" + }, + "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/sub_station": { + "fields": [ + "substation", + "operator", + "building" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "power": "sub_station" + }, + "name": "Substation", + "searchable": false + }, + "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": { + "fields": [ + "railway" + ], + "geometry": [ + "point", + "vertex", + "line", + "area" + ], + "tags": { + "railway": "*" + }, + "searchable": false, + "name": "Railway" + }, + "railway/abandoned": { + "icon": "railway-abandoned", + "geometry": [ + "line" + ], + "tags": { + "railway": "abandoned" + }, + "fields": [ + "structure", + "service_rail" + ], + "terms": [], + "name": "Abandoned Railway" + }, + "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" + }, + "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", + "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": { + "icon": "railway-subway", + "geometry": [ + "line" + ], + "tags": { + "railway": "subway" + }, + "fields": [ + "structure", + "gauge", + "electrified", + "service_rail" + ], + "terms": [], + "name": "Subway" + }, + "railway/subway_entrance": { + "icon": "rail-metro", + "geometry": [ + "point" + ], + "tags": { + "railway": "subway_entrance" + }, + "terms": [], + "name": "Subway Entrance" + }, + "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" + ] + }, + "roundabout": { + "geometry": [ + "vertex", + "line" + ], + "tags": { + "junction": "roundabout" + }, + "name": "Roundabout", + "searchable": false + }, + "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/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" + }, + "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": "art-gallery", + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "shop": "art" + }, + "name": "Art Gallery" + }, + "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" + ], + "geometry": [ + "point", + "area" + ], + "terms": [ + "nail spa", + "spa", + "salon", + "tanning" + ], + "tags": { + "shop": "beauty" + }, + "name": "Beauty Shop" + }, + "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" + ], + "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" + ], + "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": { + "icon": "car", + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "geometry": [ + "point", + "area" + ], + "terms": [ + "auto" + ], + "tags": { + "shop": "car" + }, + "name": "Car Dealership" + }, + "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" + ], + "tags": { + "shop": "car_repair" + }, + "name": "Car Repair Shop" + }, + "shop/carpet": { + "icon": "shop", + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "geometry": [ + "point", + "area" + ], + "terms": [ + "rug" + ], + "tags": { + "shop": "carpet" + }, + "name": "Carpet Store" + }, + "shop/cheese": { + "icon": "shop", + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "shop": "cheese" + }, + "name": "Cheese Store" + }, + "shop/chemist": { + "icon": "chemist", + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "shop": "chemist" + }, + "name": "Chemist" + }, + "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/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": "art-gallery", + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "shop": "craft" + }, + "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/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/fishmonger": { + "icon": "shop", + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "shop": "fishmonger" + }, + "name": "Fishmonger", + "searchable": false + }, + "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" + }, + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "shop": "money_lender" + }, + "name": "Money Lender" + }, + "shop/motorcycle": { + "icon": "scooter", + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "geometry": [ + "point", + "area" + ], + "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" + ], + "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/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/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" + ], + "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/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/vacant": { + "icon": "shop", + "fields": [ + "address", + "building_area" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "shop": "vacant" + }, + "name": "Vacant Shop", + "searchable": false + }, + "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": { + "icon": "shop", + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "geometry": [ + "point", + "area" + ], + "terms": [ + "DVD" + ], + "tags": { + "shop": "video" + }, + "name": "Video 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/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/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" + ], + "tags": { + "tourism": "camp_site" + }, + "name": "Camp Site" + }, + "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/guest_house": { + "icon": "lodging", + "fields": [ + "operator", + "address", + "building_area", + "smoking" + ], + "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" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "tourism": "hostel" + }, + "name": "Hostel" + }, + "tourism/hotel": { + "icon": "lodging", + "fields": [ + "operator", + "address", + "building_area", + "smoking" + ], + "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" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "tourism": "motel" + }, + "name": "Motel" + }, + "tourism/museum": { + "icon": "museum", + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "geometry": [ + "point", + "area" + ], + "terms": [ + "exhibition", + "foundation", + "gallery", + "hall", + "institution" + ], + "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/bump": { + "fields": [ + "surface" + ], + "geometry": [ + "vertex" + ], + "tags": { + "traffic_calming": "bump" + }, + "terms": [ + "speed hump" + ], + "name": "Speed Bump" + }, + "traffic_calming/hump": { + "fields": [ + "surface" + ], + "geometry": [ + "vertex" + ], + "tags": { + "traffic_calming": "hump" + }, + "terms": [ + "speed bump" + ], + "name": "Speed Hump" + }, + "traffic_calming/rumble_strip": { + "geometry": [ + "vertex" + ], + "tags": { + "traffic_calming": "rumble_strip" + }, + "terms": [ + "sleeper lines", + "audible lines", + "growlers" + ], + "name": "Rumble Strip" + }, + "traffic_calming/table": { + "fields": [ + "surface" + ], + "geometry": [ + "vertex" + ], + "tags": { + "highway": "crossing", + "traffic_calming": "table" + }, + "terms": [ + "speed table", + "flat top hump" + ], + "name": "Raised Pedestrian Crossing" + }, + "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/multipolygon": { + "geometry": [ + "area", + "relation" + ], + "tags": { + "type": "multipolygon" + }, + "removeTags": {}, + "name": "Multipolygon", + "icon": "multipolygon", + "searchable": false, + "matchScore": 0.1 + }, + "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": { + "geometry": [ + "relation" + ], + "tags": { + "type": "route" + }, + "name": "Route", + "icon": "route", + "fields": [ + "route", + "ref" + ] + }, + "type/route/bicycle": { + "geometry": [ + "relation" + ], + "tags": { + "type": "route", + "route": "bicycle" + }, + "name": "Cycle Route", + "icon": "route-bicycle", + "fields": [ + "ref", + "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" + ] + }, + "type/route/hiking": { + "geometry": [ + "relation" + ], + "tags": { + "type": "route", + "route": "hiking" + }, + "name": "Hiking Route", + "icon": "route-foot", + "fields": [ + "ref", + "operator", + "network" + ] + }, + "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" + ] + }, + "type/route/train": { + "geometry": [ + "relation" + ], + "tags": { + "type": "route", + "route": "train" + }, + "name": "Train Route", + "icon": "route-train", + "fields": [ + "ref", + "operator" + ] + }, + "type/route/tram": { + "geometry": [ + "relation" + ], + "tags": { + "type": "route", + "route": "tram" + }, + "name": "Tram Route", + "icon": "route-tram", + "fields": [ + "ref", + "operator" + ] + }, + "type/route_master": { + "geometry": [ + "relation" + ], + "tags": { + "type": "route_master" + }, + "name": "Route Master", + "icon": "route-master", + "fields": [ + "route_master", + "ref", + "operator", + "network" + ] + }, + "vertex": { + "name": "Other", + "tags": {}, + "geometry": [ + "vertex" + ], + "matchScore": 0.1 + }, + "waterway": { + "fields": [ + "waterway" + ], + "geometry": [ + "point", + "vertex", + "line", + "area" + ], + "tags": { + "waterway": "*" + }, + "searchable": false, + "name": "Waterway" + }, + "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" + ], + "tags": { + "waterway": "dock" + }, + "name": "Dock" + }, + "waterway/drain": { + "icon": "waterway-stream", + "fields": [ + "tunnel" + ], + "geometry": [ + "line" + ], + "tags": { + "waterway": "drain" + }, + "name": "Drain" + }, + "waterway/fuel": { + "icon": "fuel", + "fields": [ + "operator", + "address", + "opening_hours" + ], + "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" + ], + "suggestion": true + }, + "amenity/fuel/Neste": { + "tags": { + "name": "Neste", + "amenity": "fuel" + }, + "name": "Neste", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/BP": { + "tags": { + "name": "BP", + "amenity": "fuel" + }, + "name": "BP", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Shell": { + "tags": { + "name": "Shell", + "amenity": "fuel" + }, + "name": "Shell", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Agip": { + "tags": { + "name": "Agip", + "amenity": "fuel" + }, + "name": "Agip", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Migrol": { + "tags": { + "name": "Migrol", + "amenity": "fuel" + }, + "name": "Migrol", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Avia": { + "tags": { + "name": "Avia", + "amenity": "fuel" + }, + "name": "Avia", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Texaco": { + "tags": { + "name": "Texaco", + "amenity": "fuel" + }, + "name": "Texaco", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Total": { + "tags": { + "name": "Total", + "amenity": "fuel" + }, + "name": "Total", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Statoil": { + "tags": { + "name": "Statoil", + "amenity": "fuel" + }, + "name": "Statoil", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Esso": { + "tags": { + "name": "Esso", + "amenity": "fuel" + }, + "name": "Esso", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Jet": { + "tags": { + "name": "Jet", + "amenity": "fuel" + }, + "name": "Jet", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Avanti": { + "tags": { + "name": "Avanti", + "amenity": "fuel" + }, + "name": "Avanti", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/OMV": { + "tags": { + "name": "OMV", + "amenity": "fuel" + }, + "name": "OMV", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Aral": { + "tags": { + "name": "Aral", + "amenity": "fuel" + }, + "name": "Aral", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/JET": { + "tags": { + "name": "JET", + "amenity": "fuel" + }, + "name": "JET", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/United": { + "tags": { + "name": "United", + "amenity": "fuel" + }, + "name": "United", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Mobil": { + "tags": { + "name": "Mobil", + "amenity": "fuel" + }, + "name": "Mobil", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Caltex": { + "tags": { + "name": "Caltex", + "amenity": "fuel" + }, + "name": "Caltex", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Sunoco": { + "tags": { + "name": "Sunoco", + "amenity": "fuel" + }, + "name": "Sunoco", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Q8": { + "tags": { + "name": "Q8", + "amenity": "fuel" + }, + "name": "Q8", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/ARAL": { + "tags": { + "name": "ARAL", + "amenity": "fuel" + }, + "name": "ARAL", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/CEPSA": { + "tags": { + "name": "CEPSA", + "amenity": "fuel" + }, + "name": "CEPSA", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/BFT": { + "tags": { + "name": "BFT", + "amenity": "fuel" + }, + "name": "BFT", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Petron": { + "tags": { + "name": "Petron", + "amenity": "fuel" + }, + "name": "Petron", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "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" + ], + "suggestion": true + }, + "amenity/fuel/Elf": { + "tags": { + "name": "Elf", + "amenity": "fuel" + }, + "name": "Elf", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "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" + ], + "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" + ], + "suggestion": true + }, + "amenity/fuel/Hess": { + "tags": { + "name": "Hess", + "amenity": "fuel" + }, + "name": "Hess", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "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" + ], + "suggestion": true + }, + "amenity/fuel/bft": { + "tags": { + "name": "bft", + "amenity": "fuel" + }, + "name": "bft", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Gulf": { + "tags": { + "name": "Gulf", + "amenity": "fuel" + }, + "name": "Gulf", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/PTT": { + "tags": { + "name": "PTT", + "amenity": "fuel" + }, + "name": "PTT", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/St1": { + "tags": { + "name": "St1", + "amenity": "fuel" + }, + "name": "St1", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Teboil": { + "tags": { + "name": "Teboil", + "amenity": "fuel" + }, + "name": "Teboil", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/HEM": { + "tags": { + "name": "HEM", + "amenity": "fuel" + }, + "name": "HEM", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/GALP": { + "tags": { + "name": "GALP", + "amenity": "fuel" + }, + "name": "GALP", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/OK": { + "tags": { + "name": "OK", + "amenity": "fuel" + }, + "name": "OK", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/ÖMV": { + "tags": { + "name": "ÖMV", + "amenity": "fuel" + }, + "name": "ÖMV", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Tinq": { + "tags": { + "name": "Tinq", + "amenity": "fuel" + }, + "name": "Tinq", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/OKQ8": { + "tags": { + "name": "OKQ8", + "amenity": "fuel" + }, + "name": "OKQ8", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Repsol": { + "tags": { + "name": "Repsol", + "amenity": "fuel" + }, + "name": "Repsol", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Westfalen": { + "tags": { + "name": "Westfalen", + "amenity": "fuel" + }, + "name": "Westfalen", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "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" + ], + "suggestion": true + }, + "amenity/fuel/Tamoil": { + "tags": { + "name": "Tamoil", + "amenity": "fuel" + }, + "name": "Tamoil", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Engen": { + "tags": { + "name": "Engen", + "amenity": "fuel" + }, + "name": "Engen", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Sasol": { + "tags": { + "name": "Sasol", + "amenity": "fuel" + }, + "name": "Sasol", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Topaz": { + "tags": { + "name": "Topaz", + "amenity": "fuel" + }, + "name": "Topaz", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/LPG": { + "tags": { + "name": "LPG", + "amenity": "fuel" + }, + "name": "LPG", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Orlen": { + "tags": { + "name": "Orlen", + "amenity": "fuel" + }, + "name": "Orlen", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Oilibya": { + "tags": { + "name": "Oilibya", + "amenity": "fuel" + }, + "name": "Oilibya", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Tango": { + "tags": { + "name": "Tango", + "amenity": "fuel" + }, + "name": "Tango", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Star": { + "tags": { + "name": "Star", + "amenity": "fuel" + }, + "name": "Star", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Петрол": { + "tags": { + "name": "Петрол", + "amenity": "fuel" + }, + "name": "Петрол", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Cepsa": { + "tags": { + "name": "Cepsa", + "amenity": "fuel" + }, + "name": "Cepsa", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/OIL!": { + "tags": { + "name": "OIL!", + "amenity": "fuel" + }, + "name": "OIL!", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Ultramar": { + "tags": { + "name": "Ultramar", + "amenity": "fuel" + }, + "name": "Ultramar", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Irving": { + "tags": { + "name": "Irving", + "amenity": "fuel" + }, + "name": "Irving", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Lukoil": { + "tags": { + "name": "Lukoil", + "amenity": "fuel" + }, + "name": "Lukoil", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "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" + ], + "suggestion": true + }, + "amenity/fuel/Agrola": { + "tags": { + "name": "Agrola", + "amenity": "fuel" + }, + "name": "Agrola", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Husky": { + "tags": { + "name": "Husky", + "amenity": "fuel" + }, + "name": "Husky", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Slovnaft": { + "tags": { + "name": "Slovnaft", + "amenity": "fuel" + }, + "name": "Slovnaft", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Sheetz": { + "tags": { + "name": "Sheetz", + "amenity": "fuel" + }, + "name": "Sheetz", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Mol": { + "tags": { + "name": "Mol", + "amenity": "fuel" + }, + "name": "Mol", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Petronas": { + "tags": { + "name": "Petronas", + "amenity": "fuel" + }, + "name": "Petronas", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Газпромнефть": { + "tags": { + "name": "Газпромнефть", + "amenity": "fuel" + }, + "name": "Газпромнефть", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Лукойл": { + "tags": { + "name": "Лукойл", + "amenity": "fuel" + }, + "name": "Лукойл", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Elan": { + "tags": { + "name": "Elan", + "amenity": "fuel" + }, + "name": "Elan", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Роснефть": { + "tags": { + "name": "Роснефть", + "amenity": "fuel" + }, + "name": "Роснефть", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "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" + ], + "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" + ], + "suggestion": true + }, + "amenity/fuel/Marathon": { + "tags": { + "name": "Marathon", + "amenity": "fuel" + }, + "name": "Marathon", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Valero": { + "tags": { + "name": "Valero", + "amenity": "fuel" + }, + "name": "Valero", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Eni": { + "tags": { + "name": "Eni", + "amenity": "fuel" + }, + "name": "Eni", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Chevron": { + "tags": { + "name": "Chevron", + "amenity": "fuel" + }, + "name": "Chevron", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/ТНК": { + "tags": { + "name": "ТНК", + "amenity": "fuel" + }, + "name": "ТНК", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/REPSOL": { + "tags": { + "name": "REPSOL", + "amenity": "fuel" + }, + "name": "REPSOL", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/MOL": { + "tags": { + "name": "MOL", + "amenity": "fuel" + }, + "name": "MOL", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Bliska": { + "tags": { + "name": "Bliska", + "amenity": "fuel" + }, + "name": "Bliska", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Api": { + "tags": { + "name": "Api", + "amenity": "fuel" + }, + "name": "Api", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Arco": { + "tags": { + "name": "Arco", + "amenity": "fuel" + }, + "name": "Arco", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Pemex": { + "tags": { + "name": "Pemex", + "amenity": "fuel" + }, + "name": "Pemex", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Exxon": { + "tags": { + "name": "Exxon", + "amenity": "fuel" + }, + "name": "Exxon", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "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" + ], + "suggestion": true + }, + "amenity/fuel/Petrom": { + "tags": { + "name": "Petrom", + "amenity": "fuel" + }, + "name": "Petrom", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/PETRONOR": { + "tags": { + "name": "PETRONOR", + "amenity": "fuel" + }, + "name": "PETRONOR", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Rompetrol": { + "tags": { + "name": "Rompetrol", + "amenity": "fuel" + }, + "name": "Rompetrol", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Lotos": { + "tags": { + "name": "Lotos", + "amenity": "fuel" + }, + "name": "Lotos", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/ОМВ": { + "tags": { + "name": "ОМВ", + "amenity": "fuel" + }, + "name": "ОМВ", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/BR": { + "tags": { + "name": "BR", + "amenity": "fuel" + }, + "name": "BR", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Copec": { + "tags": { + "name": "Copec", + "amenity": "fuel" + }, + "name": "Copec", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Petrobras": { + "tags": { + "name": "Petrobras", + "amenity": "fuel" + }, + "name": "Petrobras", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Liberty": { + "tags": { + "name": "Liberty", + "amenity": "fuel" + }, + "name": "Liberty", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/IP": { + "tags": { + "name": "IP", + "amenity": "fuel" + }, + "name": "IP", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Erg": { + "tags": { + "name": "Erg", + "amenity": "fuel" + }, + "name": "Erg", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Eneos": { + "tags": { + "name": "Eneos", + "amenity": "fuel" + }, + "name": "Eneos", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Citgo": { + "tags": { + "name": "Citgo", + "amenity": "fuel" + }, + "name": "Citgo", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Metano": { + "tags": { + "name": "Metano", + "amenity": "fuel" + }, + "name": "Metano", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Сургутнефтегаз": { + "tags": { + "name": "Сургутнефтегаз", + "amenity": "fuel" + }, + "name": "Сургутнефтегаз", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/EKO": { + "tags": { + "name": "EKO", + "amenity": "fuel" + }, + "name": "EKO", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Eko": { + "tags": { + "name": "Eko", + "amenity": "fuel" + }, + "name": "Eko", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Indipend.": { + "tags": { + "name": "Indipend.", + "amenity": "fuel" + }, + "name": "Indipend.", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/IES": { + "tags": { + "name": "IES", + "amenity": "fuel" + }, + "name": "IES", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/TotalErg": { + "tags": { + "name": "TotalErg", + "amenity": "fuel" + }, + "name": "TotalErg", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Cenex": { + "tags": { + "name": "Cenex", + "amenity": "fuel" + }, + "name": "Cenex", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/ПТК": { + "tags": { + "name": "ПТК", + "amenity": "fuel" + }, + "name": "ПТК", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/HP": { + "tags": { + "name": "HP", + "amenity": "fuel" + }, + "name": "HP", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "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" + ], + "suggestion": true + }, + "amenity/fuel/CARREFOUR": { + "tags": { + "name": "CARREFOUR", + "amenity": "fuel" + }, + "name": "CARREFOUR", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/ERG": { + "tags": { + "name": "ERG", + "amenity": "fuel" + }, + "name": "ERG", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Speedway": { + "tags": { + "name": "Speedway", + "amenity": "fuel" + }, + "name": "Speedway", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Benzina": { + "tags": { + "name": "Benzina", + "amenity": "fuel" + }, + "name": "Benzina", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Татнефть": { + "tags": { + "name": "Татнефть", + "amenity": "fuel" + }, + "name": "Татнефть", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Terpel": { + "tags": { + "name": "Terpel", + "amenity": "fuel" + }, + "name": "Terpel", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/WOG": { + "tags": { + "name": "WOG", + "amenity": "fuel" + }, + "name": "WOG", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Seaoil": { + "tags": { + "name": "Seaoil", + "amenity": "fuel" + }, + "name": "Seaoil", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/АЗС": { + "tags": { + "name": "АЗС", + "amenity": "fuel" + }, + "name": "АЗС", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "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" + ], + "suggestion": true + }, + "amenity/fuel/Pertamina": { + "tags": { + "name": "Pertamina", + "amenity": "fuel" + }, + "name": "Pertamina", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/COSMO": { + "tags": { + "name": "COSMO", + "amenity": "fuel" + }, + "name": "COSMO", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Z": { + "tags": { + "name": "Z", + "amenity": "fuel" + }, + "name": "Z", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "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" + ], + "suggestion": true + }, + "amenity/fuel/АГЗС": { + "tags": { + "name": "АГЗС", + "amenity": "fuel" + }, + "name": "АГЗС", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/INA": { + "tags": { + "name": "INA", + "amenity": "fuel" + }, + "name": "INA", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/JOMO": { + "tags": { + "name": "JOMO", + "amenity": "fuel" + }, + "name": "JOMO", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Holiday": { + "tags": { + "name": "Holiday", + "amenity": "fuel" + }, + "name": "Holiday", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/YPF": { + "tags": { + "name": "YPF", + "amenity": "fuel" + }, + "name": "YPF", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/IDEMITSU": { + "tags": { + "name": "IDEMITSU", + "amenity": "fuel" + }, + "name": "IDEMITSU", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/ENEOS": { + "tags": { + "name": "ENEOS", + "amenity": "fuel" + }, + "name": "ENEOS", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "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" + ], + "suggestion": true + }, + "amenity/fuel/CAMPSA": { + "tags": { + "name": "CAMPSA", + "amenity": "fuel" + }, + "name": "CAMPSA", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "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" + ], + "suggestion": true + }, + "amenity/fuel/Башнефть": { + "tags": { + "name": "Башнефть", + "amenity": "fuel" + }, + "name": "Башнефть", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Kangaroo": { + "tags": { + "name": "Kangaroo", + "amenity": "fuel" + }, + "name": "Kangaroo", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/コスモ石油 (COSMO)": { + "tags": { + "name": "コスモ石油 (COSMO)", + "amenity": "fuel" + }, + "name": "コスモ石油 (COSMO)", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/MEROIL": { + "tags": { + "name": "MEROIL", + "amenity": "fuel" + }, + "name": "MEROIL", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "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" + ], + "suggestion": true + }, + "amenity/fuel/出光": { + "tags": { + "name": "出光", + "name:en": "IDEMITSU", + "amenity": "fuel" + }, + "name": "出光", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/НК Альянс": { + "tags": { + "name": "НК Альянс", + "amenity": "fuel" + }, + "name": "НК Альянс", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Sinclair": { + "tags": { + "name": "Sinclair", + "amenity": "fuel" + }, + "name": "Sinclair", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Conoco": { + "tags": { + "name": "Conoco", + "amenity": "fuel" + }, + "name": "Conoco", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/SPBU": { + "tags": { + "name": "SPBU", + "amenity": "fuel" + }, + "name": "SPBU", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Макпетрол": { + "tags": { + "name": "Макпетрол", + "amenity": "fuel" + }, + "name": "Макпетрол", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "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" + ], + "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" + ], + "suggestion": true + }, + "amenity/fuel/Phoenix": { + "tags": { + "name": "Phoenix", + "amenity": "fuel" + }, + "name": "Phoenix", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Ipiranga": { + "tags": { + "name": "Ipiranga", + "amenity": "fuel" + }, + "name": "Ipiranga", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/OKKO": { + "tags": { + "name": "OKKO", + "amenity": "fuel" + }, + "name": "OKKO", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/ОККО": { + "tags": { + "name": "ОККО", + "amenity": "fuel" + }, + "name": "ОККО", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/บางจาก": { + "tags": { + "name": "บางจาก", + "amenity": "fuel" + }, + "name": "บางจาก", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/QuikTrip": { + "tags": { + "name": "QuikTrip", + "amenity": "fuel" + }, + "name": "QuikTrip", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "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" + ], + "suggestion": true + }, + "amenity/fuel/ป ต ท": { + "tags": { + "name": "ป ต ท", + "amenity": "fuel" + }, + "name": "ป ต ท", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/ปตท": { + "tags": { + "name": "ปตท", + "amenity": "fuel" + }, + "name": "ปตท", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/ANP": { + "tags": { + "name": "ANP", + "amenity": "fuel" + }, + "name": "ANP", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "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" + ], + "suggestion": true + }, + "amenity/fuel/Petrolimex": { + "tags": { + "name": "Petrolimex", + "amenity": "fuel" + }, + "name": "Petrolimex", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Sokimex": { + "tags": { + "name": "Sokimex", + "amenity": "fuel" + }, + "name": "Sokimex", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Tela": { + "tags": { + "name": "Tela", + "amenity": "fuel" + }, + "name": "Tela", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Posto": { + "tags": { + "name": "Posto", + "amenity": "fuel" + }, + "name": "Posto", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Укрнафта": { + "tags": { + "name": "Укрнафта", + "amenity": "fuel" + }, + "name": "Укрнафта", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Татнефтепродукт": { + "tags": { + "name": "Татнефтепродукт", + "amenity": "fuel" + }, + "name": "Татнефтепродукт", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/Afriquia": { + "tags": { + "name": "Afriquia", + "amenity": "fuel" + }, + "name": "Afriquia", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "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" + ], + "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" + ], + "suggestion": true + }, + "amenity/fuel/エネオス": { + "tags": { + "name": "エネオス", + "amenity": "fuel" + }, + "name": "エネオス", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/fuel/CNG": { + "tags": { + "name": "CNG", + "amenity": "fuel" + }, + "name": "CNG", + "icon": "fuel", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "opening_hours" + ], + "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": "chemist", + "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": "chemist", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/chemist/Schlecker": { + "tags": { + "name": "Schlecker", + "shop": "chemist" + }, + "name": "Schlecker", + "icon": "chemist", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/chemist/Etos": { + "tags": { + "name": "Etos", + "shop": "chemist" + }, + "name": "Etos", + "icon": "chemist", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/chemist/Bipa": { + "tags": { + "name": "Bipa", + "shop": "chemist" + }, + "name": "Bipa", + "icon": "chemist", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/chemist/Rossmann": { + "tags": { + "name": "Rossmann", + "shop": "chemist" + }, + "name": "Rossmann", + "icon": "chemist", + "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": "chemist", + "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": "chemist", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/chemist/Douglas": { + "tags": { + "name": "Douglas", + "shop": "chemist" + }, + "name": "Douglas", + "icon": "chemist", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/chemist/Kruidvat": { + "tags": { + "name": "Kruidvat", + "shop": "chemist" + }, + "name": "Kruidvat", + "icon": "chemist", + "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" + ], + "suggestion": true + }, + "shop/car/BMW": { + "tags": { + "name": "BMW", + "shop": "car" + }, + "name": "BMW", + "icon": "car", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Citroen": { + "tags": { + "name": "Citroen", + "shop": "car" + }, + "name": "Citroen", + "icon": "car", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Renault": { + "tags": { + "name": "Renault", + "shop": "car" + }, + "name": "Renault", + "icon": "car", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "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" + ], + "suggestion": true + }, + "shop/car/Volvo": { + "tags": { + "name": "Volvo", + "shop": "car" + }, + "name": "Volvo", + "icon": "car", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Ford": { + "tags": { + "name": "Ford", + "shop": "car" + }, + "name": "Ford", + "icon": "car", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Volkswagen": { + "tags": { + "name": "Volkswagen", + "shop": "car" + }, + "name": "Volkswagen", + "icon": "car", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Mazda": { + "tags": { + "name": "Mazda", + "shop": "car" + }, + "name": "Mazda", + "icon": "car", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Mitsubishi": { + "tags": { + "name": "Mitsubishi", + "shop": "car" + }, + "name": "Mitsubishi", + "icon": "car", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Fiat": { + "tags": { + "name": "Fiat", + "shop": "car" + }, + "name": "Fiat", + "icon": "car", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Автозапчасти": { + "tags": { + "name": "Автозапчасти", + "shop": "car" + }, + "name": "Автозапчасти", + "icon": "car", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Opel": { + "tags": { + "name": "Opel", + "shop": "car" + }, + "name": "Opel", + "icon": "car", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Audi": { + "tags": { + "name": "Audi", + "shop": "car" + }, + "name": "Audi", + "icon": "car", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Toyota": { + "tags": { + "name": "Toyota", + "shop": "car" + }, + "name": "Toyota", + "icon": "car", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Nissan": { + "tags": { + "name": "Nissan", + "shop": "car" + }, + "name": "Nissan", + "icon": "car", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Suzuki": { + "tags": { + "name": "Suzuki", + "shop": "car" + }, + "name": "Suzuki", + "icon": "car", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Honda": { + "tags": { + "name": "Honda", + "shop": "car" + }, + "name": "Honda", + "icon": "car", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Peugeot": { + "tags": { + "name": "Peugeot", + "shop": "car" + }, + "name": "Peugeot", + "icon": "car", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Hyundai": { + "tags": { + "name": "Hyundai", + "shop": "car" + }, + "name": "Hyundai", + "icon": "car", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Subaru": { + "tags": { + "name": "Subaru", + "shop": "car" + }, + "name": "Subaru", + "icon": "car", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Chevrolet": { + "tags": { + "name": "Chevrolet", + "shop": "car" + }, + "name": "Chevrolet", + "icon": "car", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Автомагазин": { + "tags": { + "name": "Автомагазин", + "shop": "car" + }, + "name": "Автомагазин", + "icon": "car", + "geometry": [ + "point", + "area" + ], + "fields": [ + "operator", + "address", + "building_area", + "opening_hours" + ], + "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 index 69314714e..86c444c45 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -1,2497 +1,2497 @@ { - "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": "addr:housenumber" - }, - { - "key": "aerialway" - }, - { - "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" - }, - { - "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" - }, - { - "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": "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": "kindergarten" - }, - { - "key": "amenity", - "value": "library" - }, - { - "key": "amenity", - "value": "marketplace" - }, - { - "key": "amenity", - "value": "motorcycle_parking" - }, - { - "key": "amenity", - "value": "nightclub" - }, - { - "key": "amenity", - "value": "parking" - }, - { - "key": "amenity", - "value": "parking_entrance" - }, - { - "key": "amenity", - "value": "parking_space" - }, - { - "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": "police" - }, - { - "key": "amenity", - "value": "post_box" - }, - { - "key": "amenity", - "value": "post_office" - }, - { - "key": "amenity", - "value": "pub" - }, - { - "key": "amenity", - "value": "public_bookcase" - }, - { - "key": "amenity", - "value": "ranger_station" - }, - { - "key": "amenity", - "value": "recycling" - }, - { - "key": "amenity", - "value": "register_office" - }, - { - "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": "swimming_pool" - }, - { - "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": "water_point" - }, - { - "key": "area", - "value": "yes" - }, - { - "key": "area:highway" - }, - { - "key": "barrier" - }, - { - "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": "entrance" - }, - { - "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": "apartments" - }, - { - "key": "building", - "value": "barn" - }, - { - "key": "building", - "value": "bunker" - }, - { - "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": "entrance" - }, - { - "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": "train_station" - }, - { - "key": "building", - "value": "university" - }, - { - "key": "building", - "value": "warehouse" - }, - { - "key": "craft" - }, - { - "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": "jeweler" - }, - { - "key": "craft", - "value": "key_cutter" - }, - { - "key": "craft", - "value": "locksmith" - }, - { - "key": "craft", - "value": "metal_construction" - }, - { - "key": "craft", - "value": "optician" - }, - { - "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": "tailor" - }, - { - "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": "ambulance_station" - }, - { - "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": "landuse", - "value": "grass" - }, - { - "key": "landuse", - "value": "grass" - }, - { - "key": "natural", - "value": "water" - }, - { - "key": "highway" - }, - { - "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": "living_street" - }, - { - "key": "highway", - "value": "mini_roundabout" - }, - { - "key": "highway", - "value": "motorway" - }, - { - "key": "highway", - "value": "motorway_junction" - }, - { - "key": "highway", - "value": "motorway_link" - }, - { - "key": "highway", - "value": "path" - }, - { - "key": "highway", - "value": "pedestrian" - }, - { - "key": "highway", - "value": "primary" - }, - { - "key": "highway", - "value": "primary_link" - }, - { - "key": "highway", - "value": "raceway" - }, - { - "key": "highway", - "value": "residential" - }, - { - "key": "highway", - "value": "rest_area" - }, - { - "key": "highway", - "value": "road" - }, - { - "key": "highway", - "value": "secondary" - }, - { - "key": "highway", - "value": "secondary_link" - }, - { - "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" - }, - { - "key": "highway", - "value": "tertiary_link" - }, - { - "key": "highway", - "value": "track" - }, - { - "key": "highway", - "value": "traffic_signals" - }, - { - "key": "highway", - "value": "trunk" - }, - { - "key": "highway", - "value": "trunk_link" - }, - { - "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": "allotments" - }, - { - "key": "landuse", - "value": "basin" - }, - { - "key": "landuse", - "value": "cemetery" - }, - { - "key": "landuse", - "value": "churchyard" - }, - { - "key": "landuse", - "value": "commercial" - }, - { - "key": "landuse", - "value": "construction" - }, - { - "key": "landuse", - "value": "farm" - }, - { - "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": "residential" - }, - { - "key": "landuse", - "value": "retail" - }, - { - "key": "landuse", - "value": "vineyard" - }, - { - "key": "leisure" - }, - { - "key": "leisure", - "value": "adult_gaming_centre" - }, - { - "key": "leisure", - "value": "bowling_alley" - }, - { - "key": "leisure", - "value": "common" - }, - { - "key": "leisure", - "value": "dog_park" - }, - { - "key": "leisure", - "value": "firepit" - }, - { - "key": "leisure", - "value": "garden" - }, - { - "key": "leisure", - "value": "golf_course" - }, - { - "key": "leisure", - "value": "ice_rink" - }, - { - "key": "leisure", - "value": "marina" - }, - { - "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": "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": "adit" - }, - { - "key": "man_made", - "value": "breakwater" - }, - { - "key": "man_made", - "value": "chimney" - }, - { - "key": "man_made", - "value": "cutline" - }, - { - "key": "man_made", - "value": "embankment" - }, - { - "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": "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" - }, - { - "key": "natural", - "value": "tree_row" - }, - { - "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": "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": "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": "office", - "value": "travel_agent" - }, - { - "key": "piste:type" - }, - { - "key": "place" - }, - { - "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" - }, - { - "key": "power", - "value": "generator" - }, - { - "key": "power", - "value": "line" - }, - { - "key": "power", - "value": "minor_line" - }, - { - "key": "power", - "value": "pole" - }, - { - "key": "power", - "value": "sub_station" - }, - { - "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" - }, - { - "key": "railway", - "value": "abandoned" - }, - { - "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" - }, - { - "key": "railway", - "value": "subway_entrance" - }, - { - "key": "railway", - "value": "tram" - }, - { - "key": "junction", - "value": "roundabout" - }, - { - "key": "route", - "value": "ferry" - }, - { - "key": "shop" - }, - { - "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": "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" - }, - { - "key": "shop", - "value": "car_parts" - }, - { - "key": "shop", - "value": "car_repair" - }, - { - "key": "shop", - "value": "carpet" - }, - { - "key": "shop", - "value": "cheese" - }, - { - "key": "shop", - "value": "chemist" - }, - { - "key": "shop", - "value": "chocolate" - }, - { - "key": "shop", - "value": "clothes" - }, - { - "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": "electronics" - }, - { - "key": "shop", - "value": "erotic" - }, - { - "key": "shop", - "value": "fabric" - }, - { - "key": "shop", - "value": "farm" - }, - { - "key": "shop", - "value": "fashion" - }, - { - "key": "shop", - "value": "fishmonger" - }, - { - "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": "optician" - }, - { - "key": "organic", - "value": "only" - }, - { - "key": "shop", - "value": "outdoor" - }, - { - "key": "shop", - "value": "paint" - }, - { - "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": "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": "vacant" - }, - { - "key": "shop", - "value": "vacuum_cleaner" - }, - { - "key": "shop", - "value": "variety_store" - }, - { - "key": "shop", - "value": "video" - }, - { - "key": "shop", - "value": "video_games" - }, - { - "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": "artwork" - }, - { - "key": "tourism", - "value": "attraction" - }, - { - "key": "tourism", - "value": "camp_site" - }, - { - "key": "tourism", - "value": "caravan_site" - }, - { - "key": "tourism", - "value": "chalet" - }, - { - "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", - "value": "bump" - }, - { - "key": "traffic_calming", - "value": "hump" - }, - { - "key": "traffic_calming", - "value": "rumble_strip" - }, - { - "key": "traffic_calming", - "value": "table" - }, - { - "key": "type", - "value": "boundary" - }, - { - "key": "boundary", - "value": "administrative" - }, - { - "key": "type", - "value": "multipolygon" - }, - { - "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" - }, - { - "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": "pipeline" - }, - { - "key": "route", - "value": "power" - }, - { - "key": "route", - "value": "road" - }, - { - "key": "route", - "value": "train" - }, - { - "key": "route", - "value": "tram" - }, - { - "key": "type", - "value": "route_master" - }, - { - "key": "waterway" - }, - { - "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" - } - ] + "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": "addr:housenumber" + }, + { + "key": "aerialway" + }, + { + "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" + }, + { + "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" + }, + { + "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": "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": "kindergarten" + }, + { + "key": "amenity", + "value": "library" + }, + { + "key": "amenity", + "value": "marketplace" + }, + { + "key": "amenity", + "value": "motorcycle_parking" + }, + { + "key": "amenity", + "value": "nightclub" + }, + { + "key": "amenity", + "value": "parking" + }, + { + "key": "amenity", + "value": "parking_entrance" + }, + { + "key": "amenity", + "value": "parking_space" + }, + { + "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": "police" + }, + { + "key": "amenity", + "value": "post_box" + }, + { + "key": "amenity", + "value": "post_office" + }, + { + "key": "amenity", + "value": "pub" + }, + { + "key": "amenity", + "value": "public_bookcase" + }, + { + "key": "amenity", + "value": "ranger_station" + }, + { + "key": "amenity", + "value": "recycling" + }, + { + "key": "amenity", + "value": "register_office" + }, + { + "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": "swimming_pool" + }, + { + "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": "water_point" + }, + { + "key": "area", + "value": "yes" + }, + { + "key": "area:highway" + }, + { + "key": "barrier" + }, + { + "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": "entrance" + }, + { + "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": "apartments" + }, + { + "key": "building", + "value": "barn" + }, + { + "key": "building", + "value": "bunker" + }, + { + "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": "entrance" + }, + { + "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": "train_station" + }, + { + "key": "building", + "value": "university" + }, + { + "key": "building", + "value": "warehouse" + }, + { + "key": "craft" + }, + { + "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": "jeweler" + }, + { + "key": "craft", + "value": "key_cutter" + }, + { + "key": "craft", + "value": "locksmith" + }, + { + "key": "craft", + "value": "metal_construction" + }, + { + "key": "craft", + "value": "optician" + }, + { + "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": "tailor" + }, + { + "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": "ambulance_station" + }, + { + "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": "landuse", + "value": "grass" + }, + { + "key": "landuse", + "value": "grass" + }, + { + "key": "natural", + "value": "water" + }, + { + "key": "highway" + }, + { + "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": "living_street" + }, + { + "key": "highway", + "value": "mini_roundabout" + }, + { + "key": "highway", + "value": "motorway" + }, + { + "key": "highway", + "value": "motorway_junction" + }, + { + "key": "highway", + "value": "motorway_link" + }, + { + "key": "highway", + "value": "path" + }, + { + "key": "highway", + "value": "pedestrian" + }, + { + "key": "highway", + "value": "primary" + }, + { + "key": "highway", + "value": "primary_link" + }, + { + "key": "highway", + "value": "raceway" + }, + { + "key": "highway", + "value": "residential" + }, + { + "key": "highway", + "value": "rest_area" + }, + { + "key": "highway", + "value": "road" + }, + { + "key": "highway", + "value": "secondary" + }, + { + "key": "highway", + "value": "secondary_link" + }, + { + "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" + }, + { + "key": "highway", + "value": "tertiary_link" + }, + { + "key": "highway", + "value": "track" + }, + { + "key": "highway", + "value": "traffic_signals" + }, + { + "key": "highway", + "value": "trunk" + }, + { + "key": "highway", + "value": "trunk_link" + }, + { + "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": "allotments" + }, + { + "key": "landuse", + "value": "basin" + }, + { + "key": "landuse", + "value": "cemetery" + }, + { + "key": "landuse", + "value": "churchyard" + }, + { + "key": "landuse", + "value": "commercial" + }, + { + "key": "landuse", + "value": "construction" + }, + { + "key": "landuse", + "value": "farm" + }, + { + "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": "residential" + }, + { + "key": "landuse", + "value": "retail" + }, + { + "key": "landuse", + "value": "vineyard" + }, + { + "key": "leisure" + }, + { + "key": "leisure", + "value": "adult_gaming_centre" + }, + { + "key": "leisure", + "value": "bowling_alley" + }, + { + "key": "leisure", + "value": "common" + }, + { + "key": "leisure", + "value": "dog_park" + }, + { + "key": "leisure", + "value": "firepit" + }, + { + "key": "leisure", + "value": "garden" + }, + { + "key": "leisure", + "value": "golf_course" + }, + { + "key": "leisure", + "value": "ice_rink" + }, + { + "key": "leisure", + "value": "marina" + }, + { + "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": "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": "adit" + }, + { + "key": "man_made", + "value": "breakwater" + }, + { + "key": "man_made", + "value": "chimney" + }, + { + "key": "man_made", + "value": "cutline" + }, + { + "key": "man_made", + "value": "embankment" + }, + { + "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": "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" + }, + { + "key": "natural", + "value": "tree_row" + }, + { + "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": "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": "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": "office", + "value": "travel_agent" + }, + { + "key": "piste:type" + }, + { + "key": "place" + }, + { + "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" + }, + { + "key": "power", + "value": "generator" + }, + { + "key": "power", + "value": "line" + }, + { + "key": "power", + "value": "minor_line" + }, + { + "key": "power", + "value": "pole" + }, + { + "key": "power", + "value": "sub_station" + }, + { + "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" + }, + { + "key": "railway", + "value": "abandoned" + }, + { + "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" + }, + { + "key": "railway", + "value": "subway_entrance" + }, + { + "key": "railway", + "value": "tram" + }, + { + "key": "junction", + "value": "roundabout" + }, + { + "key": "route", + "value": "ferry" + }, + { + "key": "shop" + }, + { + "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": "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" + }, + { + "key": "shop", + "value": "car_parts" + }, + { + "key": "shop", + "value": "car_repair" + }, + { + "key": "shop", + "value": "carpet" + }, + { + "key": "shop", + "value": "cheese" + }, + { + "key": "shop", + "value": "chemist" + }, + { + "key": "shop", + "value": "chocolate" + }, + { + "key": "shop", + "value": "clothes" + }, + { + "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": "electronics" + }, + { + "key": "shop", + "value": "erotic" + }, + { + "key": "shop", + "value": "fabric" + }, + { + "key": "shop", + "value": "farm" + }, + { + "key": "shop", + "value": "fashion" + }, + { + "key": "shop", + "value": "fishmonger" + }, + { + "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": "optician" + }, + { + "key": "organic", + "value": "only" + }, + { + "key": "shop", + "value": "outdoor" + }, + { + "key": "shop", + "value": "paint" + }, + { + "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": "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": "vacant" + }, + { + "key": "shop", + "value": "vacuum_cleaner" + }, + { + "key": "shop", + "value": "variety_store" + }, + { + "key": "shop", + "value": "video" + }, + { + "key": "shop", + "value": "video_games" + }, + { + "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": "artwork" + }, + { + "key": "tourism", + "value": "attraction" + }, + { + "key": "tourism", + "value": "camp_site" + }, + { + "key": "tourism", + "value": "caravan_site" + }, + { + "key": "tourism", + "value": "chalet" + }, + { + "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", + "value": "bump" + }, + { + "key": "traffic_calming", + "value": "hump" + }, + { + "key": "traffic_calming", + "value": "rumble_strip" + }, + { + "key": "traffic_calming", + "value": "table" + }, + { + "key": "type", + "value": "boundary" + }, + { + "key": "boundary", + "value": "administrative" + }, + { + "key": "type", + "value": "multipolygon" + }, + { + "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" + }, + { + "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": "pipeline" + }, + { + "key": "route", + "value": "power" + }, + { + "key": "route", + "value": "road" + }, + { + "key": "route", + "value": "train" + }, + { + "key": "route", + "value": "tram" + }, + { + "key": "type", + "value": "route_master" + }, + { + "key": "waterway" + }, + { + "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/data/update_imagery.js b/data/update_imagery.js index 85b14771a..fe874103c 100644 --- a/data/update_imagery.js +++ b/data/update_imagery.js @@ -102,4 +102,4 @@ imagery.sort(function(a, b) { return a.name.localeCompare(b.name); }); -fs.writeFileSync('data/imagery.json', JSON.stringify(imagery, null, 1)); +fs.writeFileSync('data/imagery.json', JSON.stringify(imagery, null, 4)); diff --git a/data/update_locales.js b/data/update_locales.js index 50a5ec531..c6fbeb3ad 100644 --- a/data/update_locales.js +++ b/data/update_locales.js @@ -38,10 +38,10 @@ asyncMap(resources, getResource, function(err, locales) { for (var i in locale) { if (i === 'en' || _.isEmpty(locale[i])) continue; codes.push(i); - fs.writeFileSync(outdir + i + '.json', JSON.stringify(locale[i], null, 1)); + fs.writeFileSync(outdir + i + '.json', JSON.stringify(locale[i], null, 4)); } - fs.writeFileSync('data/locales.json', JSON.stringify(codes, null, 1)); + fs.writeFileSync('data/locales.json', JSON.stringify(codes, null, 4)); }); function getResource(resource, callback) { diff --git a/dist/locales/en.json b/dist/locales/en.json new file mode 100644 index 000000000..69ab223b3 --- /dev/null +++ b/dist/locales/en.json @@ -0,0 +1,4050 @@ +{ + "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." + }, + "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", + "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" + }, + "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" + }, + "inspector": { + "no_documentation_combination": "There is no documentation available for this tag combination", + "no_documentation_key": "There is no documentation available for this key", + "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" + }, + "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", + "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": "Fix alignment", + "reset": "reset", + "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" + }, + "major_roads": { + "description": "Major Roads", + "tooltip": "Highways, Streets, etc." + }, + "minor_roads": { + "description": "Minor 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": { + "tooltip": "Street-level photos from Mapillary", + "title": "Photo Overlay (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": { + "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-building": { + "name": "Building" + }, + "category-golf": { + "name": "Golf" + }, + "category-landuse": { + "name": "Land Use" + }, + "category-path": { + "name": "Path" + }, + "category-rail": { + "name": "Rail" + }, + "category-restriction": { + "name": "Restriction" + }, + "category-road": { + "name": "Road" + }, + "category-route": { + "name": "Route" + }, + "category-water-area": { + "name": "Water" + }, + "category-water-line": { + "name": "Water" + } + }, + "fields": { + "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" + } + } + }, + "access_simple": { + "label": "Allowed Access", + "placeholder": "yes" + }, + "access_toilets": { + "label": "Access" + }, + "address": { + "label": "Address", + "placeholders": { + "housename": "Housename", + "housenumber": "123", + "conscriptionnumber": "123", + "street": "Street", + "city": "City", + "postcode": "Postcode", + "place": "Place", + "hamlet": "Hamlet", + "suburb": "Suburb", + "subdistrict": "Subdistrict", + "district": "District", + "province": "Province", + "state": "State", + "country": "Country" + } + }, + "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" + }, + "bench": { + "label": "Bench" + }, + "bicycle_parking": { + "label": "Type" + }, + "boundary": { + "label": "Type" + }, + "brand": { + "label": "Brand" + }, + "building": { + "label": "Building" + }, + "building_area": { + "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" + }, + "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" + } + } + }, + "delivery": { + "label": "Delivery" + }, + "denomination": { + "label": "Denomination" + }, + "denotation": { + "label": "Denotation" + }, + "description": { + "label": "Description" + }, + "diaper": { + "label": "Diaper Changing Available" + }, + "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": { + "label": "Fuel" + }, + "fuel/biodiesel": { + "label": "Sells Biodiesel" + }, + "fuel/diesel": { + "label": "Sells Diesel" + }, + "fuel/e10": { + "label": "Sells E10" + }, + "fuel/e85": { + "label": "Sells E85" + }, + "fuel/lpg": { + "label": "Sells Propane" + }, + "fuel/octane_100": { + "label": "Sells Racing Gasoline" + }, + "fuel/octane_91": { + "label": "Sells Regular Gasoline" + }, + "fuel/octane_95": { + "label": "Sells Midgrade Gasoline" + }, + "fuel/octane_98": { + "label": "Sells Premium Gasoline" + }, + "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": { + "label": "Incline" + }, + "incline_steps": { + "label": "Incline", + "options": { + "up": "Up", + "down": "Down" + } + }, + "information": { + "label": "Type" + }, + "internet_access": { + "label": "Internet Access", + "options": { + "yes": "Yes", + "no": "No", + "wlan": "Wifi", + "wired": "Wired", + "terminal": "Terminal" + } + }, + "lamp_type": { + "label": "Type" + }, + "landuse": { + "label": "Type" + }, + "lanes": { + "label": "Lanes", + "placeholder": "1, 2, 3..." + }, + "layer": { + "label": "Layer" + }, + "leaf_cycle": { + "label": "Leaf Cycle", + "options": { + "evergreen": "Evergreen", + "deciduous": "Deciduous", + "semi_evergreen": "Semi-Evergreen", + "semi_deciduous": "Semi-Deciduous", + "mixed": "Mixed" + } + }, + "leaf_cycle_singular": { + "label": "Leaf Cycle", + "options": { + "evergreen": "Evergreen", + "deciduous": "Deciduous", + "semi_evergreen": "Semi-Evergreen", + "semi_deciduous": "Semi-Deciduous" + } + }, + "leaf_type": { + "label": "Leaf Type", + "options": { + "broadleaved": "Broadleaved", + "needleleaved": "Needleleaved", + "mixed": "Mixed", + "leafless": "Leafless" + } + }, + "leaf_type_singular": { + "label": "Leaf Type", + "options": { + "broadleaved": "Broadleaved", + "needleleaved": "Needleleaved", + "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": { + "label": "Network" + }, + "note": { + "label": "Note" + }, + "office": { + "label": "Type" + }, + "oneway": { + "label": "One Way", + "options": { + "undefined": "Assumed to be No", + "yes": "Yes", + "no": "No" + } + }, + "oneway_yes": { + "label": "One Way", + "options": { + "undefined": "Assumed to be Yes", + "yes": "Yes", + "no": "No" + } + }, + "opening_hours": { + "label": "Hours" + }, + "operator": { + "label": "Operator" + }, + "par": { + "label": "Par", + "placeholder": "3, 4, 5..." + }, + "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" + } + }, + "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": { + "label": "Type" + }, + "power_supply": { + "label": "Power Supply" + }, + "railway": { + "label": "Type" + }, + "recycling/cans": { + "label": "Accepts Cans" + }, + "recycling/clothes": { + "label": "Accepts Clothes" + }, + "recycling/glass": { + "label": "Accepts Glass" + }, + "recycling/glass_bottles": { + "label": "Accepts Glass Bottles" + }, + "recycling/paper": { + "label": "Accepts Paper" + }, + "recycling/plastic": { + "label": "Accepts Plastic" + }, + "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" + }, + "route": { + "label": "Type" + }, + "route_master": { + "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" + }, + "service": { + "label": "Type" + }, + "service/bicycle/chain_tool": { + "label": "Chain Tool", + "options": { + "undefined": "Assumed to be No", + "yes": "Yes", + "no": "No" + } + }, + "service/bicycle/pump": { + "label": "Air Pump", + "options": { + "undefined": "Assumed to be No", + "yes": "Yes", + "no": "No" + } + }, + "service_rail": { + "label": "Service Type", + "options": { + "spur": "Spur", + "yard": "Yard", + "siding": "Siding", + "crossover": "Crossover" + } + }, + "shelter": { + "label": "Shelter" + }, + "shelter_type": { + "label": "Type" + }, + "shop": { + "label": "Type" + }, + "sloped_curb": { + "label": "Sloped Curb" + }, + "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": { + "label": "Sport" + }, + "sport_ice": { + "label": "Sport" + }, + "sport_racing": { + "label": "Sport" + }, + "structure": { + "label": "Structure", + "placeholder": "Unknown", + "options": { + "bridge": "Bridge", + "tunnel": "Tunnel", + "embankment": "Embankment", + "cutting": "Cutting", + "ford": "Ford" + } + }, + "studio_type": { + "label": "Type" + }, + "substation": { + "label": "Type" + }, + "supervised": { + "label": "Supervised" + }, + "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_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" + }, + "water": { + "label": "Type" + }, + "water_point": { + "label": "Water Point" + }, + "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": { + "address": { + "name": "Address", + "terms": "" + }, + "aerialway": { + "name": "Aerialway", + "terms": "ski lift,funifor,funitel" + }, + "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": { + "name": "Aeroway", + "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": { + "name": "Amenity", + "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" + }, + "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/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" + }, + "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/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": { + "name": "Car Parking", + "terms": "" + }, + "amenity/parking_entrance": { + "name": "Parking Garage Entrance/Exit", + "terms": "" + }, + "amenity/parking_space": { + "name": "Parking Space", + "terms": "" + }, + "amenity/pharmacy": { + "name": "Pharmacy", + "terms": "drug,medicine" + }, + "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/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/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": { + "name": "Recycling", + "terms": "can,bottle,garbage,scrap,trash" + }, + "amenity/register_office": { + "name": "Register Office", + "terms": "" + }, + "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/swimming_pool": { + "name": "Swimming Pool", + "terms": "" + }, + "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,rubbish,litter,trash,garbage" + }, + "amenity/waste_disposal": { + "name": "Garbage Dumpster", + "terms": "rubbish,litter,trash" + }, + "amenity/water_point": { + "name": "RV Drinking Water", + "terms": "" + }, + "area": { + "name": "Area", + "terms": "" + }, + "area/highway": { + "name": "Road Surface", + "terms": "" + }, + "barrier": { + "name": "Barrier", + "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": "Ditch", + "terms": "" + }, + "barrier/entrance": { + "name": "Entrance", + "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/apartments": { + "name": "Apartments", + "terms": "" + }, + "building/barn": { + "name": "Barn", + "terms": "" + }, + "building/bunker": { + "name": "Bunker", + "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/entrance": { + "name": "Entrance/Exit", + "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/train_station": { + "name": "Train Station", + "terms": "" + }, + "building/university": { + "name": "University Building", + "terms": "college" + }, + "building/warehouse": { + "name": "Warehouse", + "terms": "" + }, + "craft": { + "name": "Craft", + "terms": "" + }, + "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/jeweler": { + "name": "Jeweler", + "terms": "" + }, + "craft/key_cutter": { + "name": "Key Cutter", + "terms": "" + }, + "craft/locksmith": { + "name": "Locksmith", + "terms": "" + }, + "craft/metal_construction": { + "name": "Metal Construction", + "terms": "" + }, + "craft/optician": { + "name": "Optician", + "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/tailor": { + "name": "Tailor", + "terms": "clothes,suit" + }, + "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/ambulance_station": { + "name": "Ambulance Station", + "terms": "EMS,EMT,rescue" + }, + "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": { + "name": "Lateral Water Hazard", + "terms": "" + }, + "golf/rough": { + "name": "Rough", + "terms": "" + }, + "golf/tee": { + "name": "Tee Box", + "terms": "teeing ground" + }, + "golf/water_hazard": { + "name": "Water Hazard", + "terms": "" + }, + "highway": { + "name": "Highway", + "terms": "" + }, + "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/living_street": { + "name": "Living Street", + "terms": "" + }, + "highway/mini_roundabout": { + "name": "Mini-Roundabout", + "terms": "" + }, + "highway/motorway": { + "name": "Motorway", + "terms": "" + }, + "highway/motorway_junction": { + "name": "Motorway Junction / Exit", + "terms": "" + }, + "highway/motorway_link": { + "name": "Motorway Link", + "terms": "ramp,on ramp,off ramp" + }, + "highway/path": { + "name": "Path", + "terms": "hike,hiking,trackway,trail,walk" + }, + "highway/pedestrian": { + "name": "Pedestrian Street", + "terms": "" + }, + "highway/primary": { + "name": "Primary Road", + "terms": "" + }, + "highway/primary_link": { + "name": "Primary Link", + "terms": "ramp,on ramp,off ramp" + }, + "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": { + "name": "Secondary Road", + "terms": "" + }, + "highway/secondary_link": { + "name": "Secondary Link", + "terms": "ramp,on ramp,off ramp" + }, + "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 sign" + }, + "highway/street_lamp": { + "name": "Street Lamp", + "terms": "streetlight,street light,lamp,light,gaslight" + }, + "highway/tertiary": { + "name": "Tertiary Road", + "terms": "" + }, + "highway/tertiary_link": { + "name": "Tertiary Link", + "terms": "ramp,on ramp,off ramp" + }, + "highway/track": { + "name": "Track", + "terms": "woods road,fire road" + }, + "highway/traffic_signals": { + "name": "Traffic Signals", + "terms": "light,stoplight,traffic light" + }, + "highway/trunk": { + "name": "Trunk Road", + "terms": "" + }, + "highway/trunk_link": { + "name": "Trunk Link", + "terms": "ramp,on ramp,off ramp" + }, + "highway/turning_circle": { + "name": "Turning Circle", + "terms": "cul-de-sac" + }, + "highway/unclassified": { + "name": "Minor 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/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/farm": { + "name": "Farmland", + "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/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/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/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/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/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 / Gym", + "terms": "gym" + }, + "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/adit": { + "name": "Adit", + "terms": "entrance,underground,mine,cave" + }, + "man_made/breakwater": { + "name": "Breakwater", + "terms": "" + }, + "man_made/chimney": { + "name": "Chimney", + "terms": "" + }, + "man_made/cutline": { + "name": "Cut line", + "terms": "" + }, + "man_made/embankment": { + "name": "Embankment", + "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": "" + }, + "man_made/pipeline": { + "name": "Pipeline", + "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": "" + }, + "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": { + "name": "Tree", + "terms": "" + }, + "natural/tree_row": { + "name": "Tree row", + "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/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/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": "" + }, + "office/travel_agent": { + "name": "Travel Agency", + "terms": "" + }, + "piste": { + "name": "Piste/Ski Trail", + "terms": "ski,sled,sleigh,snowboard,nordic,downhill,snowmobile" + }, + "place": { + "name": "Place", + "terms": "" + }, + "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": { + "name": "Power", + "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/sub_station": { + "name": "Substation", + "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": { + "name": "Railway", + "terms": "" + }, + "railway/abandoned": { + "name": "Abandoned Railway", + "terms": "" + }, + "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", + "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": { + "name": "Subway", + "terms": "" + }, + "railway/subway_entrance": { + "name": "Subway Entrance", + "terms": "" + }, + "railway/tram": { + "name": "Tram", + "terms": "streetcar" + }, + "relation": { + "name": "Relation", + "terms": "" + }, + "roundabout": { + "name": "Roundabout", + "terms": "" + }, + "route/ferry": { + "name": "Ferry Route", + "terms": "" + }, + "shop": { + "name": "Shop", + "terms": "" + }, + "shop/alcohol": { + "name": "Liquor Store", + "terms": "alcohol,beer,booze,wine" + }, + "shop/anime": { + "name": "Anime Shop", + "terms": "" + }, + "shop/antiques": { + "name": "Antiques Shop", + "terms": "" + }, + "shop/art": { + "name": "Art Gallery", + "terms": "" + }, + "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": "nail spa,spa,salon,tanning" + }, + "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": "" + }, + "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": { + "name": "Car Dealership", + "terms": "auto" + }, + "shop/car_parts": { + "name": "Car Parts Store", + "terms": "auto" + }, + "shop/car_repair": { + "name": "Car Repair Shop", + "terms": "auto" + }, + "shop/carpet": { + "name": "Carpet Store", + "terms": "rug" + }, + "shop/cheese": { + "name": "Cheese Store", + "terms": "" + }, + "shop/chemist": { + "name": "Chemist", + "terms": "" + }, + "shop/chocolate": { + "name": "Chocolate Store", + "terms": "" + }, + "shop/clothes": { + "name": "Clothing 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": "" + }, + "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/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/fishmonger": { + "name": "Fishmonger", + "terms": "" + }, + "shop/florist": { + "name": "Florist", + "terms": "flower" + }, + "shop/frame": { + "name": "Framing Shop", + "terms": "" + }, + "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": "" + }, + "shop/greengrocer": { + "name": "Greengrocer", + "terms": "fruit,vegetable" + }, + "shop/hairdresser": { + "name": "Hairdresser", + "terms": "" + }, + "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": "" + }, + "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": "" + }, + "shop/music": { + "name": "Music Store", + "terms": "CD,vinyl" + }, + "shop/musical_instrument": { + "name": "Musical Instrument Store", + "terms": "" + }, + "shop/newsagent": { + "name": "Newspaper/Magazine Shop", + "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/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/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/vacant": { + "name": "Vacant Shop", + "terms": "" + }, + "shop/vacuum_cleaner": { + "name": "Vacuum Cleaner Store", + "terms": "" + }, + "shop/variety_store": { + "name": "Variety Store", + "terms": "" + }, + "shop/video": { + "name": "Video Store", + "terms": "DVD" + }, + "shop/video_games": { + "name": "Video Game Store", + "terms": "" + }, + "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/artwork": { + "name": "Artwork", + "terms": "mural,sculpture,statue" + }, + "tourism/attraction": { + "name": "Tourist Attraction", + "terms": "" + }, + "tourism/camp_site": { + "name": "Camp Site", + "terms": "Tent" + }, + "tourism/caravan_site": { + "name": "RV Park", + "terms": "Motor Home,Camper" + }, + "tourism/chalet": { + "name": "Chalet", + "terms": "" + }, + "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": "exhibition,foundation,gallery,hall,institution" + }, + "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/bump": { + "name": "Speed Bump", + "terms": "speed hump" + }, + "traffic_calming/hump": { + "name": "Speed Hump", + "terms": "speed bump" + }, + "traffic_calming/rumble_strip": { + "name": "Rumble Strip", + "terms": "sleeper lines,audible lines,growlers" + }, + "traffic_calming/table": { + "name": "Raised Pedestrian Crossing", + "terms": "speed table,flat top hump" + }, + "type/boundary": { + "name": "Boundary", + "terms": "" + }, + "type/boundary/administrative": { + "name": "Administrative Boundary", + "terms": "" + }, + "type/multipolygon": { + "name": "Multipolygon", + "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": { + "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/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/route_master": { + "name": "Route Master", + "terms": "" + }, + "vertex": { + "name": "Other", + "terms": "" + }, + "waterway": { + "name": "Waterway", + "terms": "" + }, + "waterway/boatyard": { + "name": "Boatyard", + "terms": "" + }, + "waterway/canal": { + "name": "Canal", + "terms": "" + }, + "waterway/dam": { + "name": "Dam", + "terms": "" + }, + "waterway/ditch": { + "name": "Ditch", + "terms": "" + }, + "waterway/dock": { + "name": "Dock", + "terms": "" + }, + "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