diff --git a/Vendorfile b/Vendorfile index 483e46aa1..7d7e7a66a 100644 --- a/Vendorfile +++ b/Vendorfile @@ -42,7 +42,7 @@ folder 'vendor/assets' do end folder 'iD' do - from 'git://github.com/systemed/iD', :branch => 'release' do + from 'git://github.com/openstreetmap/iD', :branch => 'release' do folder 'iD/img', 'dist/img' folder 'iD/locales', 'dist/locales' file 'iD.css.erb', 'dist/iD.css' do |path| diff --git a/vendor/assets/iD/iD.css.erb b/vendor/assets/iD/iD.css.erb index f4a802698..1927b00eb 100644 --- a/vendor/assets/iD/iD.css.erb +++ b/vendor/assets/iD/iD.css.erb @@ -1585,7 +1585,7 @@ button { display: inline-block; height:40px; border-radius:4px; - /* Crashes Safari: https://github.com/systemed/iD/issues/1188 */ + /* Crashes Safari: https://github.com/openstreetmap/iD/issues/1188 */ /*-webkit-transition: all 100ms;*/ -moz-transition: all 100ms; -o-transition: all 100ms; diff --git a/vendor/assets/iD/iD.js b/vendor/assets/iD/iD.js index 3a53d31b4..fd19d32de 100644 --- a/vendor/assets/iD/iD.js +++ b/vendor/assets/iD/iD.js @@ -5937,7 +5937,8 @@ d3.xml = d3_xhrType(function(request) { d3.combobox = function() { var event = d3.dispatch('accept'), data = [], - suggestions = []; + suggestions = [], + minItems = 2; var fetcher = function(val, cb) { cb(data.filter(function(d) { @@ -6035,6 +6036,8 @@ d3.combobox = function() { input.on('input.typeahead', function() { idx = -1; render(); + var start = input.property('selectionStart'); + input.node().setSelectionRange(start, start); input.on('input.typeahead', change); }); break; @@ -6126,7 +6129,7 @@ d3.combobox = function() { } function render() { - if (suggestions.length > 1 && document.activeElement === input.node()) { + if (suggestions.length >= minItems && document.activeElement === input.node()) { show(); } else { hide(); @@ -6192,6 +6195,12 @@ d3.combobox = function() { return combobox; }; + combobox.minItems = function(_) { + if (!arguments.length) return minItems; + minItems = _; + return combobox; + }; + return d3.rebind(combobox, event, 'on'); }; d3.geo.tile = function() { @@ -15837,7 +15846,7 @@ window.iD = function () { var context = {}, storage; - // https://github.com/systemed/iD/issues/772 + // https://github.com/openstreetmap/iD/issues/772 // http://mathiasbynens.be/notes/localstorage-pattern#comment-9 try { storage = localStorage; } catch (e) {} storage = storage || (function() { @@ -16142,7 +16151,7 @@ window.iD = function () { return d3.rebind(context, dispatch, 'on'); }; -iD.version = '1.3.4'; +iD.version = '1.3.5'; (function() { var detected = {}; @@ -16457,6 +16466,15 @@ iD.util.prefixCSSProperty = function(property) { return false; }; + +iD.util.setTransform = function(el, x, y, scale) { + var prop = iD.util.transformProperty = iD.util.transformProperty || iD.util.prefixCSSProperty('Transform'), + translate = iD.detect().opera ? + 'translate(' + x + 'px,' + y + 'px)' : + 'translate3d(' + x + 'px,' + y + 'px,0)'; + return el.style(prop, translate + (scale ? ' scale(' + scale + ')' : '')); +}; + iD.util.getStyle = function(selector) { for (var i = 0; i < document.styleSheets.length; i++) { var rules = document.styleSheets[i].rules || document.styleSheets[i].cssRules || []; @@ -16783,7 +16801,7 @@ _.extend(iD.geo.Extent.prototype, { } }); // For fixing up rendering of multipolygons with tags on the outer member. -// https://github.com/systemed/iD/issues/613 +// https://github.com/openstreetmap/iD/issues/613 iD.geo.isSimpleMultipolygonOuterMember = function(entity, graph) { if (entity.type !== 'way') return false; @@ -17402,8 +17420,13 @@ iD.actions.DiscardTags = function(difference) { return function(graph) { function discardTags(entity) { if (!_.isEmpty(entity.tags)) { + var tags = {}; + _.each(entity.tags, function(v, k) { + if (v) tags[k] = v; + }); + graph = graph.replace(entity.update({ - tags: _.omit(entity.tags, iD.data.discarded) + tags: _.omit(tags, iD.data.discarded) })); } } @@ -18692,7 +18715,7 @@ iD.behavior.DrawWay = function(context, wayId, index, mode, baseGraph) { start = iD.Node({loc: context.graph().entity(way.nodes[startIndex]).loc}), end = iD.Node({loc: context.map().mouseCoordinates()}), segment = iD.Way({ - nodes: [start.id, end.id], + nodes: typeof index === 'undefined' ? [start.id, end.id] : [end.id, start.id], tags: _.clone(way.tags) }); @@ -19224,8 +19247,7 @@ iD.behavior.Tail = function() { container, xmargin = 25, tooltipSize = [0, 0], - selectionSize = [0, 0], - transformProp = iD.util.prefixCSSProperty('Transform'); + selectionSize = [0, 0]; function tail(selection) { if (!text) return; @@ -19243,18 +19265,16 @@ iD.behavior.Tail = function() { var xoffset = ((d3.event.clientX + tooltipSize[0] + xmargin) > selectionSize[0]) ? -tooltipSize[0] - xmargin : xmargin; container.classed('left', xoffset > 0); - container.style(transformProp, 'translate(' + - (~~d3.event.clientX + xoffset) + 'px,' + - ~~d3.event.clientY + 'px)'); + iD.util.setTransform(container, d3.event.clientX + xoffset, d3.event.clientY); } - function mouseout() { + function mouseleave() { if (d3.event.relatedTarget !== container.node()) { container.style('display', 'none'); } } - function mouseover() { + function mouseenter() { if (d3.event.relatedTarget !== container.node()) { show(); } @@ -19270,8 +19290,8 @@ iD.behavior.Tail = function() { selection .on('mousemove.tail', mousemove) - .on('mouseover.tail', mouseover) - .on('mouseout.tail', mouseout); + .on('mouseenter.tail', mouseenter) + .on('mouseleave.tail', mouseleave); container .on('mousemove.tail', mousemove); @@ -19289,8 +19309,8 @@ iD.behavior.Tail = function() { selection .on('mousemove.tail', null) - .on('mouseover.tail', null) - .on('mouseout.tail', null); + .on('mouseenter.tail', null) + .on('mouseleave.tail', null); d3.select(window) .on('resize.tail', null); @@ -20774,6 +20794,7 @@ iD.areaKeys = { "amenity": { "atm": true, "bench": true, + "clock": true, "drinking_water": true, "post_box": true, "telephone": true, @@ -20796,6 +20817,7 @@ iD.areaKeys = { "building": { "entrance": true }, + "craft": {}, "emergency": { "fire_hydrant": true, "phone": true @@ -20825,6 +20847,7 @@ iD.areaKeys = { "tree": true }, "office": {}, + "piste:type": {}, "place": {}, "power": { "line": true, @@ -20871,15 +20894,19 @@ iD.areaKeys = { off; connection.changesetURL = function(changesetId) { - return url + '/browse/changeset/' + changesetId; + return url + '/changeset/' + changesetId; }; - connection.changesetsURL = function(extent) { - return url + '/browse/changesets?bbox=' + extent.toParam(); + connection.changesetsURL = function(center, zoom) { + var precision = Math.max(0, Math.ceil(Math.log(zoom) / Math.LN2)); + return url + '/history#map=' + + Math.floor(zoom) + '/' + + center[1].toFixed(precision) + '/' + + center[0].toFixed(precision); }; connection.entityURL = function(entity) { - return url + '/browse/' + entity.type + '/' + entity.osmId(); + return url + '/' + entity.type + '/' + entity.osmId(); }; connection.userURL = function(username) { @@ -21559,13 +21586,12 @@ iD.Graph = function(other, mutable) { this.entities = _.assign(Object.create(base.entities), other.entities); this._parentWays = _.assign(Object.create(base.parentWays), other._parentWays); this._parentRels = _.assign(Object.create(base.parentRels), other._parentRels); - this.inherited = true; } else { this.entities = Object.create({}); this._parentWays = Object.create({}); this._parentRels = Object.create({}); - this.rebase(other || []); + this.rebase(other || [], [this]); } this.transients = {}; @@ -21648,22 +21674,44 @@ iD.Graph.prototype = { // is used only during the history operation that merges newly downloaded // data into each state. To external consumers, it should appear as if the // graph always contained the newly downloaded data. - rebase: function(entities) { + rebase: function(entities, stack) { var base = this.base(), - i, k, child, id, keys; + i, j, k, id; - // Merging of data only needed if graph is the base graph - if (!this.inherited) { - for (i = 0; i < entities.length; i++) { - var entity = entities[i]; - if (!base.entities[entity.id]) { - base.entities[entity.id] = entity; - this._updateCalculated(undefined, entity, - base.parentWays, base.parentRels); + for (i = 0; i < entities.length; i++) { + var entity = entities[i]; + + if (base.entities[entity.id]) + continue; + + // Merging data into the base graph + base.entities[entity.id] = entity; + this._updateCalculated(undefined, entity, + base.parentWays, base.parentRels); + + // Restore provisionally-deleted nodes that are discovered to have an extant parent + if (entity.type === 'way') { + for (j = 0; j < entity.nodes.length; j++) { + id = entity.nodes[j]; + for (k = 1; k < stack.length; k++) { + var ents = stack[k].entities; + if (ents.hasOwnProperty(id) && ents[id] === undefined) { + delete ents[id]; + } + } } } } + for (i = 0; i < stack.length; i++) { + stack[i]._updateRebased(); + } + }, + + _updateRebased: function() { + var base = this.base(), + i, k, child, id, keys; + keys = Object.keys(this._parentWays); for (i = 0; i < keys.length; i++) { child = keys[i]; @@ -21782,9 +21830,7 @@ iD.Graph.prototype = { freeze: function() { this.frozen = true; - if (iD.debug) { - Object.freeze(this.entities); - } + // No longer freezing entities here due to in-place updates needed in rebase. return this; }, @@ -21846,10 +21892,7 @@ iD.History = function(context) { }, merge: function(entities, extent) { - for (var i = 0; i < stack.length; i++) { - stack[i].graph.rebase(entities); - } - + stack[0].graph.rebase(entities, _.pluck(stack, 'graph')); tree.rebase(entities); dispatch.change(undefined, extent); @@ -22064,7 +22107,6 @@ iD.History = function(context) { }); } - stack[0].graph.inherited = false; dispatch.change(); return history; @@ -22184,16 +22226,27 @@ iD.Relation = iD.Entity.relation = function iD_Relation() { iD.Relation.prototype = Object.create(iD.Entity.prototype); +iD.Relation.creationOrder = function(a, b) { + var aId = parseInt(iD.Entity.id.toOSM(a.id), 10); + var bId = parseInt(iD.Entity.id.toOSM(b.id), 10); + + if (aId < 0 || bId < 0) return aId - bId; + return bId - aId; +}; + _.extend(iD.Relation.prototype, { type: 'relation', members: [], - extent: function(resolver) { + extent: function(resolver, memo) { return resolver.transient(this, 'extent', function() { + if (memo && memo[this.id]) return iD.geo.Extent(); + memo = memo || {}; + memo[this.id] = true; return this.members.reduce(function(extent, member) { member = resolver.hasEntity(member.id); if (member) { - return extent.extend(member.extent(resolver)); + return extent.extend(member.extent(resolver, memo)); } else { return extent; } @@ -23199,7 +23252,6 @@ iD.Map = function(context) { transformStart, transformed = false, minzoom = 0, - transformProp = iD.util.prefixCSSProperty('Transform'), points = iD.svg.Points(roundedProjection, context), vertices = iD.svg.Vertices(roundedProjection, context), lines = iD.svg.Lines(projection), @@ -23366,13 +23418,8 @@ iD.Map = function(context) { tX = Math.round((d3.event.translate[0] / scale - transformStart[1][0]) * scale), tY = Math.round((d3.event.translate[1] / scale - transformStart[1][1]) * scale); - var transform = - (iD.detect().opera ? - 'translate(' + tX + 'px,' + tY + 'px)' : - 'translate3d(' + tX + 'px,' + tY + 'px, 0)') + ' scale(' + scale + ')'; - transformed = true; - supersurface.style(transformProp, transform); + iD.util.setTransform(supersurface, tX, tY, scale); queueRedraw(); dispatch.move(map); @@ -23380,7 +23427,7 @@ iD.Map = function(context) { function resetTransform() { if (!transformed) return false; - supersurface.style(transformProp, iD.detect().opera ? '' : 'translate3d(0,0,0)'); + iD.util.setTransform(supersurface, 0, 0); transformed = false; return true; } @@ -23953,7 +24000,7 @@ iD.svg.Areas = function(projection) { .data(function(layer) { return data[layer]; }, iD.Entity.key); // Remove exiting areas first, so they aren't included in the `fills` - // array used for sorting below (https://github.com/systemed/iD/issues/1903). + // array used for sorting below (https://github.com/openstreetmap/iD/issues/1903). paths.exit() .remove(); @@ -24552,8 +24599,12 @@ iD.svg.Midpoints = function(projection, context) { b = nodes[j + 1], id = [a.id, b.id].sort().join('-'); - // If neither of the nodes changed, no need to redraw midpoint - if (!midpoints[id] && (filter(a) || filter(b))) { + // Redraw midpoints in two cases: + // 1. One of the two endpoint nodes changed (e.g. was moved). + // 2. A node was deleted. The midpoint between the two new + // endpoints needs to be redrawn. In this case only the + // way will be in the diff. + if (!midpoints[id] && (filter(a) || filter(b) || filter(entity))) { var loc = iD.geo.interp(a.loc, b.loc, 0.5); if (extent.intersects(loc) && iD.geo.euclideanDistance(projection(a.loc), projection(b.loc)) > 40) { midpoints[id] = { @@ -25159,14 +25210,14 @@ iD.ui = function(context) { .append('a') .attr('target', '_blank') .attr('tabindex', -1) - .attr('href', 'http://github.com/systemed/iD') + .attr('href', 'http://github.com/openstreetmap/iD') .text(iD.version); var bugReport = linkList.append('li') .append('a') .attr('target', '_blank') .attr('tabindex', -1) - .attr('href', 'https://github.com/systemed/iD/issues'); + .attr('href', 'https://github.com/openstreetmap/iD/issues'); bugReport.append('span') .attr('class','icon bug light'); @@ -25396,11 +25447,15 @@ iD.ui.Background = function(context) { function background(selection) { function setOpacity(d) { - context.container().selectAll('.background-layer') + var bg = context.container().selectAll('.background-layer') .transition() .style('opacity', d) .attr('data-opacity', d); + if (!iD.detect().opera) { + iD.util.setTransform(bg, 0, 0); + } + opacityList.selectAll('li') .classed('active', function(_) { return _ === d; }); @@ -25940,7 +25995,9 @@ iD.ui.Commit = function(context) { function warningClick(d) { if (d.entity) { context.map().zoomTo(d.entity); - context.enter(iD.modes.Select(context, [d.entity.id])); + context.enter( + iD.modes.Select(context, [d.entity.id]) + .suppressMenu(true)); } } } @@ -26009,7 +26066,7 @@ iD.ui.Contributors = function(context) { .attr('target', '_blank') .attr('tabindex', -1) .attr('href', function() { - return context.connection().changesetsURL(context.map().extent()); + return context.connection().changesetsURL(context.map().center(), context.map().zoom()); }) .text(u.length - limit + 1); @@ -26286,7 +26343,7 @@ iD.ui.FeatureList = function(context) { var q = search.property('value'), items = list.selectAll('.feature-list-item'); if (d3.event.keyCode === 13 && q.length && items.size()) { - click(items.datum().entity); + click(items.datum()); } } @@ -26330,6 +26387,29 @@ iD.ui.FeatureList = function(context) { if (!q) return result; + var idMatch = q.match(/^([nwr])([0-9]+)$/); + + if (idMatch) { + result.push({ + id: idMatch[0], + geometry: idMatch[1] === 'n' ? 'point' : idMatch[1] === 'w' ? 'line' : 'relation', + type: idMatch[1] === 'n' ? t('inspector.node') : idMatch[1] === 'w' ? t('inspector.way') : t('inspector.relation'), + name: idMatch[2] + }); + } + + var locationMatch = q.match(/^(-?\d+\.?\d*)\s+(-?\d+\.?\d*)$/); + + if (locationMatch) { + result.push({ + id: -1, + geometry: 'point', + type: t('inspector.location'), + name: locationMatch[0], + location: [parseFloat(locationMatch[1]), parseFloat(locationMatch[2])] + }); + } + function addEntity(entity) { if (entity.id in entities || result.length > 200) return; @@ -26358,12 +26438,13 @@ iD.ui.FeatureList = function(context) { } (geocodeResults || []).forEach(function(d) { - // https://github.com/systemed/iD/issues/1890 + // https://github.com/openstreetmap/iD/issues/1890 if (d.osm_type && d.osm_id) { result.push({ id: iD.Entity.id.fromOSM(d.osm_type, d.osm_id), geometry: d.osm_type === 'relation' ? 'relation' : d.osm_type === 'way' ? 'line' : 'point', - type: (d.type.charAt(0).toUpperCase() + d.type.slice(1)).replace('_', ' '), + type: d.type !== 'yes' ? (d.type.charAt(0).toUpperCase() + d.type.slice(1)).replace('_', ' ') + : (d.class.charAt(0).toUpperCase() + d.class.slice(1)).replace('_', ' '), name: d.display_name, extent: new iD.geo.Extent( [parseFloat(d.boundingbox[3]), parseFloat(d.boundingbox[0])], @@ -26415,6 +26496,10 @@ iD.ui.FeatureList = function(context) { list.selectAll('.geocode-item') .style('display', (value && geocodeResults === undefined) ? 'block' : 'none'); + list.selectAll('.feature-list-item') + .data([-1]) + .remove(); + var items = list.selectAll('.feature-list-item') .data(results, function(d) { return d.id; }); @@ -26449,6 +26534,8 @@ iD.ui.FeatureList = function(context) { } function mouseover(d) { + if (d.id === -1) return; + context.surface().selectAll(iD.util.entityOrMemberSelector([d.id], context.graph())) .classed('hover', true); } @@ -26460,7 +26547,10 @@ iD.ui.FeatureList = function(context) { function click(d) { d3.event.preventDefault(); - if (d.entity) { + if (d.location) { + context.map().centerZoom([d.location[1], d.location[0]], 20); + } + else if (d.entity) { context.enter(iD.modes.Select(context, [d.entity.id])); } else { context.loadEntity(d.id); @@ -26737,10 +26827,8 @@ iD.ui.Inspector = function(context) { .entityID(entityID)); function showList(preset) { - var right = $wrap.style('right').indexOf('%') > 0 ? '-100%' : '-' + selection.style('width'); - $wrap.transition() - .style('right', right); + .styleTween('right', function() { return d3.interpolate('0%', '-100%'); }); $presetPane.call(presetList .preset(preset) @@ -26748,10 +26836,8 @@ iD.ui.Inspector = function(context) { } function setPreset(preset) { - var right = $wrap.style('right').indexOf('%') > 0 ? '0%' : '0px'; - $wrap.transition() - .style('right', right); + .styleTween('right', function() { return d3.interpolate('-100%', '0%'); }); $editorPane.call(entityEditor .preset(preset)); @@ -27770,7 +27856,7 @@ iD.ui.RadialMenu = function(context, operations) { .attr('class', 'tooltip-inner radial-menu-tooltip'); function mousedown() { - d3.event.stopPropagation(); // https://github.com/systemed/iD/issues/1869 + d3.event.stopPropagation(); // https://github.com/openstreetmap/iD/issues/1869 } function mouseover(d, i) { @@ -27811,7 +27897,9 @@ iD.ui.RadialMenu = function(context, operations) { radialMenu.close = function() { if (menu) { - menu.transition() + menu + .style('pointer-events', 'none') + .transition() .attr('opacity', 0) .remove(); } @@ -27986,10 +28074,11 @@ iD.ui.RawMembershipEditor = function(context) { } function relations(q) { - var result = [{ + var newRelation = { relation: null, value: t('inspector.new_relation') - }], + }, + result = [], graph = context.graph(); context.intersects(context.extent()).forEach(function(entity) { @@ -28009,6 +28098,11 @@ iD.ui.RawMembershipEditor = function(context) { }); }); + result.sort(function(a, b) { + return iD.Relation.creationOrder(a.relation, b.relation); + }); + result.unshift(newRelation); + return result; } @@ -28092,6 +28186,7 @@ iD.ui.RawMembershipEditor = function(context) { .attr('type', 'text') .attr('class', 'member-entity-input') .call(d3.combobox() + .minItems(1) .fetcher(function(value, callback) { callback(relations(value)); }) @@ -28579,6 +28674,8 @@ iD.ui.Sidebar = function(context) { } }; + sidebar.hover = _.throttle(sidebar.hover, 200); + sidebar.select = function(id, newFeature) { if (!current && id) { featureListWrap.classed('inspector-hidden', true); @@ -28707,7 +28804,7 @@ iD.ui.Splash = function(context) { .html(t('splash.text', { version: iD.version, website: 'ideditor.com', - github: 'github.com' + github: 'github.com' })); var buttons = introModal.append('div').attr('class', 'modal-actions cf'); @@ -31135,9 +31232,11 @@ iD.presets.Preset = function(id, preset, fields) { var applyTags = preset.addTags || preset.tags; preset.applyTags = function(tags, geometry) { + var k; + tags = _.clone(tags); - for (var k in applyTags) { + for (k in applyTags) { if (applyTags[k] === '*') { tags[k] = 'yes'; } else { @@ -31145,6 +31244,13 @@ iD.presets.Preset = function(id, preset, fields) { } } + // Add area=yes if necessary + for (k in applyTags) { + if (geometry === 'area' && !(k in iD.areaKeys)) + tags.area = 'yes'; + break; + } + for (var f in preset.fields) { var field = preset.fields[f]; if (field.matchGeometry(geometry) && field.key && !tags[field.key] && field['default']) { @@ -40584,7 +40690,101 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "overlay": true }, { - "name": "Lithuania - ORT10LT", + "name": "Landsat 233055", + "type": "tms", + "description": "Recent Landsat imagery", + "template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/landsat_233055/{zoom}/{x}/{y}.png", + "scaleExtent": [ + 5, + 14 + ], + "polygon": [ + [ + [ + -60.8550011, + 6.1765004 + ], + [ + -60.4762612, + 7.9188291 + ], + [ + -62.161689, + 8.2778675 + ], + [ + -62.5322549, + 6.5375488 + ] + ] + ], + "id": "landsat_233055" + }, + { + "name": "Latest southwest British Columbia Landsat", + "type": "tms", + "description": "Recent lower-resolution landwsat imagery for southwest British Columbia", + "template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/landsat_047026/{zoom}/{x}/{y}.png", + "scaleExtent": [ + 5, + 13 + ], + "polygon": [ + [ + [ + -121.9355512, + 47.7820648 + ], + [ + -121.5720582, + 48.6410125 + ], + [ + -121.2015461, + 49.4846247 + ], + [ + -121.8375516, + 49.6023246 + ], + [ + -122.4767046, + 49.7161735 + ], + [ + -123.118912, + 49.8268824 + ], + [ + -123.760228, + 49.9335836 + ], + [ + -124.0887706, + 49.0870469 + ], + [ + -124.4128889, + 48.2252567 + ], + [ + -123.792772, + 48.1197334 + ], + [ + -123.1727942, + 48.0109592 + ], + [ + -122.553553, + 47.8982299 + ] + ] + ], + "id": "landsat_047026" + }, + { + "name": "Lithuania - NŽT ORT10LT", "type": "tms", "template": "http://mapproxy.openmap.lt/ort10lt/g/{z}/{x}/{y}.jpeg", "scaleExtent": [ @@ -40594,27 +40794,165 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "polygon": [ [ [ - 21, - 53.88 + 21.4926054, + 56.3592046 ], [ - 21, - 56.45 + 21.8134688, + 56.4097144 ], [ - 26.85, - 56.45 + 21.9728753, + 56.4567587 ], [ - 26.85, - 53.88 + 22.2158294, + 56.4604404 ], [ - 21, - 53.88 + 22.2183922, + 56.4162361 + ], + [ + 23.3511527, + 56.4267251 + ], + [ + 23.3521778, + 56.3824815 + ], + [ + 23.9179035, + 56.383305 + ], + [ + 23.9176231, + 56.3392908 + ], + [ + 24.5649817, + 56.3382169 + ], + [ + 24.564933, + 56.3828587 + ], + [ + 24.6475683, + 56.4277798 + ], + [ + 24.8099394, + 56.470646 + ], + [ + 24.9733979, + 56.4698452 + ], + [ + 25.1299701, + 56.2890356 + ], + [ + 25.127433, + 56.1990144 + ], + [ + 25.6921076, + 56.1933684 + ], + [ + 26.0839005, + 56.0067879 + ], + [ + 26.4673573, + 55.7304232 + ], + [ + 26.5463565, + 55.7132705 + ], + [ + 26.5154447, + 55.2345969 + ], + [ + 25.7874641, + 54.8425656 + ], + [ + 25.7675259, + 54.6350898 + ], + [ + 25.6165253, + 54.4404007 + ], + [ + 24.4566043, + 53.9577649 + ], + [ + 23.6164786, + 53.9575517 + ], + [ + 23.5632006, + 54.048085 + ], + [ + 22.8462074, + 54.3563682 + ], + [ + 22.831944, + 54.9414849 + ], + [ + 22.4306085, + 55.1159913 + ], + [ + 21.9605898, + 55.1107144 + ], + [ + 21.7253241, + 55.1496885 + ], + [ + 21.5628422, + 55.2362913 + ], + [ + 21.2209638, + 55.2742668 + ], + [ + 21.1630444, + 55.2803979 + ], + [ + 20.9277788, + 55.3101641 + ], + [ + 20.9257285, + 55.3588507 + ], + [ + 20.9980451, + 55.4514157 + ], + [ + 21.0282249, + 56.0796297 ] ] - ] + ], + "terms_url": "http://www.geoportal.lt", + "terms_text": "NŽT ORT10LT" }, { "name": "Locator Overlay", @@ -51745,27 +52083,483 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "name": "Surrey Air Survey", "type": "tms", "template": "http://gravitystorm.dev.openstreetmap.org/surrey/{zoom}/{x}/{y}.png", + "scaleExtent": [ + 8, + 19 + ], "polygon": [ [ [ - -0.856, - 51.071 + -0.752478, + 51.0821941 ], [ - -0.856, - 51.473 + -0.7595183, + 51.0856254 ], [ - 0.062, - 51.473 + -0.8014342, + 51.1457917 ], [ - 0.062, - 51.071 + -0.8398864, + 51.1440686 ], [ - -0.856, - 51.071 + -0.8357665, + 51.1802397 + ], + [ + -0.8529549, + 51.2011266 + ], + [ + -0.8522683, + 51.2096231 + ], + [ + -0.8495217, + 51.217903 + ], + [ + -0.8266907, + 51.2403696 + ], + [ + -0.8120995, + 51.2469248 + ], + [ + -0.7736474, + 51.2459577 + ], + [ + -0.7544213, + 51.2381127 + ], + [ + -0.754078, + 51.233921 + ], + [ + -0.7446366, + 51.2333836 + ], + [ + -0.7430693, + 51.2847178 + ], + [ + -0.751503, + 51.3069524 + ], + [ + -0.7664376, + 51.3121032 + ], + [ + -0.7820588, + 51.3270157 + ], + [ + -0.7815438, + 51.3388135 + ], + [ + -0.7374268, + 51.3720456 + ], + [ + -0.7192307, + 51.3769748 + ], + [ + -0.6795769, + 51.3847961 + ], + [ + -0.6807786, + 51.3901523 + ], + [ + -0.6531411, + 51.3917591 + ], + [ + -0.6301385, + 51.3905808 + ], + [ + -0.6291085, + 51.3970074 + ], + [ + -0.6234437, + 51.3977572 + ], + [ + -0.613144, + 51.4295552 + ], + [ + -0.6002471, + 51.4459121 + ], + [ + -0.5867081, + 51.4445365 + ], + [ + -0.5762368, + 51.453202 + ], + [ + -0.5626755, + 51.4523462 + ], + [ + -0.547741, + 51.4469972 + ], + [ + -0.5372697, + 51.4448575 + ], + [ + -0.537098, + 51.4526671 + ], + [ + -0.5439644, + 51.4545926 + ], + [ + -0.5405312, + 51.4698865 + ], + [ + -0.5309182, + 51.4760881 + ], + [ + -0.5091172, + 51.4744843 + ], + [ + -0.5086022, + 51.4695657 + ], + [ + -0.4900628, + 51.4682825 + ], + [ + -0.4526406, + 51.4606894 + ], + [ + -0.4486924, + 51.4429316 + ], + [ + -0.4414826, + 51.4418616 + ], + [ + -0.4418259, + 51.4369394 + ], + [ + -0.4112702, + 51.4380095 + ], + [ + -0.4014855, + 51.4279498 + ], + [ + -0.3807145, + 51.4262372 + ], + [ + -0.3805428, + 51.4161749 + ], + [ + -0.3491288, + 51.4138195 + ], + [ + -0.3274994, + 51.4037544 + ], + [ + -0.3039818, + 51.3990424 + ], + [ + -0.3019219, + 51.3754747 + ], + [ + -0.309475, + 51.369688 + ], + [ + -0.3111916, + 51.3529669 + ], + [ + -0.2955704, + 51.3541462 + ], + [ + -0.2923089, + 51.3673303 + ], + [ + -0.2850991, + 51.3680805 + ], + [ + -0.2787476, + 51.3771891 + ], + [ + -0.2655297, + 51.3837247 + ], + [ + -0.2411538, + 51.3847961 + ], + [ + -0.2123147, + 51.3628288 + ], + [ + -0.2107697, + 51.3498578 + ], + [ + -0.190857, + 51.3502867 + ], + [ + -0.1542931, + 51.3338802 + ], + [ + -0.1496583, + 51.3057719 + ], + [ + -0.1074296, + 51.2966491 + ], + [ + -0.0887185, + 51.3099571 + ], + [ + -0.0878602, + 51.3220811 + ], + [ + -0.0652009, + 51.3215448 + ], + [ + -0.0641709, + 51.3264793 + ], + [ + -0.0519829, + 51.3263721 + ], + [ + -0.0528412, + 51.334631 + ], + [ + -0.0330779, + 51.3430876 + ], + [ + 0.0019187, + 51.3376339 + ], + [ + 0.0118751, + 51.3281956 + ], + [ + 0.013935, + 51.2994398 + ], + [ + 0.0202865, + 51.2994398 + ], + [ + 0.0240631, + 51.3072743 + ], + [ + 0.0331611, + 51.3086694 + ], + [ + 0.0455207, + 51.30545 + ], + [ + 0.0523872, + 51.2877392 + ], + [ + 0.0616569, + 51.2577764 + ], + [ + 0.0640602, + 51.2415518 + ], + [ + 0.0462074, + 51.2126342 + ], + [ + 0.0407142, + 51.2109136 + ], + [ + 0.0448341, + 51.1989753 + ], + [ + 0.0494689, + 51.1997283 + ], + [ + 0.0558204, + 51.1944573 + ], + [ + 0.0611419, + 51.1790713 + ], + [ + 0.0623435, + 51.1542061 + ], + [ + 0.0577087, + 51.1417146 + ], + [ + 0.0204582, + 51.1365447 + ], + [ + -0.0446015, + 51.1336364 + ], + [ + -0.1566964, + 51.1352522 + ], + [ + -0.1572114, + 51.1290043 + ], + [ + -0.2287942, + 51.1183379 + ], + [ + -0.2473336, + 51.1183379 + ], + [ + -0.2500802, + 51.1211394 + ], + [ + -0.299347, + 51.1137042 + ], + [ + -0.3221779, + 51.1119799 + ], + [ + -0.3223496, + 51.1058367 + ], + [ + -0.3596001, + 51.1019563 + ], + [ + -0.3589135, + 51.1113333 + ], + [ + -0.3863793, + 51.1117644 + ], + [ + -0.3869014, + 51.1062516 + ], + [ + -0.4281001, + 51.0947174 + ], + [ + -0.4856784, + 51.0951554 + ], + [ + -0.487135, + 51.0872266 + ], + [ + -0.5297404, + 51.0865404 + ], + [ + -0.5302259, + 51.0789914 + ], + [ + -0.61046, + 51.076551 + ], + [ + -0.6099745, + 51.080669 + ], + [ + -0.6577994, + 51.0792202 + ], + [ + -0.6582849, + 51.0743394 + ], + [ + -0.6836539, + 51.0707547 + ], + [ + -0.6997979, + 51.070831 + ], + [ + -0.7296581, + 51.0744919 ] ] ] @@ -61191,9 +61985,169 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "addr:housenumber": "*" }, "addTags": {}, + "removeTags": {}, "matchScore": 0.2, "name": "Address" }, + "aerialway": { + "fields": [ + "aerialway" + ], + "geometry": [ + "point", + "vertex", + "line" + ], + "tags": { + "aerialway": "*" + }, + "terms": [ + "ski lift", + "funifor", + "funitel" + ], + "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": [ @@ -61390,7 +62344,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "fields": [ "atm", "building_area", - "address" + "address", + "opening_hours" ], "geometry": [ "point", @@ -61429,7 +62384,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "icon": "bar", "fields": [ "building_area", - "address" + "address", + "opening_hours" ], "geometry": [ "point", @@ -61511,7 +62467,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "cuisine", "internet_access", "building_area", - "address" + "address", + "opening_hours" ], "geometry": [ "point", @@ -61626,6 +62583,37 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," }, "name": "Cinema" }, + "amenity/clinic": { + "name": "Clinic", + "geometry": [ + "point", + "area" + ], + "terms": [ + "clinic", + "medical clinic" + ], + "tags": { + "amenity": "clinic" + }, + "icon": "hospital", + "fields": [ + "building_area", + "social_facility", + "address", + "opening_hours" + ] + }, + "amenity/clock": { + "geometry": [ + "point", + "vertex" + ], + "tags": { + "amenity": "clock" + }, + "name": "Clock" + }, "amenity/college": { "icon": "college", "fields": [ @@ -61658,6 +62646,46 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," }, "name": "Courthouse" }, + "amenity/dentist": { + "name": "Dentist", + "geometry": [ + "point", + "area" + ], + "terms": [ + "dentist", + "dentist's office" + ], + "tags": { + "amenity": "doctors" + }, + "icon": "hospital", + "fields": [ + "building_area", + "address", + "opening_hours" + ] + }, + "amenity/doctor": { + "name": "Doctor", + "geometry": [ + "point", + "area" + ], + "terms": [ + "doctor", + "doctor's office" + ], + "tags": { + "amenity": "doctors" + }, + "icon": "hospital", + "fields": [ + "building_area", + "address", + "opening_hours" + ] + }, "amenity/drinking_water": { "icon": "water", "geometry": [ @@ -61692,7 +62720,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "fields": [ "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "geometry": [ "point", @@ -61885,7 +62914,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "fields": [ "operator", "building_area", - "address" + "address", + "opening_hours" ], "geometry": [ "point", @@ -62145,7 +63175,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "icon": "beer", "fields": [ "building_area", - "address" + "address", + "opening_hours" ], "geometry": [ "point", @@ -62208,6 +63239,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "cuisine", "building_area", "address", + "opening_hours", "capacity" ], "geometry": [ @@ -62306,6 +63338,30 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "name": "Shelter" }, + "amenity/studio": { + "name": "Studio", + "geometry": [ + "point", + "area" + ], + "terms": [ + "recording studio", + "studio", + "radio", + "radio studio", + "television", + "television studio" + ], + "tags": { + "amenity": "studio" + }, + "icon": "music", + "fields": [ + "building_area", + "studio_type", + "address" + ] + }, "amenity/swimming_pool": { "geometry": [ "point", @@ -62461,6 +63517,23 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," }, "name": "Vending Machine" }, + "amenity/veterinary": { + "fields": [], + "geometry": [ + "point", + "area" + ], + "terms": [ + "pet clinic", + "veterinarian", + "animal hospital", + "pet doctor" + ], + "tags": { + "amenity": "veterinary" + }, + "name": "Veterinary" + }, "amenity/waste_basket": { "icon": "waste-basket", "geometry": [ @@ -62826,6 +63899,948 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," }, "name": "Residential Building" }, + "craft/basket_maker": { + "name": "Basket Maker", + "geometry": [ + "point", + "area" + ], + "terms": [ + "basket", + "basketry", + "basket maker", + "basket weaver" + ], + "tags": { + "craft": "basket_maker" + }, + "icon": "art-gallery", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/beekeeper": { + "name": "Beekeeper", + "geometry": [ + "point", + "area" + ], + "terms": [ + "bees", + "beekeeper", + "bee box" + ], + "tags": { + "craft": "beekeeper" + }, + "icon": "farm", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/blacksmith": { + "name": "Blacksmith", + "geometry": [ + "point", + "area" + ], + "terms": [ + "blacksmith" + ], + "tags": { + "craft": "blacksmith" + }, + "icon": "farm", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/boatbuilder": { + "name": "Boat Builder", + "geometry": [ + "point", + "area" + ], + "terms": [ + "boat builder" + ], + "tags": { + "craft": "boatbuilder" + }, + "icon": "marker-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/bookbinder": { + "name": "Bookbinder", + "geometry": [ + "point", + "area" + ], + "terms": [ + "bookbinder", + "book repair" + ], + "tags": { + "craft": "bookbinder" + }, + "icon": "library", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/brewery": { + "name": "Brewery", + "geometry": [ + "point", + "area" + ], + "terms": [ + "brewery" + ], + "tags": { + "craft": "brewery" + }, + "icon": "beer", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/carpenter": { + "name": "Carpenter", + "geometry": [ + "point", + "area" + ], + "terms": [ + "carpenter", + "woodworker" + ], + "tags": { + "craft": "carpenter" + }, + "icon": "logging", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/carpet_layer": { + "name": "Carpet Layer", + "geometry": [ + "point", + "area" + ], + "terms": [ + "carpet layer" + ], + "tags": { + "craft": "carpet_layer" + }, + "icon": "square", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/caterer": { + "name": "Caterer", + "geometry": [ + "point", + "area" + ], + "terms": [ + "Caterer", + "Catering" + ], + "tags": { + "craft": "caterer" + }, + "icon": "bakery", + "fields": [ + "cuisine", + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/clockmaker": { + "name": "Clockmaker", + "geometry": [ + "point", + "area" + ], + "terms": [ + "clock", + "clockmaker", + "clock repair" + ], + "tags": { + "craft": "clockmaker" + }, + "icon": "circle-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/confectionary": { + "name": "Confectionary", + "geometry": [ + "point", + "area" + ], + "terms": [ + "confectionary", + "sweets", + "candy" + ], + "tags": { + "craft": "confectionary" + }, + "icon": "bakery", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/dressmaker": { + "name": "Dressmaker", + "geometry": [ + "point", + "area" + ], + "terms": [ + "dress", + "dressmaker" + ], + "tags": { + "craft": "dressmaker" + }, + "icon": "clothing-store", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/electrician": { + "name": "Electrician", + "geometry": [ + "point", + "area" + ], + "terms": [ + "electrician" + ], + "tags": { + "craft": "electrician" + }, + "icon": "marker-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/gardener": { + "name": "Gardener", + "geometry": [ + "point", + "area" + ], + "terms": [ + "gardener", + "landscaper", + "grounds keeper" + ], + "tags": { + "craft": "gardener" + }, + "icon": "garden", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/glaziery": { + "name": "Glaziery", + "geometry": [ + "point", + "area" + ], + "terms": [ + "glass", + "glass foundry", + "stained-glass", + "window" + ], + "tags": { + "craft": "glaziery" + }, + "icon": "fire-station", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/handicraft": { + "name": "Handicraft", + "geometry": [ + "point", + "area" + ], + "terms": [ + "handicraft" + ], + "tags": { + "craft": "handicraft" + }, + "icon": "art-gallery", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/hvac": { + "name": "HVAC", + "geometry": [ + "point", + "area" + ], + "terms": [ + "heating", + "ventilating", + "air-conditioning", + "air conditioning" + ], + "tags": { + "craft": "hvac" + }, + "icon": "marker-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/insulator": { + "name": "Insulator", + "geometry": [ + "point", + "area" + ], + "terms": [ + "insulation", + "insulator" + ], + "tags": { + "craft": "insulation" + }, + "icon": "marker-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/jeweler": { + "name": "Jeweler", + "geometry": [ + "point", + "area" + ], + "terms": [ + "jeweler", + "gem", + "diamond" + ], + "tags": { + "craft": "jeweler" + }, + "icon": "marker-stroked", + "searchable": false, + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/key_cutter": { + "name": "Key Cutter", + "geometry": [ + "point", + "area" + ], + "terms": [ + "key", + "key cutter" + ], + "tags": { + "craft": "key_cutter" + }, + "icon": "marker-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/locksmith": { + "name": "Locksmith", + "geometry": [ + "point", + "area" + ], + "terms": [ + "locksmith", + "lock" + ], + "tags": { + "craft": "locksmith" + }, + "icon": "marker-stroked", + "searchable": false, + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/metal_construction": { + "name": "Metal Construction", + "geometry": [ + "point", + "area" + ], + "terms": [ + "metal construction" + ], + "tags": { + "craft": "metal_construction" + }, + "icon": "marker-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/optician": { + "name": "Optician", + "geometry": [ + "point", + "area" + ], + "terms": [ + "glasses", + "optician" + ], + "tags": { + "craft": "optician" + }, + "icon": "marker-stroked", + "searchable": false, + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/painter": { + "name": "painter", + "geometry": [ + "point", + "area" + ], + "terms": [ + "painter" + ], + "tags": { + "craft": "painter" + }, + "icon": "art-gallery", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/photographer": { + "name": "Photographer", + "geometry": [ + "point", + "area" + ], + "terms": [ + "photographer" + ], + "tags": { + "craft": "photographer" + }, + "icon": "camera", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/photographic_labratory": { + "name": "Photographic Labratory", + "geometry": [ + "point", + "area" + ], + "terms": [ + "photographic labratory", + "film developer" + ], + "tags": { + "craft": "photographic_labratory" + }, + "icon": "camera", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/plasterer": { + "name": "Plasterer", + "geometry": [ + "point", + "area" + ], + "terms": [ + "plasterer" + ], + "tags": { + "craft": "plasterer" + }, + "icon": "marker-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/plumber": { + "name": "Plumber", + "geometry": [ + "point", + "area" + ], + "terms": [ + "pumber" + ], + "tags": { + "craft": "plumber" + }, + "icon": "marker-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/pottery": { + "name": "Pottery", + "geometry": [ + "point", + "area" + ], + "terms": [ + "pottery", + "potter" + ], + "tags": { + "craft": "pottery" + }, + "icon": "art-gallery", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/rigger": { + "name": "Rigger", + "geometry": [ + "point", + "area" + ], + "terms": [ + "rigger" + ], + "tags": { + "craft": "rigger" + }, + "icon": "marker-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/roofer": { + "name": "Roofer", + "geometry": [ + "point", + "area" + ], + "terms": [ + "roofer" + ], + "tags": { + "craft": "roofer" + }, + "icon": "marker-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/saddler": { + "name": "Saddler", + "geometry": [ + "point", + "area" + ], + "terms": [ + "saddler" + ], + "tags": { + "craft": "saddler" + }, + "icon": "marker-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/sailmaker": { + "name": "Sailmaker", + "geometry": [ + "point", + "area" + ], + "terms": [ + "sailmaker" + ], + "tags": { + "craft": "sailmaker" + }, + "icon": "marker-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/sawmill": { + "name": "Sawmill", + "geometry": [ + "point", + "area" + ], + "terms": [ + "sawmill", + "lumber" + ], + "tags": { + "craft": "sawmill" + }, + "icon": "park", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/scaffolder": { + "name": "Scaffolder", + "geometry": [ + "point", + "area" + ], + "terms": [ + "scaffolder" + ], + "tags": { + "craft": "scaffolder" + }, + "icon": "marker-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/sculpter": { + "name": "Sculpter", + "geometry": [ + "point", + "area" + ], + "terms": [ + "sculpter" + ], + "tags": { + "craft": "sculpter" + }, + "icon": "art-gallery", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/shoemaker": { + "name": "Shoemaker", + "geometry": [ + "point", + "area" + ], + "terms": [ + "shoe repair", + "shoemaker" + ], + "tags": { + "craft": "shoemaker" + }, + "icon": "marker-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/stonemason": { + "name": "Stonemason", + "geometry": [ + "point", + "area" + ], + "terms": [ + "stonemason", + "masonry" + ], + "tags": { + "craft": "stonemason" + }, + "icon": "marker-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/sweep": { + "name": "Chimney Sweep", + "geometry": [ + "point", + "area" + ], + "terms": [ + "sweep", + "chimney sweep" + ], + "tags": { + "craft": "sweep" + }, + "icon": "marker-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/tailor": { + "name": "Tailor", + "geometry": [ + "point", + "area" + ], + "terms": [ + "tailor", + "clothes" + ], + "tags": { + "craft": "tailor" + }, + "icon": "clothing-store", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/tiler": { + "name": "Tiler", + "geometry": [ + "point", + "area" + ], + "terms": [ + "tiler" + ], + "tags": { + "craft": "tiler" + }, + "icon": "marker-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/tinsmith": { + "name": "Tinsmith", + "geometry": [ + "point", + "area" + ], + "terms": [ + "tinsmith" + ], + "tags": { + "craft": "tinsmith" + }, + "icon": "marker-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/upholsterer": { + "name": "Upholsterer", + "geometry": [ + "point", + "area" + ], + "terms": [ + "upholsterer" + ], + "tags": { + "craft": "upholsterer" + }, + "icon": "marker-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/watchmaker": { + "name": "Watchmaker", + "geometry": [ + "point", + "area" + ], + "terms": [ + "watch", + "watchmaker", + "watch repair" + ], + "tags": { + "craft": "watchmaker" + }, + "icon": "circle-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, + "craft/window_construction": { + "name": "Window Construction", + "geometry": [ + "point", + "area" + ], + "terms": [ + "window", + "window maker", + "window construction" + ], + "tags": { + "craft": "window_construction" + }, + "icon": "marker-stroked", + "fields": [ + "building_area", + "address", + "operator", + "opening_hours" + ] + }, "embankment": { "geometry": [ "line" @@ -63343,6 +65358,22 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "terms": [], "name": "Residential Road" }, + "highway/rest_area": { + "geometry": [ + "point", + "vertex", + "area" + ], + "tags": { + "highway": "rest_area" + }, + "terms": [ + "rest stop", + "turnout", + "lay-by" + ], + "name": "Rest Area" + }, "highway/road": { "icon": "highway-road", "fields": [ @@ -63503,6 +65534,22 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," }, "name": "Parking Aisle" }, + "highway/services": { + "geometry": [ + "point", + "vertex", + "area" + ], + "tags": { + "highway": "services" + }, + "terms": [ + "services", + "travel plaza", + "service station" + ], + "name": "Service Area" + }, "highway/steps": { "fields": [ "access", @@ -65188,6 +67235,34 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "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" @@ -65464,6 +67539,27 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "terms": [], "name": "Disused Railway" }, + "railway/funicular": { + "geometry": [ + "line" + ], + "terms": [ + "venicular", + "cliff railway", + "cable car", + "cable railway", + "funicular railway" + ], + "fields": [ + "structure", + "gauge" + ], + "tags": { + "railway": "funicular" + }, + "icon": "railway-rail", + "name": "Funicular" + }, "railway/halt": { "icon": "rail", "geometry": [ @@ -65509,11 +67605,31 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "railway": "monorail" }, "fields": [ - "structure" + "structure", + "electrified" ], "terms": [], "name": "Monorail" }, + "railway/narrow_gauge": { + "icon": "railway-rail", + "geometry": [ + "line" + ], + "tags": { + "railway": "narrow_gauge" + }, + "fields": [ + "structure", + "gauge", + "electrified" + ], + "terms": [ + "narrow gauge railway", + "narrow gauge railroad" + ], + "name": "Narrow Gauge Rail" + }, "railway/platform": { "geometry": [ "point", @@ -65535,7 +67651,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "railway": "rail" }, "fields": [ - "structure" + "structure", + "gauge", + "electrified" ], "terms": [], "name": "Rail" @@ -65559,7 +67677,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "railway/subway": { "icon": "railway-subway", "fields": [ - "structure" + "structure", + "gauge", + "electrified" ], "geometry": [ "line" @@ -65590,7 +67710,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "railway": "tram" }, "fields": [ - "structure" + "structure", + "gauge", + "electrified" ], "terms": [ "streetcar" @@ -66772,7 +68894,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," }, "tourism/information": { "fields": [ - "infomation", + "information", "building_area", "address", "operator" @@ -67194,6 +69316,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," }, "waterway/ditch": { "icon": "waterway-ditch", + "fields": [ + "tunnel" + ], "geometry": [ "line" ], @@ -67204,6 +69329,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," }, "waterway/drain": { "icon": "waterway-stream", + "fields": [ + "tunnel" + ], "geometry": [ "line" ], @@ -67214,6 +69342,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," }, "waterway/river": { "icon": "waterway-river", + "fields": [ + "tunnel" + ], "geometry": [ "line" ], @@ -67250,7 +69381,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "waterway/stream": { "icon": "waterway-stream", "fields": [ - "layer" + "layer", + "tunnel" ], "geometry": [ "line" @@ -67298,6751 +69430,858 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," }, "name": "Weir" }, - "amenity/bank/ABN AMRO": { + "amenity/pub/The Green Man": { "tags": { - "name": "ABN AMRO", - "amenity": "bank" + "name": "The Green Man", + "amenity": "pub" }, - "name": "ABN AMRO", - "icon": "bank", + "name": "The Green Man", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/ABSA": { + "amenity/pub/Kings Arms": { "tags": { - "name": "ABSA", - "amenity": "bank" + "name": "Kings Arms", + "amenity": "pub" }, - "name": "ABSA", - "icon": "bank", + "name": "Kings Arms", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/AIB": { + "amenity/pub/Red Lion": { "tags": { - "name": "AIB", - "amenity": "bank" + "name": "Red Lion", + "amenity": "pub" }, - "name": "AIB", - "icon": "bank", + "name": "Red Lion", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/ANZ": { + "amenity/pub/The Ship": { "tags": { - "name": "ANZ", - "amenity": "bank" + "name": "The Ship", + "amenity": "pub" }, - "name": "ANZ", - "icon": "bank", + "name": "The Ship", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/AXA": { + "amenity/pub/The White Horse": { "tags": { - "name": "AXA", - "amenity": "bank" + "name": "The White Horse", + "amenity": "pub" }, - "name": "AXA", - "icon": "bank", + "name": "The White Horse", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Alior Bank": { + "amenity/pub/The White Hart": { "tags": { - "name": "Alior Bank", - "amenity": "bank" + "name": "The White Hart", + "amenity": "pub" }, - "name": "Alior Bank", - "icon": "bank", + "name": "The White Hart", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Allied Bank": { + "amenity/pub/Royal Oak": { "tags": { - "name": "Allied Bank", - "amenity": "bank" + "name": "Royal Oak", + "amenity": "pub" }, - "name": "Allied Bank", - "icon": "bank", + "name": "Royal Oak", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Alpha Bank": { + "amenity/pub/The Red Lion": { "tags": { - "name": "Alpha Bank", - "amenity": "bank" + "name": "The Red Lion", + "amenity": "pub" }, - "name": "Alpha Bank", - "icon": "bank", + "name": "The Red Lion", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Argenta": { + "amenity/pub/The Kings Arms": { "tags": { - "name": "Argenta", - "amenity": "bank" + "name": "The Kings Arms", + "amenity": "pub" }, - "name": "Argenta", - "icon": "bank", + "name": "The Kings Arms", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Axis Bank": { + "amenity/pub/The Star": { "tags": { - "name": "Axis Bank", - "amenity": "bank" + "name": "The Star", + "amenity": "pub" }, - "name": "Axis Bank", - "icon": "bank", + "name": "The Star", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/BAWAG PSK": { + "amenity/pub/The Anchor": { "tags": { - "name": "BAWAG PSK", - "amenity": "bank" + "name": "The Anchor", + "amenity": "pub" }, - "name": "BAWAG PSK", - "icon": "bank", + "name": "The Anchor", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/BB&T": { + "amenity/pub/The Cross Keys": { "tags": { - "name": "BB&T", - "amenity": "bank" + "name": "The Cross Keys", + "amenity": "pub" }, - "name": "BB&T", - "icon": "bank", + "name": "The Cross Keys", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/BBK": { + "amenity/pub/The Wheatsheaf": { "tags": { - "name": "BBK", - "amenity": "bank" + "name": "The Wheatsheaf", + "amenity": "pub" }, - "name": "BBK", - "icon": "bank", + "name": "The Wheatsheaf", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/BBVA": { + "amenity/pub/The Crown Inn": { "tags": { - "name": "BBVA", - "amenity": "bank" + "name": "The Crown Inn", + "amenity": "pub" }, - "name": "BBVA", - "icon": "bank", + "name": "The Crown Inn", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/BCI": { + "amenity/pub/The Kings Head": { "tags": { - "name": "BCI", - "amenity": "bank" + "name": "The Kings Head", + "amenity": "pub" }, - "name": "BCI", - "icon": "bank", + "name": "The Kings Head", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/BCR": { + "amenity/pub/The Castle": { "tags": { - "name": "BCR", - "amenity": "bank" + "name": "The Castle", + "amenity": "pub" }, - "name": "BCR", - "icon": "bank", + "name": "The Castle", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/BDO": { + "amenity/pub/The Railway": { "tags": { - "name": "BDO", - "amenity": "bank" + "name": "The Railway", + "amenity": "pub" }, - "name": "BDO", - "icon": "bank", + "name": "The Railway", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/BES": { + "amenity/pub/The White Lion": { "tags": { - "name": "BES", - "amenity": "bank" + "name": "The White Lion", + "amenity": "pub" }, - "name": "BES", - "icon": "bank", + "name": "The White Lion", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/BMO": { + "amenity/pub/The Bell": { "tags": { - "name": "BMO", - "amenity": "bank" + "name": "The Bell", + "amenity": "pub" }, - "name": "BMO", - "icon": "bank", + "name": "The Bell", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/BNL": { + "amenity/pub/The Bull": { "tags": { - "name": "BNL", - "amenity": "bank" + "name": "The Bull", + "amenity": "pub" }, - "name": "BNL", - "icon": "bank", + "name": "The Bull", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/BNP": { + "amenity/pub/The Plough": { "tags": { - "name": "BNP", - "amenity": "bank" + "name": "The Plough", + "amenity": "pub" }, - "name": "BNP", - "icon": "bank", + "name": "The Plough", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/BNP Paribas": { + "amenity/pub/The George": { "tags": { - "name": "BNP Paribas", - "amenity": "bank" + "name": "The George", + "amenity": "pub" }, - "name": "BNP Paribas", - "icon": "bank", + "name": "The George", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/BNP Paribas Fortis": { + "amenity/pub/The Royal Oak": { "tags": { - "name": "BNP Paribas Fortis", - "amenity": "bank" + "name": "The Royal Oak", + "amenity": "pub" }, - "name": "BNP Paribas Fortis", - "icon": "bank", + "name": "The Royal Oak", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/BPI": { + "amenity/pub/The Fox": { "tags": { - "name": "BPI", - "amenity": "bank" + "name": "The Fox", + "amenity": "pub" }, - "name": "BPI", - "icon": "bank", + "name": "The Fox", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/BRD": { + "amenity/pub/Prince of Wales": { "tags": { - "name": "BRD", - "amenity": "bank" + "name": "Prince of Wales", + "amenity": "pub" }, - "name": "BRD", - "icon": "bank", + "name": "Prince of Wales", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/BW-Bank": { + "amenity/pub/The Rising Sun": { "tags": { - "name": "BW-Bank", - "amenity": "bank" + "name": "The Rising Sun", + "amenity": "pub" }, - "name": "BW-Bank", - "icon": "bank", + "name": "The Rising Sun", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/BZ WBK": { + "amenity/pub/The Prince of Wales": { "tags": { - "name": "BZ WBK", - "amenity": "bank" + "name": "The Prince of Wales", + "amenity": "pub" }, - "name": "BZ WBK", - "icon": "bank", + "name": "The Prince of Wales", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Banamex": { + "amenity/pub/The Crown": { "tags": { - "name": "Banamex", - "amenity": "bank" + "name": "The Crown", + "amenity": "pub" }, - "name": "Banamex", - "icon": "bank", + "name": "The Crown", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Banca Intesa": { + "amenity/pub/The Chequers": { "tags": { - "name": "Banca Intesa", - "amenity": "bank" + "name": "The Chequers", + "amenity": "pub" }, - "name": "Banca Intesa", - "icon": "bank", + "name": "The Chequers", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Banca Popolare di Novara": { + "amenity/pub/The Swan": { "tags": { - "name": "Banca Popolare di Novara", - "amenity": "bank" + "name": "The Swan", + "amenity": "pub" }, - "name": "Banca Popolare di Novara", - "icon": "bank", + "name": "The Swan", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Banca Popolare di Vicenza": { + "amenity/pub/Rose and Crown": { "tags": { - "name": "Banca Popolare di Vicenza", - "amenity": "bank" + "name": "Rose and Crown", + "amenity": "pub" }, - "name": "Banca Popolare di Vicenza", - "icon": "bank", + "name": "Rose and Crown", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Banca Transilvania": { + "amenity/pub/The Victoria": { "tags": { - "name": "Banca Transilvania", - "amenity": "bank" + "name": "The Victoria", + "amenity": "pub" }, - "name": "Banca Transilvania", - "icon": "bank", + "name": "The Victoria", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Bancaja": { + "amenity/pub/New Inn": { "tags": { - "name": "Bancaja", - "amenity": "bank" + "name": "New Inn", + "amenity": "pub" }, - "name": "Bancaja", - "icon": "bank", + "name": "New Inn", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Banco BCI": { + "amenity/pub/Royal Hotel": { "tags": { - "name": "Banco BCI", - "amenity": "bank" + "name": "Royal Hotel", + "amenity": "pub" }, - "name": "Banco BCI", - "icon": "bank", + "name": "Royal Hotel", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Banco Estado": { + "amenity/pub/Cross Keys": { "tags": { - "name": "Banco Estado", - "amenity": "bank" + "name": "Cross Keys", + "amenity": "pub" }, - "name": "Banco Estado", - "icon": "bank", + "name": "Cross Keys", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Banco G&T Continental": { + "amenity/pub/The Greyhound": { "tags": { - "name": "Banco G&T Continental", - "amenity": "bank" + "name": "The Greyhound", + "amenity": "pub" }, - "name": "Banco G&T Continental", - "icon": "bank", + "name": "The Greyhound", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Banco Itaú": { + "amenity/pub/The Black Horse": { "tags": { - "name": "Banco Itaú", - "amenity": "bank" + "name": "The Black Horse", + "amenity": "pub" }, - "name": "Banco Itaú", - "icon": "bank", + "name": "The Black Horse", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Banco Nación": { + "amenity/pub/The New Inn": { "tags": { - "name": "Banco Nación", - "amenity": "bank" + "name": "The New Inn", + "amenity": "pub" }, - "name": "Banco Nación", - "icon": "bank", + "name": "The New Inn", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Banco Pastor": { + "amenity/pub/Kings Head": { "tags": { - "name": "Banco Pastor", - "amenity": "bank" + "name": "Kings Head", + "amenity": "pub" }, - "name": "Banco Pastor", - "icon": "bank", + "name": "Kings Head", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Banco Popular": { + "amenity/pub/The Angel": { "tags": { - "name": "Banco Popular", - "amenity": "bank" + "name": "The Angel", + "amenity": "pub" }, - "name": "Banco Popular", - "icon": "bank", + "name": "The Angel", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Banco Provincia": { + "amenity/pub/The Queens Head": { "tags": { - "name": "Banco Provincia", - "amenity": "bank" + "name": "The Queens Head", + "amenity": "pub" }, - "name": "Banco Provincia", - "icon": "bank", + "name": "The Queens Head", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Banco Santander": { + "amenity/pub/The Ship Inn": { "tags": { - "name": "Banco Santander", - "amenity": "bank" + "name": "The Ship Inn", + "amenity": "pub" }, - "name": "Banco Santander", - "icon": "bank", + "name": "The Ship Inn", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Banco de Chile": { + "amenity/pub/Rose & Crown": { "tags": { - "name": "Banco de Chile", - "amenity": "bank" + "name": "Rose & Crown", + "amenity": "pub" }, - "name": "Banco de Chile", - "icon": "bank", + "name": "Rose & Crown", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Banco de Costa Rica": { + "amenity/pub/Queens Head": { "tags": { - "name": "Banco de Costa Rica", - "amenity": "bank" + "name": "Queens Head", + "amenity": "pub" }, - "name": "Banco de Costa Rica", - "icon": "bank", + "name": "Queens Head", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/bank/Banco de Desarrollo Banrural": { + "amenity/pub/Irish Pub": { "tags": { - "name": "Banco de Desarrollo Banrural", - "amenity": "bank" + "name": "Irish Pub", + "amenity": "pub" }, - "name": "Banco de Desarrollo Banrural", - "icon": "bank", + "name": "Irish Pub", + "icon": "beer", "geometry": [ "point", "vertex", "area" ], "fields": [ - "atm", "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Banco do Brasil": { - "tags": { - "name": "Banco do Brasil", - "amenity": "bank" - }, - "name": "Banco do Brasil", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/BancoEstado": { - "tags": { - "name": "BancoEstado", - "amenity": "bank" - }, - "name": "BancoEstado", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Bancolombia": { - "tags": { - "name": "Bancolombia", - "amenity": "bank" - }, - "name": "Bancolombia", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Bancomer": { - "tags": { - "name": "Bancomer", - "amenity": "bank" - }, - "name": "Bancomer", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Bancpost": { - "tags": { - "name": "Bancpost", - "amenity": "bank" - }, - "name": "Bancpost", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Banesco": { - "tags": { - "name": "Banesco", - "amenity": "bank" - }, - "name": "Banesco", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Banesto": { - "tags": { - "name": "Banesto", - "amenity": "bank" - }, - "name": "Banesto", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Bank Austria": { - "tags": { - "name": "Bank Austria", - "amenity": "bank" - }, - "name": "Bank Austria", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Bank Mandiri": { - "tags": { - "name": "Bank Mandiri", - "amenity": "bank" - }, - "name": "Bank Mandiri", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Bank Spółdzielczy": { - "tags": { - "name": "Bank Spółdzielczy", - "amenity": "bank" - }, - "name": "Bank Spółdzielczy", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Bank of America": { - "tags": { - "name": "Bank of America", - "amenity": "bank" - }, - "name": "Bank of America", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Bank of Ireland": { - "tags": { - "name": "Bank of Ireland", - "amenity": "bank" - }, - "name": "Bank of Ireland", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Bank of Montreal": { - "tags": { - "name": "Bank of Montreal", - "amenity": "bank" - }, - "name": "Bank of Montreal", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Bank of Scotland": { - "tags": { - "name": "Bank of Scotland", - "amenity": "bank" - }, - "name": "Bank of Scotland", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Bankia": { - "tags": { - "name": "Bankia", - "amenity": "bank" - }, - "name": "Bankia", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Bankinter": { - "tags": { - "name": "Bankinter", - "amenity": "bank" - }, - "name": "Bankinter", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Banorte": { - "tags": { - "name": "Banorte", - "amenity": "bank" - }, - "name": "Banorte", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Banque Nationale": { - "tags": { - "name": "Banque Nationale", - "amenity": "bank" - }, - "name": "Banque Nationale", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Banque Populaire": { - "tags": { - "name": "Banque Populaire", - "amenity": "bank" - }, - "name": "Banque Populaire", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Barclays": { - "tags": { - "name": "Barclays", - "amenity": "bank" - }, - "name": "Barclays", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Belfius": { - "tags": { - "name": "Belfius", - "amenity": "bank" - }, - "name": "Belfius", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Bendigo Bank": { - "tags": { - "name": "Bendigo Bank", - "amenity": "bank" - }, - "name": "Bendigo Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Berliner Sparkasse": { - "tags": { - "name": "Berliner Sparkasse", - "amenity": "bank" - }, - "name": "Berliner Sparkasse", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Berliner Volksbank": { - "tags": { - "name": "Berliner Volksbank", - "amenity": "bank" - }, - "name": "Berliner Volksbank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Bicentenario": { - "tags": { - "name": "Bicentenario", - "amenity": "bank" - }, - "name": "Bicentenario", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Bradesco": { - "tags": { - "name": "Bradesco", - "amenity": "bank" - }, - "name": "Bradesco", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/CIBC": { - "tags": { - "name": "CIBC", - "amenity": "bank" - }, - "name": "CIBC", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/CIC": { - "tags": { - "name": "CIC", - "amenity": "bank" - }, - "name": "CIC", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Caisse d'Épargne": { - "tags": { - "name": "Caisse d'Épargne", - "amenity": "bank" - }, - "name": "Caisse d'Épargne", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Caixa": { - "tags": { - "name": "Caixa", - "amenity": "bank" - }, - "name": "Caixa", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Caja Círculo": { - "tags": { - "name": "Caja Círculo", - "amenity": "bank" - }, - "name": "Caja Círculo", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Caja Duero": { - "tags": { - "name": "Caja Duero", - "amenity": "bank" - }, - "name": "Caja Duero", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Caja Madrid": { - "tags": { - "name": "Caja Madrid", - "amenity": "bank" - }, - "name": "Caja Madrid", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Caja Rural": { - "tags": { - "name": "Caja Rural", - "amenity": "bank" - }, - "name": "Caja Rural", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Caja de Burgos": { - "tags": { - "name": "Caja de Burgos", - "amenity": "bank" - }, - "name": "Caja de Burgos", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Cajamar": { - "tags": { - "name": "Cajamar", - "amenity": "bank" - }, - "name": "Cajamar", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Cajero Automatico Bancared": { - "tags": { - "name": "Cajero Automatico Bancared", - "amenity": "bank" - }, - "name": "Cajero Automatico Bancared", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Canara Bank": { - "tags": { - "name": "Canara Bank", - "amenity": "bank" - }, - "name": "Canara Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Chase": { - "tags": { - "name": "Chase", - "amenity": "bank" - }, - "name": "Chase", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/China Bank": { - "tags": { - "name": "China Bank", - "amenity": "bank" - }, - "name": "China Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Chinabank": { - "tags": { - "name": "Chinabank", - "amenity": "bank" - }, - "name": "Chinabank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Citibank": { - "tags": { - "name": "Citibank", - "amenity": "bank" - }, - "name": "Citibank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Citizens Bank": { - "tags": { - "name": "Citizens Bank", - "amenity": "bank" - }, - "name": "Citizens Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/CityCommerce Bank": { - "tags": { - "name": "CityCommerce Bank", - "amenity": "bank" - }, - "name": "CityCommerce Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Commerzbank": { - "tags": { - "name": "Commerzbank", - "amenity": "bank" - }, - "name": "Commerzbank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Commonwealth Bank": { - "tags": { - "name": "Commonwealth Bank", - "amenity": "bank" - }, - "name": "Commonwealth Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Credit Agricole": { - "tags": { - "name": "Credit Agricole", - "amenity": "bank" - }, - "name": "Credit Agricole", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Credit Suisse": { - "tags": { - "name": "Credit Suisse", - "amenity": "bank" - }, - "name": "Credit Suisse", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Crédit Agricole": { - "tags": { - "name": "Crédit Agricole", - "amenity": "bank" - }, - "name": "Crédit Agricole", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Crédit Mutuel": { - "tags": { - "name": "Crédit Mutuel", - "amenity": "bank" - }, - "name": "Crédit Mutuel", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Danske Bank": { - "tags": { - "name": "Danske Bank", - "amenity": "bank" - }, - "name": "Danske Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Davivienda": { - "tags": { - "name": "Davivienda", - "amenity": "bank" - }, - "name": "Davivienda", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/De Venezuela": { - "tags": { - "name": "De Venezuela", - "amenity": "bank" - }, - "name": "De Venezuela", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Del Tesoro": { - "tags": { - "name": "Del Tesoro", - "amenity": "bank" - }, - "name": "Del Tesoro", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Deutsche Bank": { - "tags": { - "name": "Deutsche Bank", - "amenity": "bank" - }, - "name": "Deutsche Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Dresdner Bank": { - "tags": { - "name": "Dresdner Bank", - "amenity": "bank" - }, - "name": "Dresdner Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Ecobank": { - "tags": { - "name": "Ecobank", - "amenity": "bank" - }, - "name": "Ecobank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Erste Bank": { - "tags": { - "name": "Erste Bank", - "amenity": "bank" - }, - "name": "Erste Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Eurobank": { - "tags": { - "name": "Eurobank", - "amenity": "bank" - }, - "name": "Eurobank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/FNB": { - "tags": { - "name": "FNB", - "amenity": "bank" - }, - "name": "FNB", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Fifth Third Bank": { - "tags": { - "name": "Fifth Third Bank", - "amenity": "bank" - }, - "name": "Fifth Third Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/First National Bank": { - "tags": { - "name": "First National Bank", - "amenity": "bank" - }, - "name": "First National Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/GE Money Bank": { - "tags": { - "name": "GE Money Bank", - "amenity": "bank" - }, - "name": "GE Money Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/HDFC Bank": { - "tags": { - "name": "HDFC Bank", - "amenity": "bank" - }, - "name": "HDFC Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/HSBC": { - "tags": { - "name": "HSBC", - "amenity": "bank" - }, - "name": "HSBC", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Halifax": { - "tags": { - "name": "Halifax", - "amenity": "bank" - }, - "name": "Halifax", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Hamburger Sparkasse": { - "tags": { - "name": "Hamburger Sparkasse", - "amenity": "bank" - }, - "name": "Hamburger Sparkasse", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Handelsbanken": { - "tags": { - "name": "Handelsbanken", - "amenity": "bank" - }, - "name": "Handelsbanken", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/HypoVereinsbank": { - "tags": { - "name": "HypoVereinsbank", - "amenity": "bank" - }, - "name": "HypoVereinsbank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/ICICI Bank": { - "tags": { - "name": "ICICI Bank", - "amenity": "bank" - }, - "name": "ICICI Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/ING": { - "tags": { - "name": "ING", - "amenity": "bank" - }, - "name": "ING", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Ibercaja": { - "tags": { - "name": "Ibercaja", - "amenity": "bank" - }, - "name": "Ibercaja", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Intesa San Paolo": { - "tags": { - "name": "Intesa San Paolo", - "amenity": "bank" - }, - "name": "Intesa San Paolo", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Itaú": { - "tags": { - "name": "Itaú", - "amenity": "bank" - }, - "name": "Itaú", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/KBC": { - "tags": { - "name": "KBC", - "amenity": "bank" - }, - "name": "KBC", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Key Bank": { - "tags": { - "name": "Key Bank", - "amenity": "bank" - }, - "name": "Key Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Komerční banka": { - "tags": { - "name": "Komerční banka", - "amenity": "bank" - }, - "name": "Komerční banka", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Kreissparkasse": { - "tags": { - "name": "Kreissparkasse", - "amenity": "bank" - }, - "name": "Kreissparkasse", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Kreissparkasse Köln": { - "tags": { - "name": "Kreissparkasse Köln", - "amenity": "bank" - }, - "name": "Kreissparkasse Köln", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/LCL": { - "tags": { - "name": "LCL", - "amenity": "bank" - }, - "name": "LCL", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/La Banque Postale": { - "tags": { - "name": "La Banque Postale", - "amenity": "bank" - }, - "name": "La Banque Postale", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/La Caixa": { - "tags": { - "name": "La Caixa", - "amenity": "bank" - }, - "name": "La Caixa", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Landbank": { - "tags": { - "name": "Landbank", - "amenity": "bank" - }, - "name": "Landbank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Lloyds Bank": { - "tags": { - "name": "Lloyds Bank", - "amenity": "bank" - }, - "name": "Lloyds Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/M&T Bank": { - "tags": { - "name": "M&T Bank", - "amenity": "bank" - }, - "name": "M&T Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Maybank": { - "tags": { - "name": "Maybank", - "amenity": "bank" - }, - "name": "Maybank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Mercantil": { - "tags": { - "name": "Mercantil", - "amenity": "bank" - }, - "name": "Mercantil", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Metrobank": { - "tags": { - "name": "Metrobank", - "amenity": "bank" - }, - "name": "Metrobank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Millenium Bank": { - "tags": { - "name": "Millenium Bank", - "amenity": "bank" - }, - "name": "Millenium Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Millennium Bank": { - "tags": { - "name": "Millennium Bank", - "amenity": "bank" - }, - "name": "Millennium Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/NAB": { - "tags": { - "name": "NAB", - "amenity": "bank" - }, - "name": "NAB", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/NatWest": { - "tags": { - "name": "NatWest", - "amenity": "bank" - }, - "name": "NatWest", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/National Bank": { - "tags": { - "name": "National Bank", - "amenity": "bank" - }, - "name": "National Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Nationwide": { - "tags": { - "name": "Nationwide", - "amenity": "bank" - }, - "name": "Nationwide", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Nedbank": { - "tags": { - "name": "Nedbank", - "amenity": "bank" - }, - "name": "Nedbank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Nordea": { - "tags": { - "name": "Nordea", - "amenity": "bank" - }, - "name": "Nordea", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/OLB": { - "tags": { - "name": "OLB", - "amenity": "bank" - }, - "name": "OLB", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/OTP": { - "tags": { - "name": "OTP", - "amenity": "bank" - }, - "name": "OTP", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Oberbank": { - "tags": { - "name": "Oberbank", - "amenity": "bank" - }, - "name": "Oberbank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Oldenburgische Landesbank": { - "tags": { - "name": "Oldenburgische Landesbank", - "amenity": "bank" - }, - "name": "Oldenburgische Landesbank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Osuuspankki": { - "tags": { - "name": "Osuuspankki", - "amenity": "bank" - }, - "name": "Osuuspankki", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/PKO BP": { - "tags": { - "name": "PKO BP", - "amenity": "bank" - }, - "name": "PKO BP", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/PNB": { - "tags": { - "name": "PNB", - "amenity": "bank" - }, - "name": "PNB", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/PNC Bank": { - "tags": { - "name": "PNC Bank", - "amenity": "bank" - }, - "name": "PNC Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/PSBank": { - "tags": { - "name": "PSBank", - "amenity": "bank" - }, - "name": "PSBank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Pekao SA": { - "tags": { - "name": "Pekao SA", - "amenity": "bank" - }, - "name": "Pekao SA", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Peoples Bank": { - "tags": { - "name": "Peoples Bank", - "amenity": "bank" - }, - "name": "Peoples Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Postbank": { - "tags": { - "name": "Postbank", - "amenity": "bank" - }, - "name": "Postbank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/RBC": { - "tags": { - "name": "RBC", - "amenity": "bank" - }, - "name": "RBC", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/RBS": { - "tags": { - "name": "RBS", - "amenity": "bank" - }, - "name": "RBS", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/RCBC": { - "tags": { - "name": "RCBC", - "amenity": "bank" - }, - "name": "RCBC", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Rabobank": { - "tags": { - "name": "Rabobank", - "amenity": "bank" - }, - "name": "Rabobank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Raiffeisenbank": { - "tags": { - "name": "Raiffeisenbank", - "amenity": "bank" - }, - "name": "Raiffeisenbank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Regions Bank": { - "tags": { - "name": "Regions Bank", - "amenity": "bank" - }, - "name": "Regions Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Royal Bank": { - "tags": { - "name": "Royal Bank", - "amenity": "bank" - }, - "name": "Royal Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/SEB": { - "tags": { - "name": "SEB", - "amenity": "bank" - }, - "name": "SEB", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Santander": { - "tags": { - "name": "Santander", - "amenity": "bank" - }, - "name": "Santander", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Santander Consumer Bank": { - "tags": { - "name": "Santander Consumer Bank", - "amenity": "bank" - }, - "name": "Santander Consumer Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Santander Totta": { - "tags": { - "name": "Santander Totta", - "amenity": "bank" - }, - "name": "Santander Totta", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Sberbank": { - "tags": { - "name": "Sberbank", - "amenity": "bank" - }, - "name": "Sberbank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Scotiabank": { - "tags": { - "name": "Scotiabank", - "amenity": "bank" - }, - "name": "Scotiabank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Security Bank": { - "tags": { - "name": "Security Bank", - "amenity": "bank" - }, - "name": "Security Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Slovenská sporiteľňa": { - "tags": { - "name": "Slovenská sporiteľňa", - "amenity": "bank" - }, - "name": "Slovenská sporiteľňa", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Sparda-Bank": { - "tags": { - "name": "Sparda-Bank", - "amenity": "bank" - }, - "name": "Sparda-Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Sparkasse": { - "tags": { - "name": "Sparkasse", - "amenity": "bank" - }, - "name": "Sparkasse", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Sparkasse Aachen": { - "tags": { - "name": "Sparkasse Aachen", - "amenity": "bank" - }, - "name": "Sparkasse Aachen", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Sparkasse KölnBonn": { - "tags": { - "name": "Sparkasse KölnBonn", - "amenity": "bank" - }, - "name": "Sparkasse KölnBonn", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Stadtsparkasse": { - "tags": { - "name": "Stadtsparkasse", - "amenity": "bank" - }, - "name": "Stadtsparkasse", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Standard Bank": { - "tags": { - "name": "Standard Bank", - "amenity": "bank" - }, - "name": "Standard Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/SunTrust": { - "tags": { - "name": "SunTrust", - "amenity": "bank" - }, - "name": "SunTrust", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/SunTrust Bank": { - "tags": { - "name": "SunTrust Bank", - "amenity": "bank" - }, - "name": "SunTrust Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Swedbank": { - "tags": { - "name": "Swedbank", - "amenity": "bank" - }, - "name": "Swedbank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/TD Bank": { - "tags": { - "name": "TD Bank", - "amenity": "bank" - }, - "name": "TD Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/TD Canada Trust": { - "tags": { - "name": "TD Canada Trust", - "amenity": "bank" - }, - "name": "TD Canada Trust", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/TSB": { - "tags": { - "name": "TSB", - "amenity": "bank" - }, - "name": "TSB", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Targobank": { - "tags": { - "name": "Targobank", - "amenity": "bank" - }, - "name": "Targobank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Tatra banka": { - "tags": { - "name": "Tatra banka", - "amenity": "bank" - }, - "name": "Tatra banka", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/UBS": { - "tags": { - "name": "UBS", - "amenity": "bank" - }, - "name": "UBS", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/UCPB": { - "tags": { - "name": "UCPB", - "amenity": "bank" - }, - "name": "UCPB", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/US Bank": { - "tags": { - "name": "US Bank", - "amenity": "bank" - }, - "name": "US Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Ulster Bank": { - "tags": { - "name": "Ulster Bank", - "amenity": "bank" - }, - "name": "Ulster Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/UniCredit Bank": { - "tags": { - "name": "UniCredit Bank", - "amenity": "bank" - }, - "name": "UniCredit Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Unicredit Banca": { - "tags": { - "name": "Unicredit Banca", - "amenity": "bank" - }, - "name": "Unicredit Banca", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Unicaja": { - "tags": { - "name": "Unicaja", - "amenity": "bank" - }, - "name": "Unicaja", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Union Bank": { - "tags": { - "name": "Union Bank", - "amenity": "bank" - }, - "name": "Union Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/VR-Bank": { - "tags": { - "name": "VR-Bank", - "amenity": "bank" - }, - "name": "VR-Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Volksbank": { - "tags": { - "name": "Volksbank", - "amenity": "bank" - }, - "name": "Volksbank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/VÚB": { - "tags": { - "name": "VÚB", - "amenity": "bank" - }, - "name": "VÚB", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Wachovia": { - "tags": { - "name": "Wachovia", - "amenity": "bank" - }, - "name": "Wachovia", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Wells Fargo": { - "tags": { - "name": "Wells Fargo", - "amenity": "bank" - }, - "name": "Wells Fargo", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Western Union": { - "tags": { - "name": "Western Union", - "amenity": "bank" - }, - "name": "Western Union", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Westpac": { - "tags": { - "name": "Westpac", - "amenity": "bank" - }, - "name": "Westpac", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Yorkshire Bank": { - "tags": { - "name": "Yorkshire Bank", - "amenity": "bank" - }, - "name": "Yorkshire Bank", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/ČSOB": { - "tags": { - "name": "ČSOB", - "amenity": "bank" - }, - "name": "ČSOB", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Česká spořitelna": { - "tags": { - "name": "Česká spořitelna", - "amenity": "bank" - }, - "name": "Česká spořitelna", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Альфа-Банк": { - "tags": { - "name": "Альфа-Банк", - "amenity": "bank" - }, - "name": "Альфа-Банк", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Банк Москвы": { - "tags": { - "name": "Банк Москвы", - "amenity": "bank" - }, - "name": "Банк Москвы", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Белагропромбанк": { - "tags": { - "name": "Белагропромбанк", - "amenity": "bank" - }, - "name": "Белагропромбанк", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Беларусбанк": { - "tags": { - "name": "Беларусбанк", - "amenity": "bank" - }, - "name": "Беларусбанк", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/ВТБ": { - "tags": { - "name": "ВТБ", - "amenity": "bank" - }, - "name": "ВТБ", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/ВТБ24": { - "tags": { - "name": "ВТБ24", - "amenity": "bank" - }, - "name": "ВТБ24", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Возрождение": { - "tags": { - "name": "Возрождение", - "amenity": "bank" - }, - "name": "Возрождение", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Газпромбанк": { - "tags": { - "name": "Газпромбанк", - "amenity": "bank" - }, - "name": "Газпромбанк", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Ощадбанк": { - "tags": { - "name": "Ощадбанк", - "amenity": "bank" - }, - "name": "Ощадбанк", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/ПриватБанк": { - "tags": { - "name": "ПриватБанк", - "amenity": "bank" - }, - "name": "ПриватБанк", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Промсвязьбанк": { - "tags": { - "name": "Промсвязьбанк", - "amenity": "bank" - }, - "name": "Промсвязьбанк", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Райффайзен Банк Аваль": { - "tags": { - "name": "Райффайзен Банк Аваль", - "amenity": "bank" - }, - "name": "Райффайзен Банк Аваль", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Росбанк": { - "tags": { - "name": "Росбанк", - "amenity": "bank" - }, - "name": "Росбанк", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Россельхозбанк": { - "tags": { - "name": "Россельхозбанк", - "amenity": "bank" - }, - "name": "Россельхозбанк", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Сбербанк": { - "tags": { - "name": "Сбербанк", - "amenity": "bank" - }, - "name": "Сбербанк", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Совкомбанк": { - "tags": { - "name": "Совкомбанк", - "amenity": "bank" - }, - "name": "Совкомбанк", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/УкрСиббанк": { - "tags": { - "name": "УкрСиббанк", - "amenity": "bank" - }, - "name": "УкрСиббанк", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/Уралсиб": { - "tags": { - "name": "Уралсиб", - "amenity": "bank" - }, - "name": "Уралсиб", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/ლიბერთი ბანკი": { - "tags": { - "name": "ლიბერთი ბანკი", - "name:en": "Liberty Bank", - "amenity": "bank" - }, - "name": "ლიბერთი ბანკი", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/みずほ銀行": { - "tags": { - "name": "みずほ銀行", - "amenity": "bank" - }, - "name": "みずほ銀行", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/りそな銀行": { - "tags": { - "name": "りそな銀行", - "name:en": "Mizuho Bank", - "amenity": "bank" - }, - "name": "りそな銀行", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/三井住友銀行": { - "tags": { - "name": "三井住友銀行", - "amenity": "bank" - }, - "name": "三井住友銀行", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/三菱東京UFJ銀行": { - "tags": { - "name": "三菱東京UFJ銀行", - "amenity": "bank" - }, - "name": "三菱東京UFJ銀行", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/中国银行": { - "tags": { - "name": "中国银行", - "amenity": "bank" - }, - "name": "中国银行", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/광주은행": { - "tags": { - "name": "광주은행", - "name:en": "Gwangju Bank", - "amenity": "bank" - }, - "name": "광주은행", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/국민은행": { - "tags": { - "name": "국민은행", - "name:en": "Gungmin Bank", - "amenity": "bank" - }, - "name": "국민은행", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/농협": { - "tags": { - "name": "농협", - "amenity": "bank" - }, - "name": "농협", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/신한은행": { - "tags": { - "name": "신한은행", - "name:en": "Sinhan Bank", - "amenity": "bank" - }, - "name": "신한은행", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/우리은행": { - "tags": { - "name": "우리은행", - "name:en": "Uri Bank", - "amenity": "bank" - }, - "name": "우리은행", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/중소기업은행": { - "tags": { - "name": "중소기업은행", - "name:en": "Industrial Bank of Korea", - "amenity": "bank" - }, - "name": "중소기업은행", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/bank/하나은행": { - "tags": { - "name": "하나은행", - "amenity": "bank" - }, - "name": "하나은행", - "icon": "bank", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "atm", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Cafe Amazon": { - "tags": { - "name": "Cafe Amazon", - "amenity": "cafe" - }, - "name": "Cafe Amazon", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Cafe Coffee Day": { - "tags": { - "name": "Cafe Coffee Day", - "amenity": "cafe" - }, - "name": "Cafe Coffee Day", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Cafeteria": { - "tags": { - "name": "Cafeteria", - "amenity": "cafe" - }, - "name": "Cafeteria", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Caffè Nero": { - "tags": { - "name": "Caffè Nero", - "amenity": "cafe" - }, - "name": "Caffè Nero", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Café Central": { - "tags": { - "name": "Café Central", - "amenity": "cafe" - }, - "name": "Café Central", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Caribou Coffee": { - "tags": { - "name": "Caribou Coffee", - "amenity": "cafe" - }, - "name": "Caribou Coffee", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Coffee Time": { - "tags": { - "name": "Coffee Time", - "amenity": "cafe" - }, - "name": "Coffee Time", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Costa": { - "tags": { - "name": "Costa", - "amenity": "cafe" - }, - "name": "Costa", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Dunkin Donuts": { - "tags": { - "name": "Dunkin Donuts", - "cuisine": "donut", - "amenity": "cafe" - }, - "name": "Dunkin Donuts", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Eiscafe": { - "tags": { - "name": "Eiscafe", - "amenity": "cafe" - }, - "name": "Eiscafe", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Eiscafe Venezia": { - "tags": { - "name": "Eiscafe Venezia", - "amenity": "cafe" - }, - "name": "Eiscafe Venezia", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Eisdiele": { - "tags": { - "name": "Eisdiele", - "amenity": "cafe" - }, - "name": "Eisdiele", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Pret A Manger": { - "tags": { - "name": "Pret A Manger", - "amenity": "cafe" - }, - "name": "Pret A Manger", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Second Cup": { - "tags": { - "name": "Second Cup", - "amenity": "cafe" - }, - "name": "Second Cup", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Segafredo": { - "tags": { - "name": "Segafredo", - "amenity": "cafe" - }, - "name": "Segafredo", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Starbucks": { - "tags": { - "name": "Starbucks", - "cuisine": "coffee_shop", - "amenity": "cafe" - }, - "name": "Starbucks", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Tchibo": { - "tags": { - "name": "Tchibo", - "amenity": "cafe" - }, - "name": "Tchibo", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Traveler's Coffee": { - "tags": { - "name": "Traveler's Coffee", - "amenity": "cafe" - }, - "name": "Traveler's Coffee", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Кафе": { - "tags": { - "name": "Кафе", - "amenity": "cafe" - }, - "name": "Кафе", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Кофе Хауз": { - "tags": { - "name": "Кофе Хауз", - "amenity": "cafe" - }, - "name": "Кофе Хауз", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Столовая": { - "tags": { - "name": "Столовая", - "amenity": "cafe" - }, - "name": "Столовая", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Шашлычная": { - "tags": { - "name": "Шашлычная", - "amenity": "cafe" - }, - "name": "Шашлычная", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/Шоколадница": { - "tags": { - "name": "Шоколадница", - "amenity": "cafe" - }, - "name": "Шоколадница", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/คาเฟ่ อเมซอน": { - "tags": { - "name": "คาเฟ่ อเมซอน", - "amenity": "cafe" - }, - "name": "คาเฟ่ อเมซอน", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/カフェ・ド・クリエ": { - "tags": { - "name": "カフェ・ド・クリエ", - "name:en": "Cafe de CRIE", - "amenity": "cafe" - }, - "name": "カフェ・ド・クリエ", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/スターバックス": { - "tags": { - "name": "スターバックス", - "name:en": "Starbucks", - "amenity": "cafe" - }, - "name": "スターバックス", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/cafe/ドトール": { - "tags": { - "name": "ドトール", - "name:en": "DOUTOR", - "amenity": "cafe" - }, - "name": "ドトール", - "icon": "cafe", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "internet_access", - "building_area", - "address" - ], - "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/Budget": { - "tags": { - "name": "Budget", - "amenity": "car_rental" - }, - "name": "Budget", - "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/Europcar": { - "tags": { - "name": "Europcar", - "amenity": "car_rental" - }, - "name": "Europcar", - "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/Sixt": { - "tags": { - "name": "Sixt", - "amenity": "car_rental" - }, - "name": "Sixt", - "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/fast_food/A&W": { - "tags": { - "name": "A&W", - "amenity": "fast_food" - }, - "name": "A&W", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Ali Baba": { - "tags": { - "name": "Ali Baba", - "amenity": "fast_food" - }, - "name": "Ali Baba", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Arby's": { - "tags": { - "name": "Arby's", - "amenity": "fast_food" - }, - "name": "Arby's", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Asia Imbiss": { - "tags": { - "name": "Asia Imbiss", - "amenity": "fast_food" - }, - "name": "Asia Imbiss", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Baskin Robbins": { - "tags": { - "name": "Baskin Robbins", - "amenity": "fast_food" - }, - "name": "Baskin Robbins", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Boston Market": { - "tags": { - "name": "Boston Market", - "amenity": "fast_food" - }, - "name": "Boston Market", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Burger King": { - "tags": { - "name": "Burger King", - "cuisine": "burger", - "amenity": "fast_food" - }, - "name": "Burger King", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Chipotle": { - "tags": { - "name": "Chipotle", - "cuisine": "mexican", - "amenity": "fast_food" - }, - "name": "Chipotle", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Chowking": { - "tags": { - "name": "Chowking", - "amenity": "fast_food" - }, - "name": "Chowking", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Culver's": { - "tags": { - "name": "Culver's", - "amenity": "fast_food" - }, - "name": "Culver's", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Dairy Queen": { - "tags": { - "name": "Dairy Queen", - "amenity": "fast_food" - }, - "name": "Dairy Queen", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Del Taco": { - "tags": { - "name": "Del Taco", - "amenity": "fast_food" - }, - "name": "Del Taco", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Döner": { - "tags": { - "name": "Döner", - "amenity": "fast_food" - }, - "name": "Döner", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Fish & Chips": { - "tags": { - "name": "Fish & Chips", - "amenity": "fast_food" - }, - "name": "Fish & Chips", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Five Guys": { - "tags": { - "name": "Five Guys", - "amenity": "fast_food" - }, - "name": "Five Guys", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Hallo Pizza": { - "tags": { - "name": "Hallo Pizza", - "amenity": "fast_food" - }, - "name": "Hallo Pizza", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Hardee's": { - "tags": { - "name": "Hardee's", - "cuisine": "burger", - "amenity": "fast_food" - }, - "name": "Hardee's", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Harvey's": { - "tags": { - "name": "Harvey's", - "amenity": "fast_food" - }, - "name": "Harvey's", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Hesburger": { - "tags": { - "name": "Hesburger", - "amenity": "fast_food" - }, - "name": "Hesburger", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Hungry Jacks": { - "tags": { - "name": "Hungry Jacks", - "cuisine": "burger", - "amenity": "fast_food" - }, - "name": "Hungry Jacks", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Imbiss": { - "tags": { - "name": "Imbiss", - "amenity": "fast_food" - }, - "name": "Imbiss", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Istanbul": { - "tags": { - "name": "Istanbul", - "amenity": "fast_food" - }, - "name": "Istanbul", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Jamba Juice": { - "tags": { - "name": "Jamba Juice", - "amenity": "fast_food" - }, - "name": "Jamba Juice", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Jollibee": { - "tags": { - "name": "Jollibee", - "amenity": "fast_food" - }, - "name": "Jollibee", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/KFC": { - "tags": { - "name": "KFC", - "cuisine": "chicken", - "amenity": "fast_food" - }, - "name": "KFC", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Kebab": { - "tags": { - "name": "Kebab", - "amenity": "fast_food" - }, - "name": "Kebab", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Kochlöffel": { - "tags": { - "name": "Kochlöffel", - "amenity": "fast_food" - }, - "name": "Kochlöffel", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Kotipizza": { - "tags": { - "name": "Kotipizza", - "amenity": "fast_food" - }, - "name": "Kotipizza", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Little Caesars": { - "tags": { - "name": "Little Caesars", - "amenity": "fast_food" - }, - "name": "Little Caesars", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/McDonald's": { - "tags": { - "name": "McDonald's", - "cuisine": "burger", - "amenity": "fast_food" - }, - "name": "McDonald's", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Mr. Sub": { - "tags": { - "name": "Mr. Sub", - "amenity": "fast_food" - }, - "name": "Mr. Sub", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Nordsee": { - "tags": { - "name": "Nordsee", - "amenity": "fast_food" - }, - "name": "Nordsee", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Panda Express": { - "tags": { - "name": "Panda Express", - "amenity": "fast_food" - }, - "name": "Panda Express", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Pizza Nova": { - "tags": { - "name": "Pizza Nova", - "amenity": "fast_food" - }, - "name": "Pizza Nova", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Pizza Pizza": { - "tags": { - "name": "Pizza Pizza", - "amenity": "fast_food" - }, - "name": "Pizza Pizza", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Pollo Campero": { - "tags": { - "name": "Pollo Campero", - "amenity": "fast_food" - }, - "name": "Pollo Campero", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Popeye's": { - "tags": { - "name": "Popeye's", - "cuisine": "chicken", - "amenity": "fast_food" - }, - "name": "Popeye's", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Quick": { - "tags": { - "name": "Quick", - "amenity": "fast_food" - }, - "name": "Quick", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Quiznos": { - "tags": { - "name": "Quiznos", - "cuisine": "sandwich", - "amenity": "fast_food" - }, - "name": "Quiznos", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Red Rooster": { - "tags": { - "name": "Red Rooster", - "amenity": "fast_food" - }, - "name": "Red Rooster", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Sibylla": { - "tags": { - "name": "Sibylla", - "amenity": "fast_food" - }, - "name": "Sibylla", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Sonic": { - "tags": { - "name": "Sonic", - "cuisine": "burger", - "amenity": "fast_food" - }, - "name": "Sonic", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Steers": { - "tags": { - "name": "Steers", - "amenity": "fast_food" - }, - "name": "Steers", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Taco Bell": { - "tags": { - "name": "Taco Bell", - "amenity": "fast_food" - }, - "name": "Taco Bell", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Taco Time": { - "tags": { - "name": "Taco Time", - "amenity": "fast_food" - }, - "name": "Taco Time", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Telepizza": { - "tags": { - "name": "Telepizza", - "amenity": "fast_food" - }, - "name": "Telepizza", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Tim Hortons": { - "tags": { - "name": "Tim Hortons", - "amenity": "fast_food" - }, - "name": "Tim Hortons", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Wendy's": { - "tags": { - "name": "Wendy's", - "cuisine": "burger", - "amenity": "fast_food" - }, - "name": "Wendy's", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Whataburger": { - "tags": { - "name": "Whataburger", - "amenity": "fast_food" - }, - "name": "Whataburger", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/White Castle": { - "tags": { - "name": "White Castle", - "amenity": "fast_food" - }, - "name": "White Castle", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Wimpy": { - "tags": { - "name": "Wimpy", - "amenity": "fast_food" - }, - "name": "Wimpy", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Макдоналдс": { - "tags": { - "name": "Макдоналдс", - "name:en": "McDonald's", - "amenity": "fast_food" - }, - "name": "Макдоналдс", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Робин Сдобин": { - "tags": { - "name": "Робин Сдобин", - "amenity": "fast_food" - }, - "name": "Робин Сдобин", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Русский Аппетит": { - "tags": { - "name": "Русский Аппетит", - "amenity": "fast_food" - }, - "name": "Русский Аппетит", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/Теремок": { - "tags": { - "name": "Теремок", - "amenity": "fast_food" - }, - "name": "Теремок", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/すき家": { - "tags": { - "name": "すき家", - "name:en": "SUKIYA", - "amenity": "fast_food" - }, - "name": "すき家", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/なか卯": { - "tags": { - "name": "なか卯", - "amenity": "fast_food" - }, - "name": "なか卯", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/ケンタッキーフライドチキン": { - "tags": { - "name": "ケンタッキーフライドチキン", - "name:en": "KFC", - "cuisine": "chicken", - "amenity": "fast_food" - }, - "name": "ケンタッキーフライドチキン", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/マクドナルド": { - "tags": { - "name": "マクドナルド", - "name:en": "McDonald's", - "cuisine": "burger", - "amenity": "fast_food" - }, - "name": "マクドナルド", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/モスバーガー": { - "tags": { - "name": "モスバーガー", - "name:en": "MOS BURGER", - "amenity": "fast_food" - }, - "name": "モスバーガー", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/吉野家": { - "tags": { - "name": "吉野家", - "amenity": "fast_food" - }, - "name": "吉野家", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/松屋": { - "tags": { - "name": "松屋", - "name:en": "Matsuya", - "amenity": "fast_food" - }, - "name": "松屋", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/肯德基": { - "tags": { - "name": "肯德基", - "amenity": "fast_food" - }, - "name": "肯德基", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/fast_food/麥當勞": { - "tags": { - "name": "麥當勞", - "amenity": "fast_food" - }, - "name": "麥當勞", - "icon": "fast-food", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, @@ -74065,1621 +70304,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/1-2-3": { - "tags": { - "name": "1-2-3", - "amenity": "fuel" - }, - "name": "1-2-3", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/7-Eleven": { - "tags": { - "name": "7-Eleven", - "amenity": "fuel" - }, - "name": "7-Eleven", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/ABC": { - "tags": { - "name": "ABC", - "amenity": "fuel" - }, - "name": "ABC", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Agip": { - "tags": { - "name": "Agip", - "amenity": "fuel" - }, - "name": "Agip", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/ANP": { - "tags": { - "name": "ANP", - "amenity": "fuel" - }, - "name": "ANP", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/ARAL": { - "tags": { - "name": "ARAL", - "amenity": "fuel" - }, - "name": "ARAL", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Avia": { - "tags": { - "name": "Avia", - "amenity": "fuel" - }, - "name": "Avia", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Afriquia": { - "tags": { - "name": "Afriquia", - "amenity": "fuel" - }, - "name": "Afriquia", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Agrola": { - "tags": { - "name": "Agrola", - "amenity": "fuel" - }, - "name": "Agrola", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Api": { - "tags": { - "name": "Api", - "amenity": "fuel" - }, - "name": "Api", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Aral": { - "tags": { - "name": "Aral", - "amenity": "fuel" - }, - "name": "Aral", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Arco": { - "tags": { - "name": "Arco", - "amenity": "fuel" - }, - "name": "Arco", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Auchan": { - "tags": { - "name": "Auchan", - "amenity": "fuel" - }, - "name": "Auchan", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Avanti": { - "tags": { - "name": "Avanti", - "amenity": "fuel" - }, - "name": "Avanti", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/BFT": { - "tags": { - "name": "BFT", - "amenity": "fuel" - }, - "name": "BFT", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/BP": { - "tags": { - "name": "BP", - "amenity": "fuel" - }, - "name": "BP", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/BR": { - "tags": { - "name": "BR", - "amenity": "fuel" - }, - "name": "BR", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Benzina": { - "tags": { - "name": "Benzina", - "amenity": "fuel" - }, - "name": "Benzina", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Bliska": { - "tags": { - "name": "Bliska", - "amenity": "fuel" - }, - "name": "Bliska", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/C. C. E. Leclerc": { - "tags": { - "name": "C. C. E. Leclerc", - "amenity": "fuel" - }, - "name": "C. C. E. Leclerc", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/CAMPSA": { - "tags": { - "name": "CAMPSA", - "amenity": "fuel" - }, - "name": "CAMPSA", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/CARREFOUR": { - "tags": { - "name": "CARREFOUR", - "amenity": "fuel" - }, - "name": "CARREFOUR", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/CEPSA": { - "tags": { - "name": "CEPSA", - "amenity": "fuel" - }, - "name": "CEPSA", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/COSMO": { - "tags": { - "name": "COSMO", - "amenity": "fuel" - }, - "name": "COSMO", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Caltex": { - "tags": { - "name": "Caltex", - "amenity": "fuel" - }, - "name": "Caltex", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Canadian Tire": { - "tags": { - "name": "Canadian Tire", - "amenity": "fuel" - }, - "name": "Canadian Tire", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Carrefour": { - "tags": { - "name": "Carrefour", - "amenity": "fuel" - }, - "name": "Carrefour", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Cenex": { - "tags": { - "name": "Cenex", - "amenity": "fuel" - }, - "name": "Cenex", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Cepsa": { - "tags": { - "name": "Cepsa", - "amenity": "fuel" - }, - "name": "Cepsa", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Chevron": { - "tags": { - "name": "Chevron", - "amenity": "fuel" - }, - "name": "Chevron", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Circle K": { - "tags": { - "name": "Circle K", - "amenity": "fuel" - }, - "name": "Circle K", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Citgo": { - "tags": { - "name": "Citgo", - "amenity": "fuel" - }, - "name": "Citgo", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Coles Express": { - "tags": { - "name": "Coles Express", - "amenity": "fuel" - }, - "name": "Coles Express", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Conoco": { - "tags": { - "name": "Conoco", - "amenity": "fuel" - }, - "name": "Conoco", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Coop": { - "tags": { - "name": "Coop", - "amenity": "fuel" - }, - "name": "Coop", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Copec": { - "tags": { - "name": "Copec", - "amenity": "fuel" - }, - "name": "Copec", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/E.Leclerc": { - "tags": { - "name": "E.Leclerc", - "amenity": "fuel" - }, - "name": "E.Leclerc", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/EKO": { - "tags": { - "name": "EKO", - "amenity": "fuel" - }, - "name": "EKO", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/ENEOS": { - "tags": { - "name": "ENEOS", - "amenity": "fuel" - }, - "name": "ENEOS", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/ERG": { - "tags": { - "name": "ERG", - "amenity": "fuel" - }, - "name": "ERG", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Esso": { - "tags": { - "name": "Esso", - "amenity": "fuel" - }, - "name": "Esso", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Eko": { - "tags": { - "name": "Eko", - "amenity": "fuel" - }, - "name": "Eko", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Elan": { - "tags": { - "name": "Elan", - "amenity": "fuel" - }, - "name": "Elan", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Elf": { - "tags": { - "name": "Elf", - "amenity": "fuel" - }, - "name": "Elf", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Eneos": { - "tags": { - "name": "Eneos", - "amenity": "fuel" - }, - "name": "Eneos", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Engen": { - "tags": { - "name": "Engen", - "amenity": "fuel" - }, - "name": "Engen", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Eni": { - "tags": { - "name": "Eni", - "amenity": "fuel" - }, - "name": "Eni", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Erg": { - "tags": { - "name": "Erg", - "amenity": "fuel" - }, - "name": "Erg", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Esso Express": { - "tags": { - "name": "Esso Express", - "amenity": "fuel" - }, - "name": "Esso Express", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Exxon": { - "tags": { - "name": "Exxon", - "amenity": "fuel" - }, - "name": "Exxon", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Flying V": { - "tags": { - "name": "Flying V", - "amenity": "fuel" - }, - "name": "Flying V", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Freie Tankstelle": { - "tags": { - "name": "Freie Tankstelle", - "amenity": "fuel" - }, - "name": "Freie Tankstelle", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/GALP": { - "tags": { - "name": "GALP", - "amenity": "fuel" - }, - "name": "GALP", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Gulf": { - "tags": { - "name": "Gulf", - "amenity": "fuel" - }, - "name": "Gulf", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/HEM": { - "tags": { - "name": "HEM", - "amenity": "fuel" - }, - "name": "HEM", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/HP": { - "tags": { - "name": "HP", - "amenity": "fuel" - }, - "name": "HP", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Hess": { - "tags": { - "name": "Hess", - "amenity": "fuel" - }, - "name": "Hess", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Holiday": { - "tags": { - "name": "Holiday", - "amenity": "fuel" - }, - "name": "Holiday", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Husky": { - "tags": { - "name": "Husky", - "amenity": "fuel" - }, - "name": "Husky", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/IDEMITSU": { - "tags": { - "name": "IDEMITSU", - "amenity": "fuel" - }, - "name": "IDEMITSU", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/IES": { - "tags": { - "name": "IES", - "amenity": "fuel" - }, - "name": "IES", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/INA": { - "tags": { - "name": "INA", - "amenity": "fuel" - }, - "name": "INA", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/IP": { - "tags": { - "name": "IP", - "amenity": "fuel" - }, - "name": "IP", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Indian Oil": { - "tags": { - "name": "Indian Oil", - "amenity": "fuel" - }, - "name": "Indian Oil", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Indipend.": { - "tags": { - "name": "Indipend.", - "amenity": "fuel" - }, - "name": "Indipend.", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Intermarché": { - "tags": { - "name": "Intermarché", - "amenity": "fuel" - }, - "name": "Intermarché", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Ipiranga": { - "tags": { - "name": "Ipiranga", - "amenity": "fuel" - }, - "name": "Ipiranga", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Irving": { - "tags": { - "name": "Irving", - "amenity": "fuel" - }, - "name": "Irving", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/JET": { - "tags": { - "name": "JET", - "amenity": "fuel" - }, - "name": "JET", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/JOMO": { - "tags": { - "name": "JOMO", - "amenity": "fuel" - }, - "name": "JOMO", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Jet": { - "tags": { - "name": "Jet", - "amenity": "fuel" - }, - "name": "Jet", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Kum & Go": { - "tags": { - "name": "Kum & Go", - "amenity": "fuel" - }, - "name": "Kum & Go", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Kwik Trip": { - "tags": { - "name": "Kwik Trip", - "amenity": "fuel" - }, - "name": "Kwik Trip", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/LPG": { - "tags": { - "name": "LPG", - "amenity": "fuel" - }, - "name": "LPG", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Lotos": { - "tags": { - "name": "Lotos", - "amenity": "fuel" - }, - "name": "Lotos", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Lukoil": { - "tags": { - "name": "Lukoil", - "amenity": "fuel" - }, - "name": "Lukoil", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/MEROIL": { - "tags": { - "name": "MEROIL", - "amenity": "fuel" - }, - "name": "MEROIL", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/MOL": { - "tags": { - "name": "MOL", - "amenity": "fuel" - }, - "name": "MOL", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Marathon": { - "tags": { - "name": "Marathon", - "amenity": "fuel" - }, - "name": "Marathon", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Metano": { - "tags": { - "name": "Metano", - "amenity": "fuel" - }, - "name": "Metano", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Migrol": { - "tags": { - "name": "Migrol", - "amenity": "fuel" - }, - "name": "Migrol", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Mobil": { - "tags": { - "name": "Mobil", - "amenity": "fuel" - }, - "name": "Mobil", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Mol": { - "tags": { - "name": "Mol", - "amenity": "fuel" - }, - "name": "Mol", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Morrisons": { - "tags": { - "name": "Morrisons", - "amenity": "fuel" - }, - "name": "Morrisons", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, "amenity/fuel/Neste": { "tags": { "name": "Neste", @@ -75699,449 +70323,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Neste A24": { + "amenity/fuel/BP": { "tags": { - "name": "Neste A24", + "name": "BP", "amenity": "fuel" }, - "name": "Neste A24", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/OIL!": { - "tags": { - "name": "OIL!", - "amenity": "fuel" - }, - "name": "OIL!", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/OK": { - "tags": { - "name": "OK", - "amenity": "fuel" - }, - "name": "OK", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/OKKO": { - "tags": { - "name": "OKKO", - "amenity": "fuel" - }, - "name": "OKKO", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/OKQ8": { - "tags": { - "name": "OKQ8", - "amenity": "fuel" - }, - "name": "OKQ8", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/OMV": { - "tags": { - "name": "OMV", - "amenity": "fuel" - }, - "name": "OMV", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Oilibya": { - "tags": { - "name": "Oilibya", - "amenity": "fuel" - }, - "name": "Oilibya", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Orlen": { - "tags": { - "name": "Orlen", - "amenity": "fuel" - }, - "name": "Orlen", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Pemex": { - "tags": { - "name": "Pemex", - "amenity": "fuel" - }, - "name": "Pemex", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/PETRONOR": { - "tags": { - "name": "PETRONOR", - "amenity": "fuel" - }, - "name": "PETRONOR", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/PTT": { - "tags": { - "name": "PTT", - "amenity": "fuel" - }, - "name": "PTT", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Pertamina": { - "tags": { - "name": "Pertamina", - "amenity": "fuel" - }, - "name": "Pertamina", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Petro-Canada": { - "tags": { - "name": "Petro-Canada", - "amenity": "fuel" - }, - "name": "Petro-Canada", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Petrobras": { - "tags": { - "name": "Petrobras", - "amenity": "fuel" - }, - "name": "Petrobras", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Petrom": { - "tags": { - "name": "Petrom", - "amenity": "fuel" - }, - "name": "Petrom", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Petron": { - "tags": { - "name": "Petron", - "amenity": "fuel" - }, - "name": "Petron", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Petronas": { - "tags": { - "name": "Petronas", - "amenity": "fuel" - }, - "name": "Petronas", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Phillips 66": { - "tags": { - "name": "Phillips 66", - "amenity": "fuel" - }, - "name": "Phillips 66", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Phoenix": { - "tags": { - "name": "Phoenix", - "amenity": "fuel" - }, - "name": "Phoenix", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Q8": { - "tags": { - "name": "Q8", - "amenity": "fuel" - }, - "name": "Q8", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/QuikTrip": { - "tags": { - "name": "QuikTrip", - "amenity": "fuel" - }, - "name": "QuikTrip", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/REPSOL": { - "tags": { - "name": "REPSOL", - "amenity": "fuel" - }, - "name": "REPSOL", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Repsol": { - "tags": { - "name": "Repsol", - "amenity": "fuel" - }, - "name": "Repsol", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Rompetrol": { - "tags": { - "name": "Rompetrol", - "amenity": "fuel" - }, - "name": "Rompetrol", + "name": "BP", "icon": "fuel", "geometry": [ "point", @@ -76174,12 +70361,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Sainsbury's": { + "amenity/fuel/Agip": { "tags": { - "name": "Sainsbury's", + "name": "Agip", "amenity": "fuel" }, - "name": "Sainsbury's", + "name": "Agip", "icon": "fuel", "geometry": [ "point", @@ -76193,12 +70380,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Sasol": { + "amenity/fuel/Migrol": { "tags": { - "name": "Sasol", + "name": "Migrol", "amenity": "fuel" }, - "name": "Sasol", + "name": "Migrol", "icon": "fuel", "geometry": [ "point", @@ -76212,12 +70399,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Sheetz": { + "amenity/fuel/Avia": { "tags": { - "name": "Sheetz", + "name": "Avia", "amenity": "fuel" }, - "name": "Sheetz", + "name": "Avia", "icon": "fuel", "geometry": [ "point", @@ -76231,145 +70418,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Shell Express": { + "amenity/fuel/Texaco": { "tags": { - "name": "Shell Express", + "name": "Texaco", "amenity": "fuel" }, - "name": "Shell Express", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Sinclair": { - "tags": { - "name": "Sinclair", - "amenity": "fuel" - }, - "name": "Sinclair", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Slovnaft": { - "tags": { - "name": "Slovnaft", - "amenity": "fuel" - }, - "name": "Slovnaft", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Sokimex": { - "tags": { - "name": "Sokimex", - "amenity": "fuel" - }, - "name": "Sokimex", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Speedway": { - "tags": { - "name": "Speedway", - "amenity": "fuel" - }, - "name": "Speedway", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/St1": { - "tags": { - "name": "St1", - "amenity": "fuel" - }, - "name": "St1", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Stacja paliw": { - "tags": { - "name": "Stacja paliw", - "amenity": "fuel" - }, - "name": "Stacja paliw", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Star": { - "tags": { - "name": "Star", - "amenity": "fuel" - }, - "name": "Star", + "name": "Texaco", "icon": "fuel", "geometry": [ "point", @@ -76421,12 +70475,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Stewart's": { + "amenity/fuel/Esso": { "tags": { - "name": "Stewart's", + "name": "Esso", "amenity": "fuel" }, - "name": "Stewart's", + "name": "Esso", "icon": "fuel", "geometry": [ "point", @@ -76440,12 +70494,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Sunoco": { + "amenity/fuel/Jet": { "tags": { - "name": "Sunoco", + "name": "Jet", "amenity": "fuel" }, - "name": "Sunoco", + "name": "Jet", "icon": "fuel", "geometry": [ "point", @@ -76459,12 +70513,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Super U": { + "amenity/fuel/Avanti": { "tags": { - "name": "Super U", + "name": "Avanti", "amenity": "fuel" }, - "name": "Super U", + "name": "Avanti", "icon": "fuel", "geometry": [ "point", @@ -76478,12 +70532,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Tamoil": { + "amenity/fuel/Sainsbury's": { "tags": { - "name": "Tamoil", + "name": "Sainsbury's", "amenity": "fuel" }, - "name": "Tamoil", + "name": "Sainsbury's", "icon": "fuel", "geometry": [ "point", @@ -76497,12 +70551,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Tango": { + "amenity/fuel/OMV": { "tags": { - "name": "Tango", + "name": "OMV", "amenity": "fuel" }, - "name": "Tango", + "name": "OMV", "icon": "fuel", "geometry": [ "point", @@ -76516,69 +70570,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Tankstelle": { + "amenity/fuel/Aral": { "tags": { - "name": "Tankstelle", + "name": "Aral", "amenity": "fuel" }, - "name": "Tankstelle", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Teboil": { - "tags": { - "name": "Teboil", - "amenity": "fuel" - }, - "name": "Teboil", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Tela": { - "tags": { - "name": "Tela", - "amenity": "fuel" - }, - "name": "Tela", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Terpel": { - "tags": { - "name": "Terpel", - "amenity": "fuel" - }, - "name": "Terpel", + "name": "Aral", "icon": "fuel", "geometry": [ "point", @@ -76611,12 +70608,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Texaco": { + "amenity/fuel/JET": { "tags": { - "name": "Texaco", + "name": "JET", "amenity": "fuel" }, - "name": "Texaco", + "name": "JET", "icon": "fuel", "geometry": [ "point", @@ -76630,88 +70627,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Tinq": { + "amenity/fuel/Morrisons": { "tags": { - "name": "Tinq", + "name": "Morrisons", "amenity": "fuel" }, - "name": "Tinq", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Topaz": { - "tags": { - "name": "Topaz", - "amenity": "fuel" - }, - "name": "Topaz", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/TotalErg": { - "tags": { - "name": "TotalErg", - "amenity": "fuel" - }, - "name": "TotalErg", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Turmöl": { - "tags": { - "name": "Turmöl", - "amenity": "fuel" - }, - "name": "Turmöl", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Ultramar": { - "tags": { - "name": "Ultramar", - "amenity": "fuel" - }, - "name": "Ultramar", + "name": "Morrisons", "icon": "fuel", "geometry": [ "point", @@ -76744,12 +70665,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Valero": { + "amenity/fuel/Canadian Tire": { "tags": { - "name": "Valero", + "name": "Canadian Tire", "amenity": "fuel" }, - "name": "Valero", + "name": "Canadian Tire", "icon": "fuel", "geometry": [ "point", @@ -76763,12 +70684,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/WOG": { + "amenity/fuel/Mobil": { "tags": { - "name": "WOG", + "name": "Mobil", "amenity": "fuel" }, - "name": "WOG", + "name": "Mobil", "icon": "fuel", "geometry": [ "point", @@ -76782,12 +70703,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Wawa": { + "amenity/fuel/Caltex": { "tags": { - "name": "Wawa", + "name": "Caltex", "amenity": "fuel" }, - "name": "Wawa", + "name": "Caltex", "icon": "fuel", "geometry": [ "point", @@ -76801,12 +70722,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Westfalen": { + "amenity/fuel/Sunoco": { "tags": { - "name": "Westfalen", + "name": "Sunoco", "amenity": "fuel" }, - "name": "Westfalen", + "name": "Sunoco", "icon": "fuel", "geometry": [ "point", @@ -76820,12 +70741,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/YPF": { + "amenity/fuel/Q8": { "tags": { - "name": "YPF", + "name": "Q8", "amenity": "fuel" }, - "name": "YPF", + "name": "Q8", "icon": "fuel", "geometry": [ "point", @@ -76839,12 +70760,278 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Z": { + "amenity/fuel/ABC": { "tags": { - "name": "Z", + "name": "ABC", "amenity": "fuel" }, - "name": "Z", + "name": "ABC", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Tankstelle": { + "tags": { + "name": "Tankstelle", + "amenity": "fuel" + }, + "name": "Tankstelle", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/ARAL": { + "tags": { + "name": "ARAL", + "amenity": "fuel" + }, + "name": "ARAL", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/CEPSA": { + "tags": { + "name": "CEPSA", + "amenity": "fuel" + }, + "name": "CEPSA", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/BFT": { + "tags": { + "name": "BFT", + "amenity": "fuel" + }, + "name": "BFT", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Petron": { + "tags": { + "name": "Petron", + "amenity": "fuel" + }, + "name": "Petron", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Intermarché": { + "tags": { + "name": "Intermarché", + "amenity": "fuel" + }, + "name": "Intermarché", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Super U": { + "tags": { + "name": "Super U", + "amenity": "fuel" + }, + "name": "Super U", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Auchan": { + "tags": { + "name": "Auchan", + "amenity": "fuel" + }, + "name": "Auchan", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Elf": { + "tags": { + "name": "Elf", + "amenity": "fuel" + }, + "name": "Elf", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Carrefour": { + "tags": { + "name": "Carrefour", + "amenity": "fuel" + }, + "name": "Carrefour", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "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", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Shell Express": { + "tags": { + "name": "Shell Express", + "amenity": "fuel" + }, + "name": "Shell Express", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Hess": { + "tags": { + "name": "Hess", + "amenity": "fuel" + }, + "name": "Hess", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Flying V": { + "tags": { + "name": "Flying V", + "amenity": "fuel" + }, + "name": "Flying V", "icon": "fuel", "geometry": [ "point", @@ -76877,6 +71064,139 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, + "amenity/fuel/Gulf": { + "tags": { + "name": "Gulf", + "amenity": "fuel" + }, + "name": "Gulf", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/PTT": { + "tags": { + "name": "PTT", + "amenity": "fuel" + }, + "name": "PTT", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/St1": { + "tags": { + "name": "St1", + "amenity": "fuel" + }, + "name": "St1", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Teboil": { + "tags": { + "name": "Teboil", + "amenity": "fuel" + }, + "name": "Teboil", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/HEM": { + "tags": { + "name": "HEM", + "amenity": "fuel" + }, + "name": "HEM", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/GALP": { + "tags": { + "name": "GALP", + "amenity": "fuel" + }, + "name": "GALP", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/OK": { + "tags": { + "name": "OK", + "amenity": "fuel" + }, + "name": "OK", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, "amenity/fuel/ÖMV": { "tags": { "name": "ÖMV", @@ -76896,12 +71216,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/АГЗС": { + "amenity/fuel/Tinq": { "tags": { - "name": "АГЗС", + "name": "Tinq", "amenity": "fuel" }, - "name": "АГЗС", + "name": "Tinq", "icon": "fuel", "geometry": [ "point", @@ -76915,12 +71235,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/АЗС": { + "amenity/fuel/OKQ8": { "tags": { - "name": "АЗС", + "name": "OKQ8", "amenity": "fuel" }, - "name": "АЗС", + "name": "OKQ8", "icon": "fuel", "geometry": [ "point", @@ -76934,12 +71254,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Башнефть": { + "amenity/fuel/Freie Tankstelle": { "tags": { - "name": "Башнефть", + "name": "Freie Tankstelle", "amenity": "fuel" }, - "name": "Башнефть", + "name": "Freie Tankstelle", "icon": "fuel", "geometry": [ "point", @@ -76953,12 +71273,525 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Белоруснефть": { + "amenity/fuel/Repsol": { "tags": { - "name": "Белоруснефть", + "name": "Repsol", "amenity": "fuel" }, - "name": "Белоруснефть", + "name": "Repsol", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Westfalen": { + "tags": { + "name": "Westfalen", + "amenity": "fuel" + }, + "name": "Westfalen", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Esso Express": { + "tags": { + "name": "Esso Express", + "amenity": "fuel" + }, + "name": "Esso Express", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Raiffeisenbank": { + "tags": { + "name": "Raiffeisenbank", + "amenity": "fuel" + }, + "name": "Raiffeisenbank", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Tamoil": { + "tags": { + "name": "Tamoil", + "amenity": "fuel" + }, + "name": "Tamoil", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Engen": { + "tags": { + "name": "Engen", + "amenity": "fuel" + }, + "name": "Engen", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Sasol": { + "tags": { + "name": "Sasol", + "amenity": "fuel" + }, + "name": "Sasol", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Topaz": { + "tags": { + "name": "Topaz", + "amenity": "fuel" + }, + "name": "Topaz", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/LPG": { + "tags": { + "name": "LPG", + "amenity": "fuel" + }, + "name": "LPG", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Coop": { + "tags": { + "name": "Coop", + "amenity": "fuel" + }, + "name": "Coop", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Orlen": { + "tags": { + "name": "Orlen", + "amenity": "fuel" + }, + "name": "Orlen", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Oilibya": { + "tags": { + "name": "Oilibya", + "amenity": "fuel" + }, + "name": "Oilibya", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Tango": { + "tags": { + "name": "Tango", + "amenity": "fuel" + }, + "name": "Tango", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Star": { + "tags": { + "name": "Star", + "amenity": "fuel" + }, + "name": "Star", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Петрол": { + "tags": { + "name": "Петрол", + "amenity": "fuel" + }, + "name": "Петрол", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Cepsa": { + "tags": { + "name": "Cepsa", + "amenity": "fuel" + }, + "name": "Cepsa", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/OIL!": { + "tags": { + "name": "OIL!", + "amenity": "fuel" + }, + "name": "OIL!", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Ultramar": { + "tags": { + "name": "Ultramar", + "amenity": "fuel" + }, + "name": "Ultramar", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Irving": { + "tags": { + "name": "Irving", + "amenity": "fuel" + }, + "name": "Irving", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Lukoil": { + "tags": { + "name": "Lukoil", + "amenity": "fuel" + }, + "name": "Lukoil", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Petro-Canada": { + "tags": { + "name": "Petro-Canada", + "amenity": "fuel" + }, + "name": "Petro-Canada", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/7-Eleven": { + "tags": { + "name": "7-Eleven", + "amenity": "fuel" + }, + "name": "7-Eleven", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Agrola": { + "tags": { + "name": "Agrola", + "amenity": "fuel" + }, + "name": "Agrola", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Husky": { + "tags": { + "name": "Husky", + "amenity": "fuel" + }, + "name": "Husky", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Slovnaft": { + "tags": { + "name": "Slovnaft", + "amenity": "fuel" + }, + "name": "Slovnaft", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Sheetz": { + "tags": { + "name": "Sheetz", + "amenity": "fuel" + }, + "name": "Sheetz", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Mol": { + "tags": { + "name": "Mol", + "amenity": "fuel" + }, + "name": "Mol", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Petronas": { + "tags": { + "name": "Petronas", + "amenity": "fuel" + }, + "name": "Petronas", "icon": "fuel", "geometry": [ "point", @@ -77010,107 +71843,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Макпетрол": { + "amenity/fuel/Elan": { "tags": { - "name": "Макпетрол", + "name": "Elan", "amenity": "fuel" }, - "name": "Макпетрол", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/НК Альянс": { - "tags": { - "name": "НК Альянс", - "amenity": "fuel" - }, - "name": "НК Альянс", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/ОККО": { - "tags": { - "name": "ОККО", - "amenity": "fuel" - }, - "name": "ОККО", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/ОМВ": { - "tags": { - "name": "ОМВ", - "amenity": "fuel" - }, - "name": "ОМВ", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/ПТК": { - "tags": { - "name": "ПТК", - "amenity": "fuel" - }, - "name": "ПТК", - "icon": "fuel", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "address", - "building_area" - ], - "suggestion": true - }, - "amenity/fuel/Петрол": { - "tags": { - "name": "Петрол", - "amenity": "fuel" - }, - "name": "Петрол", + "name": "Elan", "icon": "fuel", "geometry": [ "point", @@ -77143,12 +71881,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Славнефть": { + "amenity/fuel/Turmöl": { "tags": { - "name": "Славнефть", + "name": "Turmöl", "amenity": "fuel" }, - "name": "Славнефть", + "name": "Turmöl", "icon": "fuel", "geometry": [ "point", @@ -77162,12 +71900,88 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Сургутнефтегаз": { + "amenity/fuel/Neste A24": { "tags": { - "name": "Сургутнефтегаз", + "name": "Neste A24", "amenity": "fuel" }, - "name": "Сургутнефтегаз", + "name": "Neste A24", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Marathon": { + "tags": { + "name": "Marathon", + "amenity": "fuel" + }, + "name": "Marathon", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Valero": { + "tags": { + "name": "Valero", + "amenity": "fuel" + }, + "name": "Valero", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Eni": { + "tags": { + "name": "Eni", + "amenity": "fuel" + }, + "name": "Eni", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Chevron": { + "tags": { + "name": "Chevron", + "amenity": "fuel" + }, + "name": "Chevron", "icon": "fuel", "geometry": [ "point", @@ -77200,12 +72014,696 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/Татнефтепродукт": { + "amenity/fuel/REPSOL": { "tags": { - "name": "Татнефтепродукт", + "name": "REPSOL", "amenity": "fuel" }, - "name": "Татнефтепродукт", + "name": "REPSOL", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/MOL": { + "tags": { + "name": "MOL", + "amenity": "fuel" + }, + "name": "MOL", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Bliska": { + "tags": { + "name": "Bliska", + "amenity": "fuel" + }, + "name": "Bliska", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Api": { + "tags": { + "name": "Api", + "amenity": "fuel" + }, + "name": "Api", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Arco": { + "tags": { + "name": "Arco", + "amenity": "fuel" + }, + "name": "Arco", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Pemex": { + "tags": { + "name": "Pemex", + "amenity": "fuel" + }, + "name": "Pemex", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Exxon": { + "tags": { + "name": "Exxon", + "amenity": "fuel" + }, + "name": "Exxon", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Coles Express": { + "tags": { + "name": "Coles Express", + "amenity": "fuel" + }, + "name": "Coles Express", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Petrom": { + "tags": { + "name": "Petrom", + "amenity": "fuel" + }, + "name": "Petrom", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/PETRONOR": { + "tags": { + "name": "PETRONOR", + "amenity": "fuel" + }, + "name": "PETRONOR", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Rompetrol": { + "tags": { + "name": "Rompetrol", + "amenity": "fuel" + }, + "name": "Rompetrol", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Lotos": { + "tags": { + "name": "Lotos", + "amenity": "fuel" + }, + "name": "Lotos", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/ОМВ": { + "tags": { + "name": "ОМВ", + "amenity": "fuel" + }, + "name": "ОМВ", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/BR": { + "tags": { + "name": "BR", + "amenity": "fuel" + }, + "name": "BR", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Copec": { + "tags": { + "name": "Copec", + "amenity": "fuel" + }, + "name": "Copec", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Petrobras": { + "tags": { + "name": "Petrobras", + "amenity": "fuel" + }, + "name": "Petrobras", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Liberty": { + "tags": { + "name": "Liberty", + "amenity": "fuel" + }, + "name": "Liberty", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/IP": { + "tags": { + "name": "IP", + "amenity": "fuel" + }, + "name": "IP", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/YPF": { + "tags": { + "name": "YPF", + "amenity": "fuel" + }, + "name": "YPF", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Erg": { + "tags": { + "name": "Erg", + "amenity": "fuel" + }, + "name": "Erg", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Eneos": { + "tags": { + "name": "Eneos", + "amenity": "fuel" + }, + "name": "Eneos", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Citgo": { + "tags": { + "name": "Citgo", + "amenity": "fuel" + }, + "name": "Citgo", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Metano": { + "tags": { + "name": "Metano", + "amenity": "fuel" + }, + "name": "Metano", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Сургутнефтегаз": { + "tags": { + "name": "Сургутнефтегаз", + "amenity": "fuel" + }, + "name": "Сургутнефтегаз", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/EKO": { + "tags": { + "name": "EKO", + "amenity": "fuel" + }, + "name": "EKO", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Eko": { + "tags": { + "name": "Eko", + "amenity": "fuel" + }, + "name": "Eko", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Indipend.": { + "tags": { + "name": "Indipend.", + "amenity": "fuel" + }, + "name": "Indipend.", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/IES": { + "tags": { + "name": "IES", + "amenity": "fuel" + }, + "name": "IES", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/TotalErg": { + "tags": { + "name": "TotalErg", + "amenity": "fuel" + }, + "name": "TotalErg", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Cenex": { + "tags": { + "name": "Cenex", + "amenity": "fuel" + }, + "name": "Cenex", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/ПТК": { + "tags": { + "name": "ПТК", + "amenity": "fuel" + }, + "name": "ПТК", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/HP": { + "tags": { + "name": "HP", + "amenity": "fuel" + }, + "name": "HP", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Phillips 66": { + "tags": { + "name": "Phillips 66", + "amenity": "fuel" + }, + "name": "Phillips 66", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/CARREFOUR": { + "tags": { + "name": "CARREFOUR", + "amenity": "fuel" + }, + "name": "CARREFOUR", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/ERG": { + "tags": { + "name": "ERG", + "amenity": "fuel" + }, + "name": "ERG", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Speedway": { + "tags": { + "name": "Speedway", + "amenity": "fuel" + }, + "name": "Speedway", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Benzina": { + "tags": { + "name": "Benzina", + "amenity": "fuel" + }, + "name": "Benzina", "icon": "fuel", "geometry": [ "point", @@ -77238,6 +72736,710 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, + "amenity/fuel/Terpel": { + "tags": { + "name": "Terpel", + "amenity": "fuel" + }, + "name": "Terpel", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/WOG": { + "tags": { + "name": "WOG", + "amenity": "fuel" + }, + "name": "WOG", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Seaoil": { + "tags": { + "name": "Seaoil", + "amenity": "fuel" + }, + "name": "Seaoil", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/АЗС": { + "tags": { + "name": "АЗС", + "amenity": "fuel" + }, + "name": "АЗС", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Kwik Trip": { + "tags": { + "name": "Kwik Trip", + "amenity": "fuel" + }, + "name": "Kwik Trip", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Wawa": { + "tags": { + "name": "Wawa", + "amenity": "fuel" + }, + "name": "Wawa", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Pertamina": { + "tags": { + "name": "Pertamina", + "amenity": "fuel" + }, + "name": "Pertamina", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/COSMO": { + "tags": { + "name": "COSMO", + "amenity": "fuel" + }, + "name": "COSMO", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Z": { + "tags": { + "name": "Z", + "amenity": "fuel" + }, + "name": "Z", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Indian Oil": { + "tags": { + "name": "Indian Oil", + "amenity": "fuel" + }, + "name": "Indian Oil", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/АГЗС": { + "tags": { + "name": "АГЗС", + "amenity": "fuel" + }, + "name": "АГЗС", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/INA": { + "tags": { + "name": "INA", + "amenity": "fuel" + }, + "name": "INA", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/JOMO": { + "tags": { + "name": "JOMO", + "amenity": "fuel" + }, + "name": "JOMO", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Holiday": { + "tags": { + "name": "Holiday", + "amenity": "fuel" + }, + "name": "Holiday", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/IDEMITSU": { + "tags": { + "name": "IDEMITSU", + "amenity": "fuel" + }, + "name": "IDEMITSU", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/ENEOS": { + "tags": { + "name": "ENEOS", + "amenity": "fuel" + }, + "name": "ENEOS", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Stacja paliw": { + "tags": { + "name": "Stacja paliw", + "amenity": "fuel" + }, + "name": "Stacja paliw", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Bharat Petroleum": { + "tags": { + "name": "Bharat Petroleum", + "amenity": "fuel" + }, + "name": "Bharat Petroleum", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/CAMPSA": { + "tags": { + "name": "CAMPSA", + "amenity": "fuel" + }, + "name": "CAMPSA", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "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", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Kangaroo": { + "tags": { + "name": "Kangaroo", + "amenity": "fuel" + }, + "name": "Kangaroo", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Белоруснефть": { + "tags": { + "name": "Белоруснефть", + "amenity": "fuel" + }, + "name": "Белоруснефть", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/コスモ石油 (COSMO)": { + "tags": { + "name": "コスモ石油 (COSMO)", + "amenity": "fuel" + }, + "name": "コスモ石油 (COSMO)", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/MEROIL": { + "tags": { + "name": "MEROIL", + "amenity": "fuel" + }, + "name": "MEROIL", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/1-2-3": { + "tags": { + "name": "1-2-3", + "amenity": "fuel" + }, + "name": "1-2-3", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Conoco": { + "tags": { + "name": "Conoco", + "amenity": "fuel" + }, + "name": "Conoco", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/出光": { + "tags": { + "name": "出光", + "name:en": "IDEMITSU", + "amenity": "fuel" + }, + "name": "出光", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/НК Альянс": { + "tags": { + "name": "НК Альянс", + "amenity": "fuel" + }, + "name": "НК Альянс", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Sinclair": { + "tags": { + "name": "Sinclair", + "amenity": "fuel" + }, + "name": "Sinclair", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/SPBU": { + "tags": { + "name": "SPBU", + "amenity": "fuel" + }, + "name": "SPBU", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Макпетрол": { + "tags": { + "name": "Макпетрол", + "amenity": "fuel" + }, + "name": "Макпетрол", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Circle K": { + "tags": { + "name": "Circle K", + "amenity": "fuel" + }, + "name": "Circle K", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Posto Ipiranga": { + "tags": { + "name": "Posto Ipiranga", + "amenity": "fuel" + }, + "name": "Posto Ipiranga", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Phoenix": { + "tags": { + "name": "Phoenix", + "amenity": "fuel" + }, + "name": "Phoenix", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Ipiranga": { + "tags": { + "name": "Ipiranga", + "amenity": "fuel" + }, + "name": "Ipiranga", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/OKKO": { + "tags": { + "name": "OKKO", + "amenity": "fuel" + }, + "name": "OKKO", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/ОККО": { + "tags": { + "name": "ОККО", + "amenity": "fuel" + }, + "name": "ОККО", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, "amenity/fuel/บางจาก": { "tags": { "name": "บางจาก", @@ -77257,6 +73459,63 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, + "amenity/fuel/QuikTrip": { + "tags": { + "name": "QuikTrip", + "amenity": "fuel" + }, + "name": "QuikTrip", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Stewart's": { + "tags": { + "name": "Stewart's", + "amenity": "fuel" + }, + "name": "Stewart's", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Posto BR": { + "tags": { + "name": "Posto BR", + "amenity": "fuel" + }, + "name": "Posto BR", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, "amenity/fuel/ป ต ท": { "tags": { "name": "ป ต ท", @@ -77295,12 +73554,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/コスモ石油 (COSMO)": { + "amenity/fuel/ANP": { "tags": { - "name": "コスモ石油 (COSMO)", + "name": "ANP", "amenity": "fuel" }, - "name": "コスモ石油 (COSMO)", + "name": "ANP", "icon": "fuel", "geometry": [ "point", @@ -77314,13 +73573,126 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/fuel/出光": { + "amenity/fuel/Kum & Go": { "tags": { - "name": "出光", - "name:en": "IDEMITSU", + "name": "Kum & Go", "amenity": "fuel" }, - "name": "出光", + "name": "Kum & Go", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Sokimex": { + "tags": { + "name": "Sokimex", + "amenity": "fuel" + }, + "name": "Sokimex", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Tela": { + "tags": { + "name": "Tela", + "amenity": "fuel" + }, + "name": "Tela", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Укрнафта": { + "tags": { + "name": "Укрнафта", + "amenity": "fuel" + }, + "name": "Укрнафта", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Татнефтепродукт": { + "tags": { + "name": "Татнефтепродукт", + "amenity": "fuel" + }, + "name": "Татнефтепродукт", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Afriquia": { + "tags": { + "name": "Afriquia", + "amenity": "fuel" + }, + "name": "Afriquia", + "icon": "fuel", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "address", + "building_area" + ], + "suggestion": true + }, + "amenity/fuel/Murphy USA": { + "tags": { + "name": "Murphy USA", + "amenity": "fuel" + }, + "name": "Murphy USA", "icon": "fuel", "geometry": [ "point", @@ -77353,13 +73725,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "amenity/pharmacy/Аптека 36,6": { + "amenity/fuel/CNG": { "tags": { - "name": "Аптека 36,6", - "amenity": "pharmacy" + "name": "CNG", + "amenity": "fuel" }, - "name": "Аптека 36,6", - "icon": "pharmacy", + "name": "CNG", + "icon": "fuel", "geometry": [ "point", "vertex", @@ -77367,3298 +73739,1540 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "fields": [ "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Adler Apotheke": { - "tags": { - "name": "Adler Apotheke", - "amenity": "pharmacy" - }, - "name": "Adler Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Alte Apotheke": { - "tags": { - "name": "Alte Apotheke", - "amenity": "pharmacy" - }, - "name": "Alte Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Apotheke": { - "tags": { - "name": "Apotheke", - "amenity": "pharmacy" - }, - "name": "Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Apotheke am Markt": { - "tags": { - "name": "Apotheke am Markt", - "amenity": "pharmacy" - }, - "name": "Apotheke am Markt", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Apteka": { - "tags": { - "name": "Apteka", - "amenity": "pharmacy" - }, - "name": "Apteka", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Bahnhof-Apotheke": { - "tags": { - "name": "Bahnhof-Apotheke", - "amenity": "pharmacy" - }, - "name": "Bahnhof-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Boots": { - "tags": { - "name": "Boots", - "amenity": "pharmacy" - }, - "name": "Boots", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Brunnen-Apotheke": { - "tags": { - "name": "Brunnen-Apotheke", - "amenity": "pharmacy" - }, - "name": "Brunnen-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Burg-Apotheke": { - "tags": { - "name": "Burg-Apotheke", - "amenity": "pharmacy" - }, - "name": "Burg-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Bären-Apotheke": { - "tags": { - "name": "Bären-Apotheke", - "amenity": "pharmacy" - }, - "name": "Bären-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/CVS": { - "tags": { - "name": "CVS", - "amenity": "pharmacy" - }, - "name": "CVS", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Clicks": { - "tags": { - "name": "Clicks", - "amenity": "pharmacy" - }, - "name": "Clicks", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Cruz Verde": { - "tags": { - "name": "Cruz Verde", - "amenity": "pharmacy" - }, - "name": "Cruz Verde", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Engel-Apotheke": { - "tags": { - "name": "Engel-Apotheke", - "amenity": "pharmacy" - }, - "name": "Engel-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Eurovaistinė": { - "tags": { - "name": "Eurovaistinė", - "amenity": "pharmacy" - }, - "name": "Eurovaistinė", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Farmacia Comunale": { - "tags": { - "name": "Farmacia Comunale", - "amenity": "pharmacy" - }, - "name": "Farmacia Comunale", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Farmacias Ahumada": { - "tags": { - "name": "Farmacias Ahumada", - "amenity": "pharmacy" - }, - "name": "Farmacias Ahumada", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Farmacias Cruz Verde": { - "tags": { - "name": "Farmacias Cruz Verde", - "amenity": "pharmacy" - }, - "name": "Farmacias Cruz Verde", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Farmacias SalcoBrand": { - "tags": { - "name": "Farmacias SalcoBrand", - "amenity": "pharmacy" - }, - "name": "Farmacias SalcoBrand", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Farmacity": { - "tags": { - "name": "Farmacity", - "amenity": "pharmacy" - }, - "name": "Farmacity", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Farmahorro": { - "tags": { - "name": "Farmahorro", - "amenity": "pharmacy" - }, - "name": "Farmahorro", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Farmatodo": { - "tags": { - "name": "Farmatodo", - "amenity": "pharmacy" - }, - "name": "Farmatodo", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Gintarinė vaistinė": { - "tags": { - "name": "Gintarinė vaistinė", - "amenity": "pharmacy" - }, - "name": "Gintarinė vaistinė", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Hirsch-Apotheke": { - "tags": { - "name": "Hirsch-Apotheke", - "amenity": "pharmacy" - }, - "name": "Hirsch-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Hubertus Apotheke": { - "tags": { - "name": "Hubertus Apotheke", - "amenity": "pharmacy" - }, - "name": "Hubertus Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Jean Coutu": { - "tags": { - "name": "Jean Coutu", - "amenity": "pharmacy" - }, - "name": "Jean Coutu", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Kinney Drugs": { - "tags": { - "name": "Kinney Drugs", - "amenity": "pharmacy" - }, - "name": "Kinney Drugs", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Linden-Apotheke": { - "tags": { - "name": "Linden-Apotheke", - "amenity": "pharmacy" - }, - "name": "Linden-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Ljekarna": { - "tags": { - "name": "Ljekarna", - "amenity": "pharmacy" - }, - "name": "Ljekarna", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Lloyds Pharmacy": { - "tags": { - "name": "Lloyds Pharmacy", - "amenity": "pharmacy" - }, - "name": "Lloyds Pharmacy", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Löwen-Apotheke": { - "tags": { - "name": "Löwen-Apotheke", - "amenity": "pharmacy" - }, - "name": "Löwen-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Marien-Apotheke": { - "tags": { - "name": "Marien-Apotheke", - "amenity": "pharmacy" - }, - "name": "Marien-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Markt-Apotheke": { - "tags": { - "name": "Markt-Apotheke", - "amenity": "pharmacy" - }, - "name": "Markt-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Mercury Drug": { - "tags": { - "name": "Mercury Drug", - "amenity": "pharmacy" - }, - "name": "Mercury Drug", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Neue Apotheke": { - "tags": { - "name": "Neue Apotheke", - "amenity": "pharmacy" - }, - "name": "Neue Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Pharmacie Centrale": { - "tags": { - "name": "Pharmacie Centrale", - "amenity": "pharmacy" - }, - "name": "Pharmacie Centrale", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Pharmaprix": { - "tags": { - "name": "Pharmaprix", - "amenity": "pharmacy" - }, - "name": "Pharmaprix", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Pharmasave": { - "tags": { - "name": "Pharmasave", - "amenity": "pharmacy" - }, - "name": "Pharmasave", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Rathaus-Apotheke": { - "tags": { - "name": "Rathaus-Apotheke", - "amenity": "pharmacy" - }, - "name": "Rathaus-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "amenity/pharmacy/Rats-Apotheke": { - "tags": { - "name": "Rats-Apotheke", - "amenity": "pharmacy" - }, - "name": "Rats-Apotheke", - "icon": "pharmacy", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" + "address", + "building_area" ], "suggestion": true }, - "amenity/pharmacy/Rite Aid": { + "amenity/fast_food/Quick": { "tags": { - "name": "Rite Aid", - "amenity": "pharmacy" + "name": "Quick", + "amenity": "fast_food" }, - "name": "Rite Aid", - "icon": "pharmacy", + "name": "Quick", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/Rosen-Apotheke": { + "amenity/fast_food/McDonald's": { "tags": { - "name": "Rosen-Apotheke", - "amenity": "pharmacy" + "name": "McDonald's", + "cuisine": "burger", + "amenity": "fast_food" }, - "name": "Rosen-Apotheke", - "icon": "pharmacy", + "name": "McDonald's", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/Rowlands Pharmacy": { + "amenity/fast_food/Burger King": { "tags": { - "name": "Rowlands Pharmacy", - "amenity": "pharmacy" + "name": "Burger King", + "cuisine": "burger", + "amenity": "fast_food" }, - "name": "Rowlands Pharmacy", - "icon": "pharmacy", + "name": "Burger King", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/SalcoBrand": { + "amenity/fast_food/Ali Baba": { "tags": { - "name": "SalcoBrand", - "amenity": "pharmacy" + "name": "Ali Baba", + "amenity": "fast_food" }, - "name": "SalcoBrand", - "icon": "pharmacy", + "name": "Ali Baba", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/Shoppers Drug Mart": { + "amenity/fast_food/Hungry Jacks": { "tags": { - "name": "Shoppers Drug Mart", - "amenity": "pharmacy" + "name": "Hungry Jacks", + "cuisine": "burger", + "amenity": "fast_food" }, - "name": "Shoppers Drug Mart", - "icon": "pharmacy", + "name": "Hungry Jacks", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/Sonnen-Apotheke": { + "amenity/fast_food/Red Rooster": { "tags": { - "name": "Sonnen-Apotheke", - "amenity": "pharmacy" + "name": "Red Rooster", + "amenity": "fast_food" }, - "name": "Sonnen-Apotheke", - "icon": "pharmacy", + "name": "Red Rooster", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/Stadt-Apotheke": { + "amenity/fast_food/KFC": { "tags": { - "name": "Stadt-Apotheke", - "amenity": "pharmacy" + "name": "KFC", + "cuisine": "chicken", + "amenity": "fast_food" }, - "name": "Stadt-Apotheke", - "icon": "pharmacy", + "name": "KFC", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/Stern-Apotheke": { + "amenity/fast_food/Domino's Pizza": { "tags": { - "name": "Stern-Apotheke", - "amenity": "pharmacy" + "name": "Domino's Pizza", + "cuisine": "pizza", + "amenity": "fast_food" }, - "name": "Stern-Apotheke", - "icon": "pharmacy", + "name": "Domino's Pizza", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/Superdrug": { + "amenity/fast_food/Chowking": { "tags": { - "name": "Superdrug", - "amenity": "pharmacy" + "name": "Chowking", + "amenity": "fast_food" }, - "name": "Superdrug", - "icon": "pharmacy", + "name": "Chowking", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/The Generics Pharmacy": { + "amenity/fast_food/Jollibee": { "tags": { - "name": "The Generics Pharmacy", - "amenity": "pharmacy" + "name": "Jollibee", + "amenity": "fast_food" }, - "name": "The Generics Pharmacy", - "icon": "pharmacy", + "name": "Jollibee", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/Walgreens": { + "amenity/fast_food/Hesburger": { "tags": { - "name": "Walgreens", - "amenity": "pharmacy" + "name": "Hesburger", + "amenity": "fast_food" }, - "name": "Walgreens", - "icon": "pharmacy", + "name": "Hesburger", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/Айболит": { + "amenity/fast_food/肯德基": { "tags": { - "name": "Айболит", - "amenity": "pharmacy" + "name": "肯德基", + "amenity": "fast_food" }, - "name": "Айболит", - "icon": "pharmacy", + "name": "肯德基", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/Аптека": { + "amenity/fast_food/Wendy's": { "tags": { - "name": "Аптека", - "amenity": "pharmacy" + "name": "Wendy's", + "cuisine": "burger", + "amenity": "fast_food" }, - "name": "Аптека", - "icon": "pharmacy", + "name": "Wendy's", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/Аптечный пункт": { + "amenity/fast_food/Tim Hortons": { "tags": { - "name": "Аптечный пункт", - "amenity": "pharmacy" + "name": "Tim Hortons", + "amenity": "fast_food" }, - "name": "Аптечный пункт", - "icon": "pharmacy", + "name": "Tim Hortons", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/Вита": { + "amenity/fast_food/Steers": { "tags": { - "name": "Вита", - "amenity": "pharmacy" + "name": "Steers", + "amenity": "fast_food" }, - "name": "Вита", - "icon": "pharmacy", + "name": "Steers", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/Имплозия": { + "amenity/fast_food/Hardee's": { "tags": { - "name": "Имплозия", - "amenity": "pharmacy" + "name": "Hardee's", + "cuisine": "burger", + "amenity": "fast_food" }, - "name": "Имплозия", - "icon": "pharmacy", + "name": "Hardee's", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/Классика": { + "amenity/fast_food/Arby's": { "tags": { - "name": "Классика", - "amenity": "pharmacy" + "name": "Arby's", + "amenity": "fast_food" }, - "name": "Классика", - "icon": "pharmacy", + "name": "Arby's", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/Невис": { + "amenity/fast_food/A&W": { "tags": { - "name": "Невис", - "amenity": "pharmacy" + "name": "A&W", + "amenity": "fast_food" }, - "name": "Невис", - "icon": "pharmacy", + "name": "A&W", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/Первая помощь": { + "amenity/fast_food/Dairy Queen": { "tags": { - "name": "Первая помощь", - "amenity": "pharmacy" + "name": "Dairy Queen", + "amenity": "fast_food" }, - "name": "Первая помощь", - "icon": "pharmacy", + "name": "Dairy Queen", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/Радуга": { + "amenity/fast_food/Hallo Pizza": { "tags": { - "name": "Радуга", - "amenity": "pharmacy" + "name": "Hallo Pizza", + "amenity": "fast_food" }, - "name": "Радуга", - "icon": "pharmacy", + "name": "Hallo Pizza", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/Ригла": { + "amenity/fast_food/Fish & Chips": { "tags": { - "name": "Ригла", - "amenity": "pharmacy" + "name": "Fish & Chips", + "amenity": "fast_food" }, - "name": "Ригла", - "icon": "pharmacy", + "name": "Fish & Chips", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/Фармакор": { + "amenity/fast_food/Harvey's": { "tags": { - "name": "Фармакор", - "amenity": "pharmacy" + "name": "Harvey's", + "amenity": "fast_food" }, - "name": "Фармакор", - "icon": "pharmacy", + "name": "Harvey's", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/Фармация": { + "amenity/fast_food/麥當勞": { "tags": { - "name": "Фармация", - "amenity": "pharmacy" + "name": "麥當勞", + "amenity": "fast_food" }, - "name": "Фармация", - "icon": "pharmacy", + "name": "麥當勞", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/Фармленд": { + "amenity/fast_food/Pizza Pizza": { "tags": { - "name": "Фармленд", - "amenity": "pharmacy" + "name": "Pizza Pizza", + "amenity": "fast_food" }, - "name": "Фармленд", - "icon": "pharmacy", + "name": "Pizza Pizza", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/аптека": { + "amenity/fast_food/Kotipizza": { "tags": { - "name": "аптека", - "amenity": "pharmacy" + "name": "Kotipizza", + "amenity": "fast_food" }, - "name": "аптека", - "icon": "pharmacy", + "name": "Kotipizza", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/ავერსი (Aversi)": { + "amenity/fast_food/Jack in the Box": { "tags": { - "name": "ავერსი (Aversi)", - "amenity": "pharmacy" + "name": "Jack in the Box", + "cuisine": "burger", + "amenity": "fast_food" }, - "name": "ავერსი (Aversi)", - "icon": "pharmacy", + "name": "Jack in the Box", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/サンドラッグ": { + "amenity/fast_food/Istanbul": { "tags": { - "name": "サンドラッグ", - "amenity": "pharmacy" + "name": "Istanbul", + "amenity": "fast_food" }, - "name": "サンドラッグ", - "icon": "pharmacy", + "name": "Istanbul", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/スギ薬局": { + "amenity/fast_food/Kochlöffel": { "tags": { - "name": "スギ薬局", - "amenity": "pharmacy" + "name": "Kochlöffel", + "amenity": "fast_food" }, - "name": "スギ薬局", - "icon": "pharmacy", + "name": "Kochlöffel", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/トモズ (Tomod's)": { + "amenity/fast_food/Döner": { "tags": { - "name": "トモズ (Tomod's)", - "amenity": "pharmacy" + "name": "Döner", + "amenity": "fast_food" }, - "name": "トモズ (Tomod's)", - "icon": "pharmacy", + "name": "Döner", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/ドラッグてらしま (Drug Terashima)": { + "amenity/fast_food/Telepizza": { "tags": { - "name": "ドラッグてらしま (Drug Terashima)", - "amenity": "pharmacy" + "name": "Telepizza", + "amenity": "fast_food" }, - "name": "ドラッグてらしま (Drug Terashima)", - "icon": "pharmacy", + "name": "Telepizza", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pharmacy/マツモトキヨシ": { + "amenity/fast_food/Sibylla": { "tags": { - "name": "マツモトキヨシ", - "amenity": "pharmacy" + "name": "Sibylla", + "amenity": "fast_food" }, - "name": "マツモトキヨシ", - "icon": "pharmacy", + "name": "Sibylla", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ - "operator", + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/Cross Keys": { + "amenity/fast_food/Carl's Jr.": { "tags": { - "name": "Cross Keys", - "amenity": "pub" + "name": "Carl's Jr.", + "cuisine": "burger", + "amenity": "fast_food" }, - "name": "Cross Keys", - "icon": "beer", + "name": "Carl's Jr.", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/Irish Pub": { + "amenity/fast_food/Quiznos": { "tags": { - "name": "Irish Pub", - "amenity": "pub" + "name": "Quiznos", + "cuisine": "sandwich", + "amenity": "fast_food" }, - "name": "Irish Pub", - "icon": "beer", + "name": "Quiznos", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/Kings Arms": { + "amenity/fast_food/Wimpy": { "tags": { - "name": "Kings Arms", - "amenity": "pub" + "name": "Wimpy", + "amenity": "fast_food" }, - "name": "Kings Arms", - "icon": "beer", + "name": "Wimpy", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/Kings Head": { + "amenity/fast_food/Sonic": { "tags": { - "name": "Kings Head", - "amenity": "pub" + "name": "Sonic", + "cuisine": "burger", + "amenity": "fast_food" }, - "name": "Kings Head", - "icon": "beer", + "name": "Sonic", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/New Inn": { + "amenity/fast_food/Taco Bell": { "tags": { - "name": "New Inn", - "amenity": "pub" + "name": "Taco Bell", + "amenity": "fast_food" }, - "name": "New Inn", - "icon": "beer", + "name": "Taco Bell", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/Prince of Wales": { + "amenity/fast_food/Pizza Nova": { "tags": { - "name": "Prince of Wales", - "amenity": "pub" + "name": "Pizza Nova", + "amenity": "fast_food" }, - "name": "Prince of Wales", - "icon": "beer", + "name": "Pizza Nova", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/Red Lion": { + "amenity/fast_food/Papa John's": { "tags": { - "name": "Red Lion", - "amenity": "pub" + "name": "Papa John's", + "cuisine": "pizza", + "amenity": "fast_food" }, - "name": "Red Lion", - "icon": "beer", + "name": "Papa John's", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/Rose & Crown": { + "amenity/fast_food/Nordsee": { "tags": { - "name": "Rose & Crown", - "amenity": "pub" + "name": "Nordsee", + "amenity": "fast_food" }, - "name": "Rose & Crown", - "icon": "beer", + "name": "Nordsee", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/Rose and Crown": { + "amenity/fast_food/Mr. Sub": { "tags": { - "name": "Rose and Crown", - "amenity": "pub" + "name": "Mr. Sub", + "amenity": "fast_food" }, - "name": "Rose and Crown", - "icon": "beer", + "name": "Mr. Sub", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/Royal Hotel": { + "amenity/fast_food/Kebab": { "tags": { - "name": "Royal Hotel", - "amenity": "pub" + "name": "Kebab", + "amenity": "fast_food" }, - "name": "Royal Hotel", - "icon": "beer", + "name": "Kebab", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/Royal Oak": { + "amenity/fast_food/Макдоналдс": { "tags": { - "name": "Royal Oak", - "amenity": "pub" + "name": "Макдоналдс", + "name:en": "McDonald's", + "amenity": "fast_food" }, - "name": "Royal Oak", - "icon": "beer", + "name": "Макдоналдс", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Anchor": { + "amenity/fast_food/Asia Imbiss": { "tags": { - "name": "The Anchor", - "amenity": "pub" + "name": "Asia Imbiss", + "amenity": "fast_food" }, - "name": "The Anchor", - "icon": "beer", + "name": "Asia Imbiss", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Angel": { + "amenity/fast_food/Imbiss": { "tags": { - "name": "The Angel", - "amenity": "pub" + "name": "Imbiss", + "amenity": "fast_food" }, - "name": "The Angel", - "icon": "beer", + "name": "Imbiss", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Bell": { + "amenity/fast_food/Chipotle": { "tags": { - "name": "The Bell", - "amenity": "pub" + "name": "Chipotle", + "cuisine": "mexican", + "amenity": "fast_food" }, - "name": "The Bell", - "icon": "beer", + "name": "Chipotle", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Black Horse": { + "amenity/fast_food/マクドナルド": { "tags": { - "name": "The Black Horse", - "amenity": "pub" + "name": "マクドナルド", + "name:en": "McDonald's", + "cuisine": "burger", + "amenity": "fast_food" }, - "name": "The Black Horse", - "icon": "beer", + "name": "マクドナルド", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Bull": { + "amenity/fast_food/In-N-Out Burger": { "tags": { - "name": "The Bull", - "amenity": "pub" + "name": "In-N-Out Burger", + "amenity": "fast_food" }, - "name": "The Bull", - "icon": "beer", + "name": "In-N-Out Burger", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Castle": { + "amenity/fast_food/Jimmy John's": { "tags": { - "name": "The Castle", - "amenity": "pub" + "name": "Jimmy John's", + "amenity": "fast_food" }, - "name": "The Castle", - "icon": "beer", + "name": "Jimmy John's", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Chequers": { + "amenity/fast_food/Jamba Juice": { "tags": { - "name": "The Chequers", - "amenity": "pub" + "name": "Jamba Juice", + "amenity": "fast_food" }, - "name": "The Chequers", - "icon": "beer", + "name": "Jamba Juice", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Cross Keys": { + "amenity/fast_food/Робин Сдобин": { "tags": { - "name": "The Cross Keys", - "amenity": "pub" + "name": "Робин Сдобин", + "amenity": "fast_food" }, - "name": "The Cross Keys", - "icon": "beer", + "name": "Робин Сдобин", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Crown": { + "amenity/fast_food/Baskin Robbins": { "tags": { - "name": "The Crown", - "amenity": "pub" + "name": "Baskin Robbins", + "amenity": "fast_food" }, - "name": "The Crown", - "icon": "beer", + "name": "Baskin Robbins", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Crown Inn": { + "amenity/fast_food/ケンタッキーフライドチキン": { "tags": { - "name": "The Crown Inn", - "amenity": "pub" + "name": "ケンタッキーフライドチキン", + "name:en": "KFC", + "cuisine": "chicken", + "amenity": "fast_food" }, - "name": "The Crown Inn", - "icon": "beer", + "name": "ケンタッキーフライドチキン", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Fox": { + "amenity/fast_food/吉野家": { "tags": { - "name": "The Fox", - "amenity": "pub" + "name": "吉野家", + "amenity": "fast_food" }, - "name": "The Fox", - "icon": "beer", + "name": "吉野家", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The George": { + "amenity/fast_food/Taco Time": { "tags": { - "name": "The George", - "amenity": "pub" + "name": "Taco Time", + "amenity": "fast_food" }, - "name": "The George", - "icon": "beer", + "name": "Taco Time", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Green Man": { + "amenity/fast_food/松屋": { "tags": { - "name": "The Green Man", - "amenity": "pub" + "name": "松屋", + "name:en": "Matsuya", + "amenity": "fast_food" }, - "name": "The Green Man", - "icon": "beer", + "name": "松屋", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Greyhound": { + "amenity/fast_food/Little Caesars": { "tags": { - "name": "The Greyhound", - "amenity": "pub" + "name": "Little Caesars", + "amenity": "fast_food" }, - "name": "The Greyhound", - "icon": "beer", + "name": "Little Caesars", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Kings Arms": { + "amenity/fast_food/El Pollo Loco": { "tags": { - "name": "The Kings Arms", - "amenity": "pub" + "name": "El Pollo Loco", + "amenity": "fast_food" }, - "name": "The Kings Arms", - "icon": "beer", + "name": "El Pollo Loco", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Kings Head": { + "amenity/fast_food/Del Taco": { "tags": { - "name": "The Kings Head", - "amenity": "pub" + "name": "Del Taco", + "amenity": "fast_food" }, - "name": "The Kings Head", - "icon": "beer", + "name": "Del Taco", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The New Inn": { + "amenity/fast_food/White Castle": { "tags": { - "name": "The New Inn", - "amenity": "pub" + "name": "White Castle", + "amenity": "fast_food" }, - "name": "The New Inn", - "icon": "beer", + "name": "White Castle", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Plough": { + "amenity/fast_food/Boston Market": { "tags": { - "name": "The Plough", - "amenity": "pub" + "name": "Boston Market", + "amenity": "fast_food" }, - "name": "The Plough", - "icon": "beer", + "name": "Boston Market", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Prince of Wales": { + "amenity/fast_food/Chick-fil-A": { "tags": { - "name": "The Prince of Wales", - "amenity": "pub" + "name": "Chick-fil-A", + "cuisine": "chicken", + "amenity": "fast_food" }, - "name": "The Prince of Wales", - "icon": "beer", + "name": "Chick-fil-A", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Queens Head": { + "amenity/fast_food/Panda Express": { "tags": { - "name": "The Queens Head", - "amenity": "pub" + "name": "Panda Express", + "amenity": "fast_food" }, - "name": "The Queens Head", - "icon": "beer", + "name": "Panda Express", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Railway": { + "amenity/fast_food/Whataburger": { "tags": { - "name": "The Railway", - "amenity": "pub" + "name": "Whataburger", + "amenity": "fast_food" }, - "name": "The Railway", - "icon": "beer", + "name": "Whataburger", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Red Lion": { + "amenity/fast_food/Taco John's": { "tags": { - "name": "The Red Lion", - "amenity": "pub" + "name": "Taco John's", + "amenity": "fast_food" }, - "name": "The Red Lion", - "icon": "beer", + "name": "Taco John's", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Rising Sun": { + "amenity/fast_food/Теремок": { "tags": { - "name": "The Rising Sun", - "amenity": "pub" + "name": "Теремок", + "amenity": "fast_food" }, - "name": "The Rising Sun", - "icon": "beer", + "name": "Теремок", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Royal Oak": { + "amenity/fast_food/Culver's": { "tags": { - "name": "The Royal Oak", - "amenity": "pub" + "name": "Culver's", + "amenity": "fast_food" }, - "name": "The Royal Oak", - "icon": "beer", + "name": "Culver's", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Ship": { + "amenity/fast_food/Five Guys": { "tags": { - "name": "The Ship", - "amenity": "pub" + "name": "Five Guys", + "amenity": "fast_food" }, - "name": "The Ship", - "icon": "beer", + "name": "Five Guys", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Ship Inn": { + "amenity/fast_food/Church's Chicken": { "tags": { - "name": "The Ship Inn", - "amenity": "pub" + "name": "Church's Chicken", + "amenity": "fast_food" }, - "name": "The Ship Inn", - "icon": "beer", + "name": "Church's Chicken", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Star": { + "amenity/fast_food/Popeye's": { "tags": { - "name": "The Star", - "amenity": "pub" + "name": "Popeye's", + "cuisine": "chicken", + "amenity": "fast_food" }, - "name": "The Star", - "icon": "beer", + "name": "Popeye's", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Swan": { + "amenity/fast_food/Long John Silver's": { "tags": { - "name": "The Swan", - "amenity": "pub" + "name": "Long John Silver's", + "amenity": "fast_food" }, - "name": "The Swan", - "icon": "beer", + "name": "Long John Silver's", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Victoria": { + "amenity/fast_food/Pollo Campero": { "tags": { - "name": "The Victoria", - "amenity": "pub" + "name": "Pollo Campero", + "amenity": "fast_food" }, - "name": "The Victoria", - "icon": "beer", + "name": "Pollo Campero", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The Wheatsheaf": { + "amenity/fast_food/すき家": { "tags": { - "name": "The Wheatsheaf", - "amenity": "pub" + "name": "すき家", + "name:en": "SUKIYA", + "amenity": "fast_food" }, - "name": "The Wheatsheaf", - "icon": "beer", + "name": "すき家", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The White Hart": { + "amenity/fast_food/モスバーガー": { "tags": { - "name": "The White Hart", - "amenity": "pub" + "name": "モスバーガー", + "name:en": "MOS BURGER", + "amenity": "fast_food" }, - "name": "The White Hart", - "icon": "beer", + "name": "モスバーガー", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The White Horse": { + "amenity/fast_food/Русский Аппетит": { "tags": { - "name": "The White Horse", - "amenity": "pub" + "name": "Русский Аппетит", + "amenity": "fast_food" }, - "name": "The White Horse", - "icon": "beer", + "name": "Русский Аппетит", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/pub/The White Lion": { + "amenity/fast_food/なか卯": { "tags": { - "name": "The White Lion", - "amenity": "pub" + "name": "なか卯", + "amenity": "fast_food" }, - "name": "The White Lion", - "icon": "beer", + "name": "なか卯", + "icon": "fast-food", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", "building_area", - "address" - ], - "suggestion": true - }, - "amenity/recycling/Altglas": { - "tags": { - "name": "Altglas", - "amenity": "recycling" - }, - "name": "Altglas", - "icon": "recycling", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cans", - "glass", - "paper", - "clothes" - ], - "suggestion": true - }, - "amenity/recycling/Déchèterie": { - "tags": { - "name": "Déchèterie", - "amenity": "recycling" - }, - "name": "Déchèterie", - "icon": "recycling", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cans", - "glass", - "paper", - "clothes" - ], - "suggestion": true - }, - "amenity/recycling/Glas": { - "tags": { - "name": "Glas", - "amenity": "recycling" - }, - "name": "Glas", - "icon": "recycling", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cans", - "glass", - "paper", - "clothes" - ], - "suggestion": true - }, - "amenity/recycling/Glascontainer": { - "tags": { - "name": "Glascontainer", - "amenity": "recycling" - }, - "name": "Glascontainer", - "icon": "recycling", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cans", - "glass", - "paper", - "clothes" - ], - "suggestion": true - }, - "amenity/recycling/Recyclinghof": { - "tags": { - "name": "Recyclinghof", - "amenity": "recycling" - }, - "name": "Recyclinghof", - "icon": "recycling", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cans", - "glass", - "paper", - "clothes" - ], - "suggestion": true - }, - "amenity/recycling/Wertstoffhof": { - "tags": { - "name": "Wertstoffhof", - "amenity": "recycling" - }, - "name": "Wertstoffhof", - "icon": "recycling", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cans", - "glass", - "paper", - "clothes" + "address", + "opening_hours" ], "suggestion": true }, - "amenity/restaurant/Adler": { + "amenity/restaurant/Pizza Hut": { "tags": { - "name": "Adler", + "name": "Pizza Hut", "amenity": "restaurant" }, - "name": "Adler", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Akropolis": { - "tags": { - "name": "Akropolis", - "amenity": "restaurant" - }, - "name": "Akropolis", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Alte Post": { - "tags": { - "name": "Alte Post", - "amenity": "restaurant" - }, - "name": "Alte Post", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Applebee's": { - "tags": { - "name": "Applebee's", - "amenity": "restaurant" - }, - "name": "Applebee's", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Athen": { - "tags": { - "name": "Athen", - "amenity": "restaurant" - }, - "name": "Athen", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Bella Italia": { - "tags": { - "name": "Bella Italia", - "amenity": "restaurant" - }, - "name": "Bella Italia", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Bob Evans": { - "tags": { - "name": "Bob Evans", - "amenity": "restaurant" - }, - "name": "Bob Evans", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Boston Pizza": { - "tags": { - "name": "Boston Pizza", - "amenity": "restaurant" - }, - "name": "Boston Pizza", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Buffalo Grill": { - "tags": { - "name": "Buffalo Grill", - "amenity": "restaurant" - }, - "name": "Buffalo Grill", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Buffalo Wild Wings": { - "tags": { - "name": "Buffalo Wild Wings", - "amenity": "restaurant" - }, - "name": "Buffalo Wild Wings", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Bären": { - "tags": { - "name": "Bären", - "amenity": "restaurant" - }, - "name": "Bären", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/California Pizza Kitchen": { - "tags": { - "name": "California Pizza Kitchen", - "amenity": "restaurant" - }, - "name": "California Pizza Kitchen", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Chili's": { - "tags": { - "name": "Chili's", - "amenity": "restaurant" - }, - "name": "Chili's", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/China Garden": { - "tags": { - "name": "China Garden", - "amenity": "restaurant" - }, - "name": "China Garden", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/China Town": { - "tags": { - "name": "China Town", - "amenity": "restaurant" - }, - "name": "China Town", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Courtepaille": { - "tags": { - "name": "Courtepaille", - "amenity": "restaurant" - }, - "name": "Courtepaille", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Cracker Barrel": { - "tags": { - "name": "Cracker Barrel", - "amenity": "restaurant" - }, - "name": "Cracker Barrel", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Da Vinci": { - "tags": { - "name": "Da Vinci", - "amenity": "restaurant" - }, - "name": "Da Vinci", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Delphi": { - "tags": { - "name": "Delphi", - "amenity": "restaurant" - }, - "name": "Delphi", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Denny's": { - "tags": { - "name": "Denny's", - "amenity": "restaurant" - }, - "name": "Denny's", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Deutsches Haus": { - "tags": { - "name": "Deutsches Haus", - "amenity": "restaurant" - }, - "name": "Deutsches Haus", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Dionysos": { - "tags": { - "name": "Dionysos", - "amenity": "restaurant" - }, - "name": "Dionysos", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Dolce Vita": { - "tags": { - "name": "Dolce Vita", - "amenity": "restaurant" - }, - "name": "Dolce Vita", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/El Greco": { - "tags": { - "name": "El Greco", - "amenity": "restaurant" - }, - "name": "El Greco", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Flunch": { - "tags": { - "name": "Flunch", - "amenity": "restaurant" - }, - "name": "Flunch", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Frankie & Benny's": { - "tags": { - "name": "Frankie & Benny's", - "amenity": "restaurant" - }, - "name": "Frankie & Benny's", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Friendly's": { - "tags": { - "name": "Friendly's", - "amenity": "restaurant" - }, - "name": "Friendly's", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Gasthaus Adler": { - "tags": { - "name": "Gasthaus Adler", - "amenity": "restaurant" - }, - "name": "Gasthaus Adler", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Gasthaus Krone": { - "tags": { - "name": "Gasthaus Krone", - "amenity": "restaurant" - }, - "name": "Gasthaus Krone", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Gasthof zur Post": { - "tags": { - "name": "Gasthof zur Post", - "amenity": "restaurant" - }, - "name": "Gasthof zur Post", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Golden Corral": { - "tags": { - "name": "Golden Corral", - "amenity": "restaurant" - }, - "name": "Golden Corral", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Grüner Baum": { - "tags": { - "name": "Grüner Baum", - "amenity": "restaurant" - }, - "name": "Grüner Baum", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Hard Rock Cafe": { - "tags": { - "name": "Hard Rock Cafe", - "amenity": "restaurant" - }, - "name": "Hard Rock Cafe", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Hellas": { - "tags": { - "name": "Hellas", - "amenity": "restaurant" - }, - "name": "Hellas", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Hippopotamus": { - "tags": { - "name": "Hippopotamus", - "amenity": "restaurant" - }, - "name": "Hippopotamus", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Hirsch": { - "tags": { - "name": "Hirsch", - "amenity": "restaurant" - }, - "name": "Hirsch", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Hirschen": { - "tags": { - "name": "Hirschen", - "amenity": "restaurant" - }, - "name": "Hirschen", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Hong Kong": { - "tags": { - "name": "Hong Kong", - "amenity": "restaurant" - }, - "name": "Hong Kong", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Hooters": { - "tags": { - "name": "Hooters", - "amenity": "restaurant" - }, - "name": "Hooters", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/IHOP": { - "tags": { - "name": "IHOP", - "amenity": "restaurant" - }, - "name": "IHOP", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Kantine": { - "tags": { - "name": "Kantine", - "amenity": "restaurant" - }, - "name": "Kantine", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Kelsey's": { - "tags": { - "name": "Kelsey's", - "amenity": "restaurant" - }, - "name": "Kelsey's", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Kirchenwirt": { - "tags": { - "name": "Kirchenwirt", - "amenity": "restaurant" - }, - "name": "Kirchenwirt", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Kreuz": { - "tags": { - "name": "Kreuz", - "amenity": "restaurant" - }, - "name": "Kreuz", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Krone": { - "tags": { - "name": "Krone", - "amenity": "restaurant" - }, - "name": "Krone", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/La Cantina": { - "tags": { - "name": "La Cantina", - "amenity": "restaurant" - }, - "name": "La Cantina", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/La Dolce Vita": { - "tags": { - "name": "La Dolce Vita", - "amenity": "restaurant" - }, - "name": "La Dolce Vita", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/La Perla": { - "tags": { - "name": "La Perla", - "amenity": "restaurant" - }, - "name": "La Perla", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/La Piazza": { - "tags": { - "name": "La Piazza", - "amenity": "restaurant" - }, - "name": "La Piazza", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Lamm": { - "tags": { - "name": "Lamm", - "amenity": "restaurant" - }, - "name": "Lamm", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Linde": { - "tags": { - "name": "Linde", - "amenity": "restaurant" - }, - "name": "Linde", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Lindenhof": { - "tags": { - "name": "Lindenhof", - "amenity": "restaurant" - }, - "name": "Lindenhof", + "name": "Pizza Hut", "icon": "restaurant", "geometry": [ "point", @@ -80669,6 +75283,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "cuisine", "building_area", "address", + "opening_hours", "capacity" ], "suggestion": true @@ -80689,1076 +75304,17 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "cuisine", "building_area", "address", + "opening_hours", "capacity" ], "suggestion": true }, - "amenity/restaurant/Longhorn Steakhouse": { + "amenity/restaurant/Adler": { "tags": { - "name": "Longhorn Steakhouse", + "name": "Adler", "amenity": "restaurant" }, - "name": "Longhorn Steakhouse", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Lotus": { - "tags": { - "name": "Lotus", - "amenity": "restaurant" - }, - "name": "Lotus", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Löwen": { - "tags": { - "name": "Löwen", - "amenity": "restaurant" - }, - "name": "Löwen", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Mamma Mia": { - "tags": { - "name": "Mamma Mia", - "amenity": "restaurant" - }, - "name": "Mamma Mia", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Mandarin": { - "tags": { - "name": "Mandarin", - "amenity": "restaurant" - }, - "name": "Mandarin", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Mang Inasal": { - "tags": { - "name": "Mang Inasal", - "amenity": "restaurant" - }, - "name": "Mang Inasal", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Mensa": { - "tags": { - "name": "Mensa", - "amenity": "restaurant" - }, - "name": "Mensa", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Milano": { - "tags": { - "name": "Milano", - "amenity": "restaurant" - }, - "name": "Milano", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Mykonos": { - "tags": { - "name": "Mykonos", - "amenity": "restaurant" - }, - "name": "Mykonos", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Nando's": { - "tags": { - "name": "Nando's", - "amenity": "restaurant" - }, - "name": "Nando's", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Ochsen": { - "tags": { - "name": "Ochsen", - "amenity": "restaurant" - }, - "name": "Ochsen", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Olive Garden": { - "tags": { - "name": "Olive Garden", - "amenity": "restaurant" - }, - "name": "Olive Garden", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Olympia": { - "tags": { - "name": "Olympia", - "amenity": "restaurant" - }, - "name": "Olympia", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Outback Steakhouse": { - "tags": { - "name": "Outback Steakhouse", - "amenity": "restaurant" - }, - "name": "Outback Steakhouse", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Panera Bread": { - "tags": { - "name": "Panera Bread", - "amenity": "restaurant" - }, - "name": "Panera Bread", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Panorama": { - "tags": { - "name": "Panorama", - "amenity": "restaurant" - }, - "name": "Panorama", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Peking": { - "tags": { - "name": "Peking", - "amenity": "restaurant" - }, - "name": "Peking", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Perkins": { - "tags": { - "name": "Perkins", - "amenity": "restaurant" - }, - "name": "Perkins", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Pizza Express": { - "tags": { - "name": "Pizza Express", - "amenity": "restaurant" - }, - "name": "Pizza Express", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Pizza Hut": { - "tags": { - "name": "Pizza Hut", - "amenity": "restaurant" - }, - "name": "Pizza Hut", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Poseidon": { - "tags": { - "name": "Poseidon", - "amenity": "restaurant" - }, - "name": "Poseidon", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Prezzo": { - "tags": { - "name": "Prezzo", - "amenity": "restaurant" - }, - "name": "Prezzo", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Ratskeller": { - "tags": { - "name": "Ratskeller", - "amenity": "restaurant" - }, - "name": "Ratskeller", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Red Lobster": { - "tags": { - "name": "Red Lobster", - "amenity": "restaurant" - }, - "name": "Red Lobster", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Red Robin": { - "tags": { - "name": "Red Robin", - "amenity": "restaurant" - }, - "name": "Red Robin", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Rhodos": { - "tags": { - "name": "Rhodos", - "amenity": "restaurant" - }, - "name": "Rhodos", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Roma": { - "tags": { - "name": "Roma", - "amenity": "restaurant" - }, - "name": "Roma", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Ruby Tuesday": { - "tags": { - "name": "Ruby Tuesday", - "amenity": "restaurant" - }, - "name": "Ruby Tuesday", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Rössli": { - "tags": { - "name": "Rössli", - "amenity": "restaurant" - }, - "name": "Rössli", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Sakura": { - "tags": { - "name": "Sakura", - "amenity": "restaurant" - }, - "name": "Sakura", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/San Marco": { - "tags": { - "name": "San Marco", - "amenity": "restaurant" - }, - "name": "San Marco", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Schwarzer Adler": { - "tags": { - "name": "Schwarzer Adler", - "amenity": "restaurant" - }, - "name": "Schwarzer Adler", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Schützenhaus": { - "tags": { - "name": "Schützenhaus", - "amenity": "restaurant" - }, - "name": "Schützenhaus", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Seeblick": { - "tags": { - "name": "Seeblick", - "amenity": "restaurant" - }, - "name": "Seeblick", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Shanghai": { - "tags": { - "name": "Shanghai", - "amenity": "restaurant" - }, - "name": "Shanghai", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Shari's": { - "tags": { - "name": "Shari's", - "amenity": "restaurant" - }, - "name": "Shari's", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Sonne": { - "tags": { - "name": "Sonne", - "amenity": "restaurant" - }, - "name": "Sonne", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Sportheim": { - "tags": { - "name": "Sportheim", - "amenity": "restaurant" - }, - "name": "Sportheim", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Spur": { - "tags": { - "name": "Spur", - "amenity": "restaurant" - }, - "name": "Spur", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Sternen": { - "tags": { - "name": "Sternen", - "amenity": "restaurant" - }, - "name": "Sternen", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Swiss Chalet": { - "tags": { - "name": "Swiss Chalet", - "amenity": "restaurant" - }, - "name": "Swiss Chalet", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/TGI Friday's": { - "tags": { - "name": "TGI Friday's", - "amenity": "restaurant" - }, - "name": "TGI Friday's", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Taj Mahal": { - "tags": { - "name": "Taj Mahal", - "amenity": "restaurant" - }, - "name": "Taj Mahal", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Texas Roadhouse": { - "tags": { - "name": "Texas Roadhouse", - "amenity": "restaurant" - }, - "name": "Texas Roadhouse", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/The Keg": { - "tags": { - "name": "The Keg", - "amenity": "restaurant" - }, - "name": "The Keg", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Traube": { - "tags": { - "name": "Traube", - "amenity": "restaurant" - }, - "name": "Traube", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Vapiano": { - "tags": { - "name": "Vapiano", - "amenity": "restaurant" - }, - "name": "Vapiano", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Village Inn": { - "tags": { - "name": "Village Inn", - "amenity": "restaurant" - }, - "name": "Village Inn", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Vips": { - "tags": { - "name": "Vips", - "amenity": "restaurant" - }, - "name": "Vips", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Waffle House": { - "tags": { - "name": "Waffle House", - "amenity": "restaurant" - }, - "name": "Waffle House", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Wagamama": { - "tags": { - "name": "Wagamama", - "amenity": "restaurant" - }, - "name": "Wagamama", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Waldschänke": { - "tags": { - "name": "Waldschänke", - "amenity": "restaurant" - }, - "name": "Waldschänke", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Zizzi": { - "tags": { - "name": "Zizzi", - "amenity": "restaurant" - }, - "name": "Zizzi", - "icon": "restaurant", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "cuisine", - "building_area", - "address", - "capacity" - ], - "suggestion": true - }, - "amenity/restaurant/Zum Löwen": { - "tags": { - "name": "Zum Löwen", - "amenity": "restaurant" - }, - "name": "Zum Löwen", + "name": "Adler", "icon": "restaurant", "geometry": [ "point", @@ -81769,6 +75325,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "cuisine", "building_area", "address", + "opening_hours", "capacity" ], "suggestion": true @@ -81789,16 +75346,17 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "cuisine", "building_area", "address", + "opening_hours", "capacity" ], "suggestion": true }, - "amenity/restaurant/Zur Linde": { + "amenity/restaurant/Deutsches Haus": { "tags": { - "name": "Zur Linde", + "name": "Deutsches Haus", "amenity": "restaurant" }, - "name": "Zur Linde", + "name": "Deutsches Haus", "icon": "restaurant", "geometry": [ "point", @@ -81809,16 +75367,17 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "cuisine", "building_area", "address", + "opening_hours", "capacity" ], "suggestion": true }, - "amenity/restaurant/Zur Post": { + "amenity/restaurant/Krone": { "tags": { - "name": "Zur Post", + "name": "Krone", "amenity": "restaurant" }, - "name": "Zur Post", + "name": "Krone", "icon": "restaurant", "geometry": [ "point", @@ -81829,6 +75388,154 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "cuisine", "building_area", "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Akropolis": { + "tags": { + "name": "Akropolis", + "amenity": "restaurant" + }, + "name": "Akropolis", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Schützenhaus": { + "tags": { + "name": "Schützenhaus", + "amenity": "restaurant" + }, + "name": "Schützenhaus", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/TGI Friday's": { + "tags": { + "name": "TGI Friday's", + "amenity": "restaurant" + }, + "name": "TGI Friday's", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Kreuz": { + "tags": { + "name": "Kreuz", + "amenity": "restaurant" + }, + "name": "Kreuz", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Waldschänke": { + "tags": { + "name": "Waldschänke", + "amenity": "restaurant" + }, + "name": "Waldschänke", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/La Piazza": { + "tags": { + "name": "La Piazza", + "amenity": "restaurant" + }, + "name": "La Piazza", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Lamm": { + "tags": { + "name": "Lamm", + "amenity": "restaurant" + }, + "name": "Lamm", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", "capacity" ], "suggestion": true @@ -81849,16 +75556,17 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "cuisine", "building_area", "address", + "opening_hours", "capacity" ], "suggestion": true }, - "amenity/restaurant/Евразия": { + "amenity/restaurant/Zur Linde": { "tags": { - "name": "Евразия", + "name": "Zur Linde", "amenity": "restaurant" }, - "name": "Евразия", + "name": "Zur Linde", "icon": "restaurant", "geometry": [ "point", @@ -81869,16 +75577,17 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "cuisine", "building_area", "address", + "opening_hours", "capacity" ], "suggestion": true }, - "amenity/restaurant/Якитория": { + "amenity/restaurant/Poseidon": { "tags": { - "name": "Якитория", + "name": "Poseidon", "amenity": "restaurant" }, - "name": "Якитория", + "name": "Poseidon", "icon": "restaurant", "geometry": [ "point", @@ -81889,6 +75598,1729 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "cuisine", "building_area", "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Shanghai": { + "tags": { + "name": "Shanghai", + "amenity": "restaurant" + }, + "name": "Shanghai", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Red Lobster": { + "tags": { + "name": "Red Lobster", + "amenity": "restaurant" + }, + "name": "Red Lobster", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Zum Löwen": { + "tags": { + "name": "Zum Löwen", + "amenity": "restaurant" + }, + "name": "Zum Löwen", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Swiss Chalet": { + "tags": { + "name": "Swiss Chalet", + "amenity": "restaurant" + }, + "name": "Swiss Chalet", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Olympia": { + "tags": { + "name": "Olympia", + "amenity": "restaurant" + }, + "name": "Olympia", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Wagamama": { + "tags": { + "name": "Wagamama", + "amenity": "restaurant" + }, + "name": "Wagamama", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Frankie & Benny's": { + "tags": { + "name": "Frankie & Benny's", + "amenity": "restaurant" + }, + "name": "Frankie & Benny's", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Hooters": { + "tags": { + "name": "Hooters", + "amenity": "restaurant" + }, + "name": "Hooters", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Sternen": { + "tags": { + "name": "Sternen", + "amenity": "restaurant" + }, + "name": "Sternen", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Hirschen": { + "tags": { + "name": "Hirschen", + "amenity": "restaurant" + }, + "name": "Hirschen", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Denny's": { + "tags": { + "name": "Denny's", + "amenity": "restaurant" + }, + "name": "Denny's", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Athen": { + "tags": { + "name": "Athen", + "amenity": "restaurant" + }, + "name": "Athen", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Sonne": { + "tags": { + "name": "Sonne", + "amenity": "restaurant" + }, + "name": "Sonne", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Hirsch": { + "tags": { + "name": "Hirsch", + "amenity": "restaurant" + }, + "name": "Hirsch", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Ratskeller": { + "tags": { + "name": "Ratskeller", + "amenity": "restaurant" + }, + "name": "Ratskeller", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/La Cantina": { + "tags": { + "name": "La Cantina", + "amenity": "restaurant" + }, + "name": "La Cantina", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Gasthaus Krone": { + "tags": { + "name": "Gasthaus Krone", + "amenity": "restaurant" + }, + "name": "Gasthaus Krone", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/El Greco": { + "tags": { + "name": "El Greco", + "amenity": "restaurant" + }, + "name": "El Greco", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Gasthof zur Post": { + "tags": { + "name": "Gasthof zur Post", + "amenity": "restaurant" + }, + "name": "Gasthof zur Post", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Nando's": { + "tags": { + "name": "Nando's", + "amenity": "restaurant" + }, + "name": "Nando's", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Löwen": { + "tags": { + "name": "Löwen", + "amenity": "restaurant" + }, + "name": "Löwen", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Pizza Express": { + "tags": { + "name": "Pizza Express", + "amenity": "restaurant" + }, + "name": "Pizza Express", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Mandarin": { + "tags": { + "name": "Mandarin", + "amenity": "restaurant" + }, + "name": "Mandarin", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Hong Kong": { + "tags": { + "name": "Hong Kong", + "amenity": "restaurant" + }, + "name": "Hong Kong", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Zizzi": { + "tags": { + "name": "Zizzi", + "amenity": "restaurant" + }, + "name": "Zizzi", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Cracker Barrel": { + "tags": { + "name": "Cracker Barrel", + "amenity": "restaurant" + }, + "name": "Cracker Barrel", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Rhodos": { + "tags": { + "name": "Rhodos", + "amenity": "restaurant" + }, + "name": "Rhodos", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Lindenhof": { + "tags": { + "name": "Lindenhof", + "amenity": "restaurant" + }, + "name": "Lindenhof", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Milano": { + "tags": { + "name": "Milano", + "amenity": "restaurant" + }, + "name": "Milano", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Dolce Vita": { + "tags": { + "name": "Dolce Vita", + "amenity": "restaurant" + }, + "name": "Dolce Vita", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Kirchenwirt": { + "tags": { + "name": "Kirchenwirt", + "amenity": "restaurant" + }, + "name": "Kirchenwirt", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Kantine": { + "tags": { + "name": "Kantine", + "amenity": "restaurant" + }, + "name": "Kantine", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Ochsen": { + "tags": { + "name": "Ochsen", + "amenity": "restaurant" + }, + "name": "Ochsen", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Spur": { + "tags": { + "name": "Spur", + "amenity": "restaurant" + }, + "name": "Spur", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Mykonos": { + "tags": { + "name": "Mykonos", + "amenity": "restaurant" + }, + "name": "Mykonos", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Lotus": { + "tags": { + "name": "Lotus", + "amenity": "restaurant" + }, + "name": "Lotus", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Applebee's": { + "tags": { + "name": "Applebee's", + "amenity": "restaurant" + }, + "name": "Applebee's", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Flunch": { + "tags": { + "name": "Flunch", + "amenity": "restaurant" + }, + "name": "Flunch", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Zur Post": { + "tags": { + "name": "Zur Post", + "amenity": "restaurant" + }, + "name": "Zur Post", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/China Town": { + "tags": { + "name": "China Town", + "amenity": "restaurant" + }, + "name": "China Town", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/La Dolce Vita": { + "tags": { + "name": "La Dolce Vita", + "amenity": "restaurant" + }, + "name": "La Dolce Vita", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Waffle House": { + "tags": { + "name": "Waffle House", + "amenity": "restaurant" + }, + "name": "Waffle House", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Delphi": { + "tags": { + "name": "Delphi", + "amenity": "restaurant" + }, + "name": "Delphi", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Linde": { + "tags": { + "name": "Linde", + "amenity": "restaurant" + }, + "name": "Linde", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Dionysos": { + "tags": { + "name": "Dionysos", + "amenity": "restaurant" + }, + "name": "Dionysos", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Outback Steakhouse": { + "tags": { + "name": "Outback Steakhouse", + "amenity": "restaurant" + }, + "name": "Outback Steakhouse", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Kelsey's": { + "tags": { + "name": "Kelsey's", + "amenity": "restaurant" + }, + "name": "Kelsey's", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Boston Pizza": { + "tags": { + "name": "Boston Pizza", + "amenity": "restaurant" + }, + "name": "Boston Pizza", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Bella Italia": { + "tags": { + "name": "Bella Italia", + "amenity": "restaurant" + }, + "name": "Bella Italia", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Sizzler": { + "tags": { + "name": "Sizzler", + "amenity": "restaurant" + }, + "name": "Sizzler", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Grüner Baum": { + "tags": { + "name": "Grüner Baum", + "amenity": "restaurant" + }, + "name": "Grüner Baum", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Taj Mahal": { + "tags": { + "name": "Taj Mahal", + "amenity": "restaurant" + }, + "name": "Taj Mahal", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Rössli": { + "tags": { + "name": "Rössli", + "amenity": "restaurant" + }, + "name": "Rössli", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Traube": { + "tags": { + "name": "Traube", + "amenity": "restaurant" + }, + "name": "Traube", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Red Robin": { + "tags": { + "name": "Red Robin", + "amenity": "restaurant" + }, + "name": "Red Robin", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Roma": { + "tags": { + "name": "Roma", + "amenity": "restaurant" + }, + "name": "Roma", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/San Marco": { + "tags": { + "name": "San Marco", + "amenity": "restaurant" + }, + "name": "San Marco", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Hellas": { + "tags": { + "name": "Hellas", + "amenity": "restaurant" + }, + "name": "Hellas", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/La Perla": { + "tags": { + "name": "La Perla", + "amenity": "restaurant" + }, + "name": "La Perla", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Vips": { + "tags": { + "name": "Vips", + "amenity": "restaurant" + }, + "name": "Vips", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Panera Bread": { + "tags": { + "name": "Panera Bread", + "amenity": "restaurant" + }, + "name": "Panera Bread", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Da Vinci": { + "tags": { + "name": "Da Vinci", + "amenity": "restaurant" + }, + "name": "Da Vinci", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Hippopotamus": { + "tags": { + "name": "Hippopotamus", + "amenity": "restaurant" + }, + "name": "Hippopotamus", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Prezzo": { + "tags": { + "name": "Prezzo", + "amenity": "restaurant" + }, + "name": "Prezzo", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Courtepaille": { + "tags": { + "name": "Courtepaille", + "amenity": "restaurant" + }, + "name": "Courtepaille", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Hard Rock Cafe": { + "tags": { + "name": "Hard Rock Cafe", + "amenity": "restaurant" + }, + "name": "Hard Rock Cafe", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Panorama": { + "tags": { + "name": "Panorama", + "amenity": "restaurant" + }, + "name": "Panorama", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/デニーズ": { + "tags": { + "name": "デニーズ", + "amenity": "restaurant" + }, + "name": "デニーズ", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Sportheim": { + "tags": { + "name": "Sportheim", + "amenity": "restaurant" + }, + "name": "Sportheim", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/餃子の王将": { + "tags": { + "name": "餃子の王将", + "amenity": "restaurant" + }, + "name": "餃子の王将", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Bären": { + "tags": { + "name": "Bären", + "amenity": "restaurant" + }, + "name": "Bären", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Alte Post": { + "tags": { + "name": "Alte Post", + "amenity": "restaurant" + }, + "name": "Alte Post", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/China Garden": { + "tags": { + "name": "China Garden", + "amenity": "restaurant" + }, + "name": "China Garden", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Vapiano": { + "tags": { + "name": "Vapiano", + "amenity": "restaurant" + }, + "name": "Vapiano", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Mamma Mia": { + "tags": { + "name": "Mamma Mia", + "amenity": "restaurant" + }, + "name": "Mamma Mia", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Schwarzer Adler": { + "tags": { + "name": "Schwarzer Adler", + "amenity": "restaurant" + }, + "name": "Schwarzer Adler", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/IHOP": { + "tags": { + "name": "IHOP", + "amenity": "restaurant" + }, + "name": "IHOP", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Chili's": { + "tags": { + "name": "Chili's", + "amenity": "restaurant" + }, + "name": "Chili's", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Olive Garden": { + "tags": { + "name": "Olive Garden", + "amenity": "restaurant" + }, + "name": "Olive Garden", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Friendly's": { + "tags": { + "name": "Friendly's", + "amenity": "restaurant" + }, + "name": "Friendly's", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Buffalo Grill": { + "tags": { + "name": "Buffalo Grill", + "amenity": "restaurant" + }, + "name": "Buffalo Grill", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Texas Roadhouse": { + "tags": { + "name": "Texas Roadhouse", + "amenity": "restaurant" + }, + "name": "Texas Roadhouse", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", "capacity" ], "suggestion": true @@ -81910,6 +77342,70 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "cuisine", "building_area", "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Sakura": { + "tags": { + "name": "Sakura", + "amenity": "restaurant" + }, + "name": "Sakura", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Mensa": { + "tags": { + "name": "Mensa", + "amenity": "restaurant" + }, + "name": "Mensa", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/The Keg": { + "tags": { + "name": "The Keg", + "amenity": "restaurant" + }, + "name": "The Keg", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", "capacity" ], "suggestion": true @@ -81930,16 +77426,17 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "cuisine", "building_area", "address", + "opening_hours", "capacity" ], "suggestion": true }, - "amenity/restaurant/ジョナサン": { + "amenity/restaurant/La Strada": { "tags": { - "name": "ジョナサン", + "name": "La Strada", "amenity": "restaurant" }, - "name": "ジョナサン", + "name": "La Strada", "icon": "restaurant", "geometry": [ "point", @@ -81950,16 +77447,17 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "cuisine", "building_area", "address", + "opening_hours", "capacity" ], "suggestion": true }, - "amenity/restaurant/デニーズ": { + "amenity/restaurant/Village Inn": { "tags": { - "name": "デニーズ", + "name": "Village Inn", "amenity": "restaurant" }, - "name": "デニーズ", + "name": "Village Inn", "icon": "restaurant", "geometry": [ "point", @@ -81970,6 +77468,196 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "cuisine", "building_area", "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Buffalo Wild Wings": { + "tags": { + "name": "Buffalo Wild Wings", + "amenity": "restaurant" + }, + "name": "Buffalo Wild Wings", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Peking": { + "tags": { + "name": "Peking", + "amenity": "restaurant" + }, + "name": "Peking", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/California Pizza Kitchen": { + "tags": { + "name": "California Pizza Kitchen", + "amenity": "restaurant" + }, + "name": "California Pizza Kitchen", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Якитория": { + "tags": { + "name": "Якитория", + "amenity": "restaurant" + }, + "name": "Якитория", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Golden Corral": { + "tags": { + "name": "Golden Corral", + "amenity": "restaurant" + }, + "name": "Golden Corral", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Perkins": { + "tags": { + "name": "Perkins", + "amenity": "restaurant" + }, + "name": "Perkins", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Ruby Tuesday": { + "tags": { + "name": "Ruby Tuesday", + "amenity": "restaurant" + }, + "name": "Ruby Tuesday", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Shari's": { + "tags": { + "name": "Shari's", + "amenity": "restaurant" + }, + "name": "Shari's", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Bob Evans": { + "tags": { + "name": "Bob Evans", + "amenity": "restaurant" + }, + "name": "Bob Evans", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", "capacity" ], "suggestion": true @@ -81990,5323 +77678,11427 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "cuisine", "building_area", "address", + "opening_hours", "capacity" ], "suggestion": true }, - "shop/alcohol/Alko": { + "amenity/restaurant/Mang Inasal": { "tags": { - "name": "Alko", - "shop": "alcohol" + "name": "Mang Inasal", + "amenity": "restaurant" }, - "name": "Alko", - "icon": "alcohol-shop", + "name": "Mang Inasal", + "icon": "restaurant", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Евразия": { + "tags": { + "name": "Евразия", + "amenity": "restaurant" + }, + "name": "Евразия", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/ジョナサン": { + "tags": { + "name": "ジョナサン", + "amenity": "restaurant" + }, + "name": "ジョナサン", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/restaurant/Longhorn Steakhouse": { + "tags": { + "name": "Longhorn Steakhouse", + "amenity": "restaurant" + }, + "name": "Longhorn Steakhouse", + "icon": "restaurant", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "building_area", + "address", + "opening_hours", + "capacity" + ], + "suggestion": true + }, + "amenity/bank/Chase": { + "tags": { + "name": "Chase", + "amenity": "bank" + }, + "name": "Chase", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Commonwealth Bank": { + "tags": { + "name": "Commonwealth Bank", + "amenity": "bank" + }, + "name": "Commonwealth Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Citibank": { + "tags": { + "name": "Citibank", + "amenity": "bank" + }, + "name": "Citibank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/HSBC": { + "tags": { + "name": "HSBC", + "amenity": "bank" + }, + "name": "HSBC", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Barclays": { + "tags": { + "name": "Barclays", + "amenity": "bank" + }, + "name": "Barclays", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Westpac": { + "tags": { + "name": "Westpac", + "amenity": "bank" + }, + "name": "Westpac", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/NAB": { + "tags": { + "name": "NAB", + "amenity": "bank" + }, + "name": "NAB", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/ANZ": { + "tags": { + "name": "ANZ", + "amenity": "bank" + }, + "name": "ANZ", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Lloyds Bank": { + "tags": { + "name": "Lloyds Bank", + "amenity": "bank" + }, + "name": "Lloyds Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Landbank": { + "tags": { + "name": "Landbank", + "amenity": "bank" + }, + "name": "Landbank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Sparkasse": { + "tags": { + "name": "Sparkasse", + "amenity": "bank" + }, + "name": "Sparkasse", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/UCPB": { + "tags": { + "name": "UCPB", + "amenity": "bank" + }, + "name": "UCPB", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/PNB": { + "tags": { + "name": "PNB", + "amenity": "bank" + }, + "name": "PNB", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Metrobank": { + "tags": { + "name": "Metrobank", + "amenity": "bank" + }, + "name": "Metrobank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/BDO": { + "tags": { + "name": "BDO", + "amenity": "bank" + }, + "name": "BDO", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Volksbank": { + "tags": { + "name": "Volksbank", + "amenity": "bank" + }, + "name": "Volksbank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/BPI": { + "tags": { + "name": "BPI", + "amenity": "bank" + }, + "name": "BPI", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Postbank": { + "tags": { + "name": "Postbank", + "amenity": "bank" + }, + "name": "Postbank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/NatWest": { + "tags": { + "name": "NatWest", + "amenity": "bank" + }, + "name": "NatWest", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Yorkshire Bank": { + "tags": { + "name": "Yorkshire Bank", + "amenity": "bank" + }, + "name": "Yorkshire Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/ABSA": { + "tags": { + "name": "ABSA", + "amenity": "bank" + }, + "name": "ABSA", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Standard Bank": { + "tags": { + "name": "Standard Bank", + "amenity": "bank" + }, + "name": "Standard Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/FNB": { + "tags": { + "name": "FNB", + "amenity": "bank" + }, + "name": "FNB", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Deutsche Bank": { + "tags": { + "name": "Deutsche Bank", + "amenity": "bank" + }, + "name": "Deutsche Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/SEB": { + "tags": { + "name": "SEB", + "amenity": "bank" + }, + "name": "SEB", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Commerzbank": { + "tags": { + "name": "Commerzbank", + "amenity": "bank" + }, + "name": "Commerzbank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Targobank": { + "tags": { + "name": "Targobank", + "amenity": "bank" + }, + "name": "Targobank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/ABN AMRO": { + "tags": { + "name": "ABN AMRO", + "amenity": "bank" + }, + "name": "ABN AMRO", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Handelsbanken": { + "tags": { + "name": "Handelsbanken", + "amenity": "bank" + }, + "name": "Handelsbanken", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Swedbank": { + "tags": { + "name": "Swedbank", + "amenity": "bank" + }, + "name": "Swedbank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Kreissparkasse": { + "tags": { + "name": "Kreissparkasse", + "amenity": "bank" + }, + "name": "Kreissparkasse", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/UniCredit Bank": { + "tags": { + "name": "UniCredit Bank", + "amenity": "bank" + }, + "name": "UniCredit Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "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", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Caja Rural": { + "tags": { + "name": "Caja Rural", + "amenity": "bank" + }, + "name": "Caja Rural", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Dresdner Bank": { + "tags": { + "name": "Dresdner Bank", + "amenity": "bank" + }, + "name": "Dresdner Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Sparda-Bank": { + "tags": { + "name": "Sparda-Bank", + "amenity": "bank" + }, + "name": "Sparda-Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/VÚB": { + "tags": { + "name": "VÚB", + "amenity": "bank" + }, + "name": "VÚB", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Slovenská sporiteľňa": { + "tags": { + "name": "Slovenská sporiteľňa", + "amenity": "bank" + }, + "name": "Slovenská sporiteľňa", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Bank of Montreal": { + "tags": { + "name": "Bank of Montreal", + "amenity": "bank" + }, + "name": "Bank of Montreal", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/KBC": { + "tags": { + "name": "KBC", + "amenity": "bank" + }, + "name": "KBC", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "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", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/TSB": { + "tags": { + "name": "TSB", + "amenity": "bank" + }, + "name": "TSB", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/US Bank": { + "tags": { + "name": "US Bank", + "amenity": "bank" + }, + "name": "US Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/HypoVereinsbank": { + "tags": { + "name": "HypoVereinsbank", + "amenity": "bank" + }, + "name": "HypoVereinsbank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Bank Austria": { + "tags": { + "name": "Bank Austria", + "amenity": "bank" + }, + "name": "Bank Austria", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/ING": { + "tags": { + "name": "ING", + "amenity": "bank" + }, + "name": "ING", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Erste Bank": { + "tags": { + "name": "Erste Bank", + "amenity": "bank" + }, + "name": "Erste Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/CIBC": { + "tags": { + "name": "CIBC", + "amenity": "bank" + }, + "name": "CIBC", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Scotiabank": { + "tags": { + "name": "Scotiabank", + "amenity": "bank" + }, + "name": "Scotiabank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Caisse d'Épargne": { + "tags": { + "name": "Caisse d'Épargne", + "amenity": "bank" + }, + "name": "Caisse d'Épargne", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Santander": { + "tags": { + "name": "Santander", + "amenity": "bank" + }, + "name": "Santander", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Bank of Scotland": { + "tags": { + "name": "Bank of Scotland", + "amenity": "bank" + }, + "name": "Bank of Scotland", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/TD Canada Trust": { + "tags": { + "name": "TD Canada Trust", + "amenity": "bank" + }, + "name": "TD Canada Trust", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/BMO": { + "tags": { + "name": "BMO", + "amenity": "bank" + }, + "name": "BMO", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Danske Bank": { + "tags": { + "name": "Danske Bank", + "amenity": "bank" + }, + "name": "Danske Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/OTP": { + "tags": { + "name": "OTP", + "amenity": "bank" + }, + "name": "OTP", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Crédit Agricole": { + "tags": { + "name": "Crédit Agricole", + "amenity": "bank" + }, + "name": "Crédit Agricole", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/LCL": { + "tags": { + "name": "LCL", + "amenity": "bank" + }, + "name": "LCL", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/VR-Bank": { + "tags": { + "name": "VR-Bank", + "amenity": "bank" + }, + "name": "VR-Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/ČSOB": { + "tags": { + "name": "ČSOB", + "amenity": "bank" + }, + "name": "ČSOB", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Česká spořitelna": { + "tags": { + "name": "Česká spořitelna", + "amenity": "bank" + }, + "name": "Česká spořitelna", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/BNP": { + "tags": { + "name": "BNP", + "amenity": "bank" + }, + "name": "BNP", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Royal Bank": { + "tags": { + "name": "Royal Bank", + "amenity": "bank" + }, + "name": "Royal Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Nationwide": { + "tags": { + "name": "Nationwide", + "amenity": "bank" + }, + "name": "Nationwide", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Halifax": { + "tags": { + "name": "Halifax", + "amenity": "bank" + }, + "name": "Halifax", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/BAWAG PSK": { + "tags": { + "name": "BAWAG PSK", + "amenity": "bank" + }, + "name": "BAWAG PSK", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/National Bank": { + "tags": { + "name": "National Bank", + "amenity": "bank" + }, + "name": "National Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Nedbank": { + "tags": { + "name": "Nedbank", + "amenity": "bank" + }, + "name": "Nedbank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/First National Bank": { + "tags": { + "name": "First National Bank", + "amenity": "bank" + }, + "name": "First National Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Nordea": { + "tags": { + "name": "Nordea", + "amenity": "bank" + }, + "name": "Nordea", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Rabobank": { + "tags": { + "name": "Rabobank", + "amenity": "bank" + }, + "name": "Rabobank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Sparkasse KölnBonn": { + "tags": { + "name": "Sparkasse KölnBonn", + "amenity": "bank" + }, + "name": "Sparkasse KölnBonn", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Tatra banka": { + "tags": { + "name": "Tatra banka", + "amenity": "bank" + }, + "name": "Tatra banka", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Berliner Sparkasse": { + "tags": { + "name": "Berliner Sparkasse", + "amenity": "bank" + }, + "name": "Berliner Sparkasse", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Berliner Volksbank": { + "tags": { + "name": "Berliner Volksbank", + "amenity": "bank" + }, + "name": "Berliner Volksbank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Wells Fargo": { + "tags": { + "name": "Wells Fargo", + "amenity": "bank" + }, + "name": "Wells Fargo", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Credit Suisse": { + "tags": { + "name": "Credit Suisse", + "amenity": "bank" + }, + "name": "Credit Suisse", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "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", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Osuuspankki": { + "tags": { + "name": "Osuuspankki", + "amenity": "bank" + }, + "name": "Osuuspankki", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Sparkasse Aachen": { + "tags": { + "name": "Sparkasse Aachen", + "amenity": "bank" + }, + "name": "Sparkasse Aachen", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Hamburger Sparkasse": { + "tags": { + "name": "Hamburger Sparkasse", + "amenity": "bank" + }, + "name": "Hamburger Sparkasse", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "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", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/BNP Paribas": { + "tags": { + "name": "BNP Paribas", + "amenity": "bank" + }, + "name": "BNP Paribas", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Banque Populaire": { + "tags": { + "name": "Banque Populaire", + "amenity": "bank" + }, + "name": "Banque Populaire", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/BNP Paribas Fortis": { + "tags": { + "name": "BNP Paribas Fortis", + "amenity": "bank" + }, + "name": "BNP Paribas Fortis", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Banco Popular": { + "tags": { + "name": "Banco Popular", + "amenity": "bank" + }, + "name": "Banco Popular", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Bancaja": { + "tags": { + "name": "Bancaja", + "amenity": "bank" + }, + "name": "Bancaja", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Banesto": { + "tags": { + "name": "Banesto", + "amenity": "bank" + }, + "name": "Banesto", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/La Caixa": { + "tags": { + "name": "La Caixa", + "amenity": "bank" + }, + "name": "La Caixa", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Santander Consumer Bank": { + "tags": { + "name": "Santander Consumer Bank", + "amenity": "bank" + }, + "name": "Santander Consumer Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/BRD": { + "tags": { + "name": "BRD", + "amenity": "bank" + }, + "name": "BRD", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/BCR": { + "tags": { + "name": "BCR", + "amenity": "bank" + }, + "name": "BCR", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Banca Transilvania": { + "tags": { + "name": "Banca Transilvania", + "amenity": "bank" + }, + "name": "Banca Transilvania", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/BW-Bank": { + "tags": { + "name": "BW-Bank", + "amenity": "bank" + }, + "name": "BW-Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Komerční banka": { + "tags": { + "name": "Komerční banka", + "amenity": "bank" + }, + "name": "Komerční banka", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Banco Pastor": { + "tags": { + "name": "Banco Pastor", + "amenity": "bank" + }, + "name": "Banco Pastor", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Stadtsparkasse": { + "tags": { + "name": "Stadtsparkasse", + "amenity": "bank" + }, + "name": "Stadtsparkasse", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Ulster Bank": { + "tags": { + "name": "Ulster Bank", + "amenity": "bank" + }, + "name": "Ulster Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Sberbank": { + "tags": { + "name": "Sberbank", + "amenity": "bank" + }, + "name": "Sberbank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/CIC": { + "tags": { + "name": "CIC", + "amenity": "bank" + }, + "name": "CIC", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Bancpost": { + "tags": { + "name": "Bancpost", + "amenity": "bank" + }, + "name": "Bancpost", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Caja Madrid": { + "tags": { + "name": "Caja Madrid", + "amenity": "bank" + }, + "name": "Caja Madrid", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Maybank": { + "tags": { + "name": "Maybank", + "amenity": "bank" + }, + "name": "Maybank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/中国银行": { + "tags": { + "name": "中国银行", + "amenity": "bank" + }, + "name": "中国银行", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Unicredit Banca": { + "tags": { + "name": "Unicredit Banca", + "amenity": "bank" + }, + "name": "Unicredit Banca", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Crédit Mutuel": { + "tags": { + "name": "Crédit Mutuel", + "amenity": "bank" + }, + "name": "Crédit Mutuel", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/BBVA": { + "tags": { + "name": "BBVA", + "amenity": "bank" + }, + "name": "BBVA", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Intesa San Paolo": { + "tags": { + "name": "Intesa San Paolo", + "amenity": "bank" + }, + "name": "Intesa San Paolo", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/TD Bank": { + "tags": { + "name": "TD Bank", + "amenity": "bank" + }, + "name": "TD Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Belfius": { + "tags": { + "name": "Belfius", + "amenity": "bank" + }, + "name": "Belfius", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Bank of America": { + "tags": { + "name": "Bank of America", + "amenity": "bank" + }, + "name": "Bank of America", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/RBC": { + "tags": { + "name": "RBC", + "amenity": "bank" + }, + "name": "RBC", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Alpha Bank": { + "tags": { + "name": "Alpha Bank", + "amenity": "bank" + }, + "name": "Alpha Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Сбербанк": { + "tags": { + "name": "Сбербанк", + "amenity": "bank" + }, + "name": "Сбербанк", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Россельхозбанк": { + "tags": { + "name": "Россельхозбанк", + "amenity": "bank" + }, + "name": "Россельхозбанк", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "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", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/BancoEstado": { + "tags": { + "name": "BancoEstado", + "amenity": "bank" + }, + "name": "BancoEstado", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Millennium Bank": { + "tags": { + "name": "Millennium Bank", + "amenity": "bank" + }, + "name": "Millennium Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "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", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Беларусбанк": { + "tags": { + "name": "Беларусбанк", + "amenity": "bank" + }, + "name": "Беларусбанк", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "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", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "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", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Kreissparkasse Köln": { + "tags": { + "name": "Kreissparkasse Köln", + "amenity": "bank" + }, + "name": "Kreissparkasse Köln", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Banco BCI": { + "tags": { + "name": "Banco BCI", + "amenity": "bank" + }, + "name": "Banco BCI", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Banco de Chile": { + "tags": { + "name": "Banco de Chile", + "amenity": "bank" + }, + "name": "Banco de Chile", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/ВТБ24": { + "tags": { + "name": "ВТБ24", + "amenity": "bank" + }, + "name": "ВТБ24", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/UBS": { + "tags": { + "name": "UBS", + "amenity": "bank" + }, + "name": "UBS", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/PKO BP": { + "tags": { + "name": "PKO BP", + "amenity": "bank" + }, + "name": "PKO BP", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Chinabank": { + "tags": { + "name": "Chinabank", + "amenity": "bank" + }, + "name": "Chinabank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/PSBank": { + "tags": { + "name": "PSBank", + "amenity": "bank" + }, + "name": "PSBank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Union Bank": { + "tags": { + "name": "Union Bank", + "amenity": "bank" + }, + "name": "Union Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/China Bank": { + "tags": { + "name": "China Bank", + "amenity": "bank" + }, + "name": "China Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/RCBC": { + "tags": { + "name": "RCBC", + "amenity": "bank" + }, + "name": "RCBC", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Unicaja": { + "tags": { + "name": "Unicaja", + "amenity": "bank" + }, + "name": "Unicaja", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/BBK": { + "tags": { + "name": "BBK", + "amenity": "bank" + }, + "name": "BBK", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Ibercaja": { + "tags": { + "name": "Ibercaja", + "amenity": "bank" + }, + "name": "Ibercaja", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/RBS": { + "tags": { + "name": "RBS", + "amenity": "bank" + }, + "name": "RBS", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "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", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Bank of Ireland": { + "tags": { + "name": "Bank of Ireland", + "amenity": "bank" + }, + "name": "Bank of Ireland", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/BNL": { + "tags": { + "name": "BNL", + "amenity": "bank" + }, + "name": "BNL", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Banco Santander": { + "tags": { + "name": "Banco Santander", + "amenity": "bank" + }, + "name": "Banco Santander", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Banco Itaú": { + "tags": { + "name": "Banco Itaú", + "amenity": "bank" + }, + "name": "Banco Itaú", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/AIB": { + "tags": { + "name": "AIB", + "amenity": "bank" + }, + "name": "AIB", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/BZ WBK": { + "tags": { + "name": "BZ WBK", + "amenity": "bank" + }, + "name": "BZ WBK", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Banco do Brasil": { + "tags": { + "name": "Banco do Brasil", + "amenity": "bank" + }, + "name": "Banco do Brasil", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "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", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Fifth Third Bank": { + "tags": { + "name": "Fifth Third Bank", + "amenity": "bank" + }, + "name": "Fifth Third Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "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", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Wachovia": { + "tags": { + "name": "Wachovia", + "amenity": "bank" + }, + "name": "Wachovia", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/OLB": { + "tags": { + "name": "OLB", + "amenity": "bank" + }, + "name": "OLB", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/みずほ銀行": { + "tags": { + "name": "みずほ銀行", + "amenity": "bank" + }, + "name": "みずほ銀行", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/BES": { + "tags": { + "name": "BES", + "amenity": "bank" + }, + "name": "BES", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/ICICI Bank": { + "tags": { + "name": "ICICI Bank", + "amenity": "bank" + }, + "name": "ICICI Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/HDFC Bank": { + "tags": { + "name": "HDFC Bank", + "amenity": "bank" + }, + "name": "HDFC Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/La Banque Postale": { + "tags": { + "name": "La Banque Postale", + "amenity": "bank" + }, + "name": "La Banque Postale", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Pekao SA": { + "tags": { + "name": "Pekao SA", + "amenity": "bank" + }, + "name": "Pekao SA", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Oberbank": { + "tags": { + "name": "Oberbank", + "amenity": "bank" + }, + "name": "Oberbank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Bradesco": { + "tags": { + "name": "Bradesco", + "amenity": "bank" + }, + "name": "Bradesco", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Oldenburgische Landesbank": { + "tags": { + "name": "Oldenburgische Landesbank", + "amenity": "bank" + }, + "name": "Oldenburgische Landesbank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Scotia Bank": { + "tags": { + "name": "Scotia Bank", + "amenity": "bank" + }, + "name": "Scotia Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Bendigo Bank": { + "tags": { + "name": "Bendigo Bank", + "amenity": "bank" + }, + "name": "Bendigo Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Argenta": { + "tags": { + "name": "Argenta", + "amenity": "bank" + }, + "name": "Argenta", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/AXA": { + "tags": { + "name": "AXA", + "amenity": "bank" + }, + "name": "AXA", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Axis Bank": { + "tags": { + "name": "Axis Bank", + "amenity": "bank" + }, + "name": "Axis Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Banco Nación": { + "tags": { + "name": "Banco Nación", + "amenity": "bank" + }, + "name": "Banco Nación", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/GE Money Bank": { + "tags": { + "name": "GE Money Bank", + "amenity": "bank" + }, + "name": "GE Money Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Альфа-Банк": { + "tags": { + "name": "Альфа-Банк", + "amenity": "bank" + }, + "name": "Альфа-Банк", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Белагропромбанк": { + "tags": { + "name": "Белагропромбанк", + "amenity": "bank" + }, + "name": "Белагропромбанк", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Caja Círculo": { + "tags": { + "name": "Caja Círculo", + "amenity": "bank" + }, + "name": "Caja Círculo", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", + "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Eurobank": { + "tags": { + "name": "Eurobank", + "amenity": "bank" + }, + "name": "Eurobank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Banca Intesa": { + "tags": { + "name": "Banca Intesa", + "amenity": "bank" + }, + "name": "Banca Intesa", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/alcohol/BWS": { + "amenity/bank/Canara Bank": { "tags": { - "name": "BWS", - "shop": "alcohol" + "name": "Canara Bank", + "amenity": "bank" }, - "name": "BWS", - "icon": "alcohol-shop", + "name": "Canara Bank", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/alcohol/Bargain Booze": { + "amenity/bank/Cajamar": { "tags": { - "name": "Bargain Booze", - "shop": "alcohol" + "name": "Cajamar", + "amenity": "bank" }, - "name": "Bargain Booze", - "icon": "alcohol-shop", + "name": "Cajamar", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/alcohol/Botilleria": { + "amenity/bank/Banamex": { "tags": { - "name": "Botilleria", - "shop": "alcohol" + "name": "Banamex", + "amenity": "bank" }, - "name": "Botilleria", - "icon": "alcohol-shop", + "name": "Banamex", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/alcohol/Gall & Gall": { + "amenity/bank/Crédit Mutuel de Bretagne": { "tags": { - "name": "Gall & Gall", - "shop": "alcohol" + "name": "Crédit Mutuel de Bretagne", + "amenity": "bank" }, - "name": "Gall & Gall", - "icon": "alcohol-shop", + "name": "Crédit Mutuel de Bretagne", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/alcohol/LCBO": { + "amenity/bank/Davivienda": { "tags": { - "name": "LCBO", - "shop": "alcohol" + "name": "Davivienda", + "amenity": "bank" }, - "name": "LCBO", - "icon": "alcohol-shop", + "name": "Davivienda", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/alcohol/Nicolas": { + "amenity/bank/Bank Spółdzielczy": { "tags": { - "name": "Nicolas", - "shop": "alcohol" + "name": "Bank Spółdzielczy", + "amenity": "bank" }, - "name": "Nicolas", - "icon": "alcohol-shop", + "name": "Bank Spółdzielczy", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/alcohol/SAQ": { + "amenity/bank/Credit Agricole": { "tags": { - "name": "SAQ", - "shop": "alcohol" + "name": "Credit Agricole", + "amenity": "bank" }, - "name": "SAQ", - "icon": "alcohol-shop", + "name": "Credit Agricole", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/alcohol/Systembolaget": { + "amenity/bank/Bankinter": { "tags": { - "name": "Systembolaget", - "shop": "alcohol" + "name": "Bankinter", + "amenity": "bank" }, - "name": "Systembolaget", - "icon": "alcohol-shop", + "name": "Bankinter", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/alcohol/The Beer Store": { + "amenity/bank/Banque Nationale": { "tags": { - "name": "The Beer Store", - "shop": "alcohol" + "name": "Banque Nationale", + "amenity": "bank" }, - "name": "The Beer Store", - "icon": "alcohol-shop", + "name": "Banque Nationale", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/alcohol/Ароматный мир": { + "amenity/bank/Bank of the West": { "tags": { - "name": "Ароматный мир", - "shop": "alcohol" + "name": "Bank of the West", + "amenity": "bank" }, - "name": "Ароматный мир", - "icon": "alcohol-shop", + "name": "Bank of the West", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/alcohol/Живое пиво": { + "amenity/bank/Key Bank": { "tags": { - "name": "Живое пиво", - "shop": "alcohol" + "name": "Key Bank", + "amenity": "bank" }, - "name": "Живое пиво", - "icon": "alcohol-shop", + "name": "Key Bank", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Anker": { + "amenity/bank/Western Union": { "tags": { - "name": "Anker", - "shop": "bakery" + "name": "Western Union", + "amenity": "bank" }, - "name": "Anker", - "icon": "bakery", + "name": "Western Union", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Backwerk": { + "amenity/bank/Citizens Bank": { "tags": { - "name": "Backwerk", - "shop": "bakery" + "name": "Citizens Bank", + "amenity": "bank" }, - "name": "Backwerk", - "icon": "bakery", + "name": "Citizens Bank", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Boulangerie": { + "amenity/bank/ПриватБанк": { "tags": { - "name": "Boulangerie", - "shop": "bakery" + "name": "ПриватБанк", + "amenity": "bank" }, - "name": "Boulangerie", - "icon": "bakery", + "name": "ПриватБанк", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Boulangerie Patisserie": { + "amenity/bank/Security Bank": { "tags": { - "name": "Boulangerie Patisserie", - "shop": "bakery" + "name": "Security Bank", + "amenity": "bank" }, - "name": "Boulangerie Patisserie", - "icon": "bakery", + "name": "Security Bank", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Bäcker": { + "amenity/bank/Ecobank": { "tags": { - "name": "Bäcker", - "shop": "bakery" + "name": "Ecobank", + "amenity": "bank" }, - "name": "Bäcker", - "icon": "bakery", + "name": "Ecobank", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Bäckerei": { + "amenity/bank/Millenium Bank": { "tags": { - "name": "Bäckerei", - "shop": "bakery" + "name": "Millenium Bank", + "amenity": "bank" }, - "name": "Bäckerei", - "icon": "bakery", + "name": "Millenium Bank", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Bäckerei Schmidt": { + "amenity/bank/Bankia": { "tags": { - "name": "Bäckerei Schmidt", - "shop": "bakery" + "name": "Bankia", + "amenity": "bank" }, - "name": "Bäckerei Schmidt", - "icon": "bakery", + "name": "Bankia", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Dat Backhus": { + "amenity/bank/三菱東京UFJ銀行": { "tags": { - "name": "Dat Backhus", - "shop": "bakery" + "name": "三菱東京UFJ銀行", + "amenity": "bank" }, - "name": "Dat Backhus", - "icon": "bakery", + "name": "三菱東京UFJ銀行", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Der Beck": { + "amenity/bank/Caixa": { "tags": { - "name": "Der Beck", - "shop": "bakery" + "name": "Caixa", + "amenity": "bank" }, - "name": "Der Beck", - "icon": "bakery", + "name": "Caixa", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Goeken backen": { + "amenity/bank/Banco de Costa Rica": { "tags": { - "name": "Goeken backen", - "shop": "bakery" + "name": "Banco de Costa Rica", + "amenity": "bank" }, - "name": "Goeken backen", - "icon": "bakery", + "name": "Banco de Costa Rica", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Goldilocks": { + "amenity/bank/SunTrust Bank": { "tags": { - "name": "Goldilocks", - "shop": "bakery" + "name": "SunTrust Bank", + "amenity": "bank" }, - "name": "Goldilocks", - "icon": "bakery", + "name": "SunTrust Bank", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Greggs": { + "amenity/bank/Itaú": { "tags": { - "name": "Greggs", - "shop": "bakery" + "name": "Itaú", + "amenity": "bank" }, - "name": "Greggs", - "icon": "bakery", + "name": "Itaú", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Hofpfisterei": { + "amenity/bank/PBZ": { "tags": { - "name": "Hofpfisterei", - "shop": "bakery" + "name": "PBZ", + "amenity": "bank" }, - "name": "Hofpfisterei", - "icon": "bakery", + "name": "PBZ", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Ihle": { + "amenity/bank/Bancolombia": { "tags": { - "name": "Ihle", - "shop": "bakery" + "name": "Bancolombia", + "amenity": "bank" }, - "name": "Ihle", - "icon": "bakery", + "name": "Bancolombia", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/K&U": { + "amenity/bank/Райффайзен Банк Аваль": { "tags": { - "name": "K&U", - "shop": "bakery" + "name": "Райффайзен Банк Аваль", + "amenity": "bank" }, - "name": "K&U", - "icon": "bakery", + "name": "Райффайзен Банк Аваль", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Kamps": { + "amenity/bank/Bancomer": { "tags": { - "name": "Kamps", - "shop": "bakery" + "name": "Bancomer", + "amenity": "bank" }, - "name": "Kamps", - "icon": "bakery", + "name": "Bancomer", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Oebel": { + "amenity/bank/Banorte": { "tags": { - "name": "Oebel", - "shop": "bakery" + "name": "Banorte", + "amenity": "bank" }, - "name": "Oebel", - "icon": "bakery", + "name": "Banorte", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Panaderia": { + "amenity/bank/Alior Bank": { "tags": { - "name": "Panaderia", - "shop": "bakery" + "name": "Alior Bank", + "amenity": "bank" }, - "name": "Panaderia", - "icon": "bakery", + "name": "Alior Bank", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Panificio": { + "amenity/bank/BOC": { "tags": { - "name": "Panificio", - "shop": "bakery" + "name": "BOC", + "amenity": "bank" }, - "name": "Panificio", - "icon": "bakery", + "name": "BOC", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Paul": { + "amenity/bank/Банк Москвы": { "tags": { - "name": "Paul", - "shop": "bakery" + "name": "Банк Москвы", + "amenity": "bank" }, - "name": "Paul", - "icon": "bakery", + "name": "Банк Москвы", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Piekarnia": { + "amenity/bank/ВТБ": { "tags": { - "name": "Piekarnia", - "shop": "bakery" + "name": "ВТБ", + "amenity": "bank" }, - "name": "Piekarnia", - "icon": "bakery", + "name": "ВТБ", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Stadtbäckerei": { + "amenity/bank/Caja Duero": { "tags": { - "name": "Stadtbäckerei", - "shop": "bakery" + "name": "Caja Duero", + "amenity": "bank" }, - "name": "Stadtbäckerei", - "icon": "bakery", + "name": "Caja Duero", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Stadtbäckerei Junge": { + "amenity/bank/Regions Bank": { "tags": { - "name": "Stadtbäckerei Junge", - "shop": "bakery" + "name": "Regions Bank", + "amenity": "bank" }, - "name": "Stadtbäckerei Junge", - "icon": "bakery", + "name": "Regions Bank", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Steinecke": { + "amenity/bank/Росбанк": { "tags": { - "name": "Steinecke", - "shop": "bakery" + "name": "Росбанк", + "amenity": "bank" }, - "name": "Steinecke", - "icon": "bakery", + "name": "Росбанк", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Thürmann": { + "amenity/bank/Banco Estado": { "tags": { - "name": "Thürmann", - "shop": "bakery" + "name": "Banco Estado", + "amenity": "bank" }, - "name": "Thürmann", - "icon": "bakery", + "name": "Banco Estado", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/bakery/Хлеб": { + "amenity/bank/BCI": { "tags": { - "name": "Хлеб", - "shop": "bakery" + "name": "BCI", + "amenity": "bank" }, - "name": "Хлеб", - "icon": "bakery", + "name": "BCI", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/books/Barnes & Noble": { + "amenity/bank/SunTrust": { "tags": { - "name": "Barnes & Noble", - "shop": "books" + "name": "SunTrust", + "amenity": "bank" }, - "name": "Barnes & Noble", - "icon": "shop", + "name": "SunTrust", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/books/Bruna": { + "amenity/bank/PNC Bank": { "tags": { - "name": "Bruna", - "shop": "books" + "name": "PNC Bank", + "amenity": "bank" }, - "name": "Bruna", - "icon": "shop", + "name": "PNC Bank", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/books/Libro": { + "amenity/bank/신한은행": { "tags": { - "name": "Libro", - "shop": "books" + "name": "신한은행", + "name:en": "Sinhan Bank", + "amenity": "bank" }, - "name": "Libro", - "icon": "shop", + "name": "신한은행", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/books/Thalia": { + "amenity/bank/우리은행": { "tags": { - "name": "Thalia", - "shop": "books" + "name": "우리은행", + "name:en": "Uri Bank", + "amenity": "bank" }, - "name": "Thalia", - "icon": "shop", + "name": "우리은행", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/books/Waterstones": { + "amenity/bank/국민은행": { "tags": { - "name": "Waterstones", - "shop": "books" + "name": "국민은행", + "name:en": "Gungmin Bank", + "amenity": "bank" }, - "name": "Waterstones", - "icon": "shop", + "name": "국민은행", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/books/Weltbild": { + "amenity/bank/중소기업은행": { "tags": { - "name": "Weltbild", - "shop": "books" + "name": "중소기업은행", + "name:en": "Industrial Bank of Korea", + "amenity": "bank" }, - "name": "Weltbild", - "icon": "shop", + "name": "중소기업은행", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/books/Книги": { + "amenity/bank/광주은행": { "tags": { - "name": "Книги", - "shop": "books" + "name": "광주은행", + "name:en": "Gwangju Bank", + "amenity": "bank" }, - "name": "Книги", - "icon": "shop", + "name": "광주은행", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car_repair/ATU": { + "amenity/bank/Газпромбанк": { "tags": { - "name": "ATU", - "shop": "car_repair" + "name": "Газпромбанк", + "amenity": "bank" }, - "name": "ATU", - "icon": "shop", + "name": "Газпромбанк", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car_repair/AutoZone": { + "amenity/bank/M&T Bank": { "tags": { - "name": "AutoZone", - "shop": "car_repair" + "name": "M&T Bank", + "amenity": "bank" }, - "name": "AutoZone", - "icon": "shop", + "name": "M&T Bank", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car_repair/Carglass": { + "amenity/bank/Caja de Burgos": { "tags": { - "name": "Carglass", - "shop": "car_repair" + "name": "Caja de Burgos", + "amenity": "bank" }, - "name": "Carglass", - "icon": "shop", + "name": "Caja de Burgos", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car_repair/Euromaster": { + "amenity/bank/Santander Totta": { "tags": { - "name": "Euromaster", - "shop": "car_repair" + "name": "Santander Totta", + "amenity": "bank" }, - "name": "Euromaster", - "icon": "shop", + "name": "Santander Totta", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car_repair/Feu Vert": { + "amenity/bank/УкрСиббанк": { "tags": { - "name": "Feu Vert", - "shop": "car_repair" + "name": "УкрСиббанк", + "amenity": "bank" }, - "name": "Feu Vert", - "icon": "shop", + "name": "УкрСиббанк", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car_repair/Firestone": { + "amenity/bank/Ощадбанк": { "tags": { - "name": "Firestone", - "shop": "car_repair" + "name": "Ощадбанк", + "amenity": "bank" }, - "name": "Firestone", - "icon": "shop", + "name": "Ощадбанк", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car_repair/Jiffy Lube": { + "amenity/bank/Уралсиб": { "tags": { - "name": "Jiffy Lube", - "shop": "car_repair" + "name": "Уралсиб", + "amenity": "bank" }, - "name": "Jiffy Lube", - "icon": "shop", + "name": "Уралсиб", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car_repair/Kwik Fit": { + "amenity/bank/りそな銀行": { "tags": { - "name": "Kwik Fit", - "shop": "car_repair" + "name": "りそな銀行", + "name:en": "Mizuho Bank", + "amenity": "bank" }, - "name": "Kwik Fit", - "icon": "shop", + "name": "りそな銀行", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car_repair/Midas": { + "amenity/bank/Cajero Automatico Bancared": { "tags": { - "name": "Midas", - "shop": "car_repair" + "name": "Cajero Automatico Bancared", + "amenity": "bank" }, - "name": "Midas", - "icon": "shop", + "name": "Cajero Automatico Bancared", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car_repair/Norauto": { + "amenity/bank/Промсвязьбанк": { "tags": { - "name": "Norauto", - "shop": "car_repair" + "name": "Промсвязьбанк", + "amenity": "bank" }, - "name": "Norauto", - "icon": "shop", + "name": "Промсвязьбанк", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car_repair/O'Reilly Auto Parts": { + "amenity/bank/三井住友銀行": { "tags": { - "name": "O'Reilly Auto Parts", - "shop": "car_repair" + "name": "三井住友銀行", + "amenity": "bank" }, - "name": "O'Reilly Auto Parts", - "icon": "shop", + "name": "三井住友銀行", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car_repair/Peugeot": { + "amenity/bank/Banco Provincia": { "tags": { - "name": "Peugeot", - "shop": "car_repair" + "name": "Banco Provincia", + "amenity": "bank" }, - "name": "Peugeot", - "icon": "shop", + "name": "Banco Provincia", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ + "atm", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/BB&T": { + "tags": { + "name": "BB&T", + "amenity": "bank" + }, + "name": "BB&T", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car_repair/Pit Stop": { + "amenity/bank/Возрождение": { "tags": { - "name": "Pit Stop", - "shop": "car_repair" + "name": "Возрождение", + "amenity": "bank" }, - "name": "Pit Stop", - "icon": "shop", + "name": "Возрождение", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ + "atm", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Capital One": { + "tags": { + "name": "Capital One", + "amenity": "bank" + }, + "name": "Capital One", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car_repair/Renault": { + "amenity/bank/Bank Mandiri": { "tags": { - "name": "Renault", - "shop": "car_repair" + "name": "Bank Mandiri", + "amenity": "bank" }, - "name": "Renault", - "icon": "shop", + "name": "Bank Mandiri", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ + "atm", + "building_area", "address", + "opening_hours" + ], + "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", + "vertex", + "area" + ], + "fields": [ + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car_repair/Roady": { + "amenity/bank/Banco G&T Continental": { "tags": { - "name": "Roady", - "shop": "car_repair" + "name": "Banco G&T Continental", + "amenity": "bank" }, - "name": "Roady", - "icon": "shop", + "name": "Banco G&T Continental", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ + "atm", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Peoples Bank": { + "tags": { + "name": "Peoples Bank", + "amenity": "bank" + }, + "name": "Peoples Bank", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car_repair/Speedy": { + "amenity/bank/Совкомбанк": { "tags": { - "name": "Speedy", - "shop": "car_repair" + "name": "Совкомбанк", + "amenity": "bank" }, - "name": "Speedy", - "icon": "shop", + "name": "Совкомбанк", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ + "atm", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Provincial": { + "tags": { + "name": "Provincial", + "amenity": "bank" + }, + "name": "Provincial", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car_repair/ÖAMTC": { + "amenity/bank/Banco de Desarrollo Banrural": { "tags": { - "name": "ÖAMTC", - "shop": "car_repair" + "name": "Banco de Desarrollo Banrural", + "amenity": "bank" }, - "name": "ÖAMTC", - "icon": "shop", + "name": "Banco de Desarrollo Banrural", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ + "atm", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Banco Bradesco": { + "tags": { + "name": "Banco Bradesco", + "amenity": "bank" + }, + "name": "Banco Bradesco", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car_repair/Автозапчасти": { + "amenity/bank/Bicentenario": { "tags": { - "name": "Автозапчасти", - "shop": "car_repair" + "name": "Bicentenario", + "amenity": "bank" }, - "name": "Автозапчасти", - "icon": "shop", + "name": "Bicentenario", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ + "atm", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/ლიბერთი ბანკი": { + "tags": { + "name": "ლიბერთი ბანკი", + "name:en": "Liberty Bank", + "amenity": "bank" + }, + "name": "ლიბერთი ბანკი", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car_repair/Автосервис": { + "amenity/bank/Banesco": { "tags": { - "name": "Автосервис", - "shop": "car_repair" + "name": "Banesco", + "amenity": "bank" }, - "name": "Автосервис", - "icon": "shop", + "name": "Banesco", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ + "atm", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/Mercantil": { + "tags": { + "name": "Mercantil", + "amenity": "bank" + }, + "name": "Mercantil", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car_repair/СТО": { + "amenity/bank/Del Tesoro": { "tags": { - "name": "СТО", - "shop": "car_repair" + "name": "Del Tesoro", + "amenity": "bank" }, - "name": "СТО", - "icon": "shop", + "name": "Del Tesoro", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ + "atm", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/하나은행": { + "tags": { + "name": "하나은행", + "amenity": "bank" + }, + "name": "하나은행", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car_repair/Шиномонтаж": { + "amenity/bank/CityCommerce Bank": { "tags": { - "name": "Шиномонтаж", - "shop": "car_repair" + "name": "CityCommerce Bank", + "amenity": "bank" }, - "name": "Шиномонтаж", - "icon": "shop", + "name": "CityCommerce Bank", + "icon": "bank", "geometry": [ "point", "vertex", "area" ], "fields": [ + "atm", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/bank/De Venezuela": { + "tags": { + "name": "De Venezuela", + "amenity": "bank" + }, + "name": "De Venezuela", + "icon": "bank", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "atm", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/car/Audi": { + "amenity/car_rental/Europcar": { "tags": { - "name": "Audi", - "shop": "car" + "name": "Europcar", + "amenity": "car_rental" }, - "name": "Audi", + "name": "Europcar", "icon": "car", "geometry": [ "point", - "vertex", "area" ], "fields": [ - "address", - "opening_hours" + "operator" ], "suggestion": true }, - "shop/car/BMW": { + "amenity/car_rental/Budget": { "tags": { - "name": "BMW", - "shop": "car" + "name": "Budget", + "amenity": "car_rental" }, - "name": "BMW", + "name": "Budget", "icon": "car", "geometry": [ "point", - "vertex", "area" ], "fields": [ - "address", - "opening_hours" + "operator" ], "suggestion": true }, - "shop/car/Chevrolet": { + "amenity/car_rental/Sixt": { "tags": { - "name": "Chevrolet", - "shop": "car" + "name": "Sixt", + "amenity": "car_rental" }, - "name": "Chevrolet", + "name": "Sixt", "icon": "car", "geometry": [ "point", - "vertex", "area" ], "fields": [ - "address", - "opening_hours" + "operator" ], "suggestion": true }, - "shop/car/Citroen": { + "amenity/car_rental/Avis": { "tags": { - "name": "Citroen", - "shop": "car" + "name": "Avis", + "amenity": "car_rental" }, - "name": "Citroen", + "name": "Avis", "icon": "car", "geometry": [ "point", - "vertex", "area" ], "fields": [ - "address", - "opening_hours" + "operator" ], "suggestion": true }, - "shop/car/Fiat": { + "amenity/car_rental/Hertz": { "tags": { - "name": "Fiat", - "shop": "car" + "name": "Hertz", + "amenity": "car_rental" }, - "name": "Fiat", + "name": "Hertz", "icon": "car", "geometry": [ "point", - "vertex", "area" ], "fields": [ - "address", - "opening_hours" + "operator" ], "suggestion": true }, - "shop/car/Ford": { + "amenity/car_rental/Enterprise": { "tags": { - "name": "Ford", - "shop": "car" + "name": "Enterprise", + "amenity": "car_rental" }, - "name": "Ford", + "name": "Enterprise", "icon": "car", "geometry": [ "point", - "vertex", "area" ], "fields": [ - "address", - "opening_hours" + "operator" ], "suggestion": true }, - "shop/car/Honda": { + "amenity/car_rental/stadtmobil CarSharing-Station": { "tags": { - "name": "Honda", - "shop": "car" + "name": "stadtmobil CarSharing-Station", + "amenity": "car_rental" }, - "name": "Honda", + "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", "vertex", "area" ], "fields": [ + "operator", + "building_area", "address", "opening_hours" ], "suggestion": true }, - "shop/car/Hyundai": { + "amenity/pharmacy/Boots": { "tags": { - "name": "Hyundai", - "shop": "car" + "name": "Boots", + "amenity": "pharmacy" }, - "name": "Hyundai", - "icon": "car", + "name": "Boots", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ + "operator", + "building_area", "address", "opening_hours" ], "suggestion": true }, - "shop/car/Mazda": { + "amenity/pharmacy/Marien-Apotheke": { "tags": { - "name": "Mazda", - "shop": "car" + "name": "Marien-Apotheke", + "amenity": "pharmacy" }, - "name": "Mazda", - "icon": "car", + "name": "Marien-Apotheke", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ + "operator", + "building_area", "address", "opening_hours" ], "suggestion": true }, - "shop/car/Mercedes-Benz": { + "amenity/pharmacy/Mercury Drug": { "tags": { - "name": "Mercedes-Benz", - "shop": "car" + "name": "Mercury Drug", + "amenity": "pharmacy" }, - "name": "Mercedes-Benz", - "icon": "car", + "name": "Mercury Drug", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ + "operator", + "building_area", "address", "opening_hours" ], "suggestion": true }, - "shop/car/Mitsubishi": { + "amenity/pharmacy/Löwen-Apotheke": { "tags": { - "name": "Mitsubishi", - "shop": "car" + "name": "Löwen-Apotheke", + "amenity": "pharmacy" }, - "name": "Mitsubishi", - "icon": "car", + "name": "Löwen-Apotheke", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ + "operator", + "building_area", "address", "opening_hours" ], "suggestion": true }, - "shop/car/Nissan": { + "amenity/pharmacy/Superdrug": { "tags": { - "name": "Nissan", - "shop": "car" + "name": "Superdrug", + "amenity": "pharmacy" }, - "name": "Nissan", - "icon": "car", + "name": "Superdrug", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ + "operator", + "building_area", "address", "opening_hours" ], "suggestion": true }, - "shop/car/Opel": { + "amenity/pharmacy/Sonnen-Apotheke": { "tags": { - "name": "Opel", - "shop": "car" + "name": "Sonnen-Apotheke", + "amenity": "pharmacy" }, - "name": "Opel", - "icon": "car", + "name": "Sonnen-Apotheke", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ + "operator", + "building_area", "address", "opening_hours" ], "suggestion": true }, - "shop/car/Skoda": { + "amenity/pharmacy/Rathaus-Apotheke": { "tags": { - "name": "Skoda", - "shop": "car" + "name": "Rathaus-Apotheke", + "amenity": "pharmacy" }, - "name": "Skoda", - "icon": "car", + "name": "Rathaus-Apotheke", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ + "operator", + "building_area", "address", "opening_hours" ], "suggestion": true }, - "shop/car/Suzuki": { + "amenity/pharmacy/Engel-Apotheke": { "tags": { - "name": "Suzuki", - "shop": "car" + "name": "Engel-Apotheke", + "amenity": "pharmacy" }, - "name": "Suzuki", - "icon": "car", + "name": "Engel-Apotheke", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ + "operator", + "building_area", "address", "opening_hours" ], "suggestion": true }, - "shop/car/Toyota": { + "amenity/pharmacy/Hirsch-Apotheke": { "tags": { - "name": "Toyota", - "shop": "car" + "name": "Hirsch-Apotheke", + "amenity": "pharmacy" }, - "name": "Toyota", - "icon": "car", + "name": "Hirsch-Apotheke", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ + "operator", + "building_area", "address", "opening_hours" ], "suggestion": true }, - "shop/car/Volkswagen": { + "amenity/pharmacy/Stern-Apotheke": { "tags": { - "name": "Volkswagen", - "shop": "car" + "name": "Stern-Apotheke", + "amenity": "pharmacy" }, - "name": "Volkswagen", - "icon": "car", + "name": "Stern-Apotheke", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ + "operator", + "building_area", "address", "opening_hours" ], "suggestion": true }, - "shop/car/Volvo": { + "amenity/pharmacy/Lloyds Pharmacy": { "tags": { - "name": "Volvo", - "shop": "car" + "name": "Lloyds Pharmacy", + "amenity": "pharmacy" }, - "name": "Volvo", - "icon": "car", + "name": "Lloyds Pharmacy", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ + "operator", + "building_area", "address", "opening_hours" ], "suggestion": true }, - "shop/car/Автомагазин": { + "amenity/pharmacy/Rosen-Apotheke": { "tags": { - "name": "Автомагазин", - "shop": "car" + "name": "Rosen-Apotheke", + "amenity": "pharmacy" }, - "name": "Автомагазин", - "icon": "car", + "name": "Rosen-Apotheke", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ + "operator", + "building_area", "address", "opening_hours" ], "suggestion": true }, - "shop/chemist/Bipa": { + "amenity/pharmacy/Stadt-Apotheke": { "tags": { - "name": "Bipa", - "shop": "chemist" + "name": "Stadt-Apotheke", + "amenity": "pharmacy" }, - "name": "Bipa", - "icon": "shop", + "name": "Stadt-Apotheke", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/chemist/dm": { + "amenity/pharmacy/Markt-Apotheke": { "tags": { - "name": "dm", - "shop": "chemist" + "name": "Markt-Apotheke", + "amenity": "pharmacy" }, - "name": "dm", - "icon": "shop", + "name": "Markt-Apotheke", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/chemist/Douglas": { + "amenity/pharmacy/Аптека": { "tags": { - "name": "Douglas", - "shop": "chemist" + "name": "Аптека", + "amenity": "pharmacy" }, - "name": "Douglas", - "icon": "shop", + "name": "Аптека", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/chemist/Etos": { + "amenity/pharmacy/Pharmasave": { "tags": { - "name": "Etos", - "shop": "chemist" + "name": "Pharmasave", + "amenity": "pharmacy" }, - "name": "Etos", - "icon": "shop", + "name": "Pharmasave", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/chemist/Ihr Platz": { + "amenity/pharmacy/Brunnen-Apotheke": { "tags": { - "name": "Ihr Platz", - "shop": "chemist" + "name": "Brunnen-Apotheke", + "amenity": "pharmacy" }, - "name": "Ihr Platz", - "icon": "shop", + "name": "Brunnen-Apotheke", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/chemist/Kruidvat": { + "amenity/pharmacy/Shoppers Drug Mart": { "tags": { - "name": "Kruidvat", - "shop": "chemist" + "name": "Shoppers Drug Mart", + "amenity": "pharmacy" }, - "name": "Kruidvat", - "icon": "shop", + "name": "Shoppers Drug Mart", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/chemist/Müller": { + "amenity/pharmacy/Apotheke am Markt": { "tags": { - "name": "Müller", - "shop": "chemist" + "name": "Apotheke am Markt", + "amenity": "pharmacy" }, - "name": "Müller", - "icon": "shop", + "name": "Apotheke am Markt", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/chemist/Rossmann": { + "amenity/pharmacy/Alte Apotheke": { "tags": { - "name": "Rossmann", - "shop": "chemist" + "name": "Alte Apotheke", + "amenity": "pharmacy" }, - "name": "Rossmann", - "icon": "shop", + "name": "Alte Apotheke", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/chemist/Schlecker": { + "amenity/pharmacy/Neue Apotheke": { "tags": { - "name": "Schlecker", - "shop": "chemist" + "name": "Neue Apotheke", + "amenity": "pharmacy" }, - "name": "Schlecker", - "icon": "shop", + "name": "Neue Apotheke", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/AWG": { + "amenity/pharmacy/Gintarinė vaistinė": { "tags": { - "name": "AWG", - "shop": "clothes" + "name": "Gintarinė vaistinė", + "amenity": "pharmacy" }, - "name": "AWG", - "icon": "clothing-store", + "name": "Gintarinė vaistinė", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Ackermans": { + "amenity/pharmacy/Rats-Apotheke": { "tags": { - "name": "Ackermans", - "shop": "clothes" + "name": "Rats-Apotheke", + "amenity": "pharmacy" }, - "name": "Ackermans", - "icon": "clothing-store", + "name": "Rats-Apotheke", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Adidas": { + "amenity/pharmacy/Adler Apotheke": { "tags": { - "name": "Adidas", - "shop": "clothes" + "name": "Adler Apotheke", + "amenity": "pharmacy" }, - "name": "Adidas", - "icon": "clothing-store", + "name": "Adler Apotheke", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/American Apparel": { + "amenity/pharmacy/Pharmacie Centrale": { "tags": { - "name": "American Apparel", - "shop": "clothes" + "name": "Pharmacie Centrale", + "amenity": "pharmacy" }, - "name": "American Apparel", - "icon": "clothing-store", + "name": "Pharmacie Centrale", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Benetton": { + "amenity/pharmacy/Walgreens": { "tags": { - "name": "Benetton", - "shop": "clothes" + "name": "Walgreens", + "amenity": "pharmacy" }, - "name": "Benetton", - "icon": "clothing-store", + "name": "Walgreens", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Bonita": { + "amenity/pharmacy/Rite Aid": { "tags": { - "name": "Bonita", - "shop": "clothes" + "name": "Rite Aid", + "amenity": "pharmacy" }, - "name": "Bonita", - "icon": "clothing-store", + "name": "Rite Aid", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/C&A": { + "amenity/pharmacy/Apotheke": { "tags": { - "name": "C&A", - "shop": "clothes" + "name": "Apotheke", + "amenity": "pharmacy" }, - "name": "C&A", - "icon": "clothing-store", + "name": "Apotheke", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Calzedonia": { + "amenity/pharmacy/Linden-Apotheke": { "tags": { - "name": "Calzedonia", - "shop": "clothes" + "name": "Linden-Apotheke", + "amenity": "pharmacy" }, - "name": "Calzedonia", - "icon": "clothing-store", + "name": "Linden-Apotheke", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Cecil": { + "amenity/pharmacy/Bahnhof-Apotheke": { "tags": { - "name": "Cecil", - "shop": "clothes" + "name": "Bahnhof-Apotheke", + "amenity": "pharmacy" }, - "name": "Cecil", - "icon": "clothing-store", + "name": "Bahnhof-Apotheke", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Celio": { + "amenity/pharmacy/Burg-Apotheke": { "tags": { - "name": "Celio", - "shop": "clothes" + "name": "Burg-Apotheke", + "amenity": "pharmacy" }, - "name": "Celio", - "icon": "clothing-store", + "name": "Burg-Apotheke", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Charles Vögele": { + "amenity/pharmacy/Jean Coutu": { "tags": { - "name": "Charles Vögele", - "shop": "clothes" + "name": "Jean Coutu", + "amenity": "pharmacy" }, - "name": "Charles Vögele", - "icon": "clothing-store", + "name": "Jean Coutu", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Deichmann": { + "amenity/pharmacy/Pharmaprix": { "tags": { - "name": "Deichmann", - "shop": "clothes" + "name": "Pharmaprix", + "amenity": "pharmacy" }, - "name": "Deichmann", - "icon": "clothing-store", + "name": "Pharmaprix", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Dorothy Perkins": { + "amenity/pharmacy/Farmacias Ahumada": { "tags": { - "name": "Dorothy Perkins", - "shop": "clothes" + "name": "Farmacias Ahumada", + "amenity": "pharmacy" }, - "name": "Dorothy Perkins", - "icon": "clothing-store", + "name": "Farmacias Ahumada", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Edgars": { + "amenity/pharmacy/Farmacia Comunale": { "tags": { - "name": "Edgars", - "shop": "clothes" + "name": "Farmacia Comunale", + "amenity": "pharmacy" }, - "name": "Edgars", - "icon": "clothing-store", + "name": "Farmacia Comunale", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Ernsting's family": { + "amenity/pharmacy/Farmacias Cruz Verde": { "tags": { - "name": "Ernsting's family", - "shop": "clothes" + "name": "Farmacias Cruz Verde", + "amenity": "pharmacy" }, - "name": "Ernsting's family", - "icon": "clothing-store", + "name": "Farmacias Cruz Verde", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Esprit": { + "amenity/pharmacy/Cruz Verde": { "tags": { - "name": "Esprit", - "shop": "clothes" + "name": "Cruz Verde", + "amenity": "pharmacy" }, - "name": "Esprit", - "icon": "clothing-store", + "name": "Cruz Verde", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Etam": { + "amenity/pharmacy/Hubertus Apotheke": { "tags": { - "name": "Etam", - "shop": "clothes" + "name": "Hubertus Apotheke", + "amenity": "pharmacy" }, - "name": "Etam", - "icon": "clothing-store", + "name": "Hubertus Apotheke", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Gap": { + "amenity/pharmacy/CVS": { "tags": { - "name": "Gap", - "shop": "clothes" + "name": "CVS", + "amenity": "pharmacy" }, - "name": "Gap", - "icon": "clothing-store", + "name": "CVS", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Gerry Weber": { + "amenity/pharmacy/Farmacias SalcoBrand": { "tags": { - "name": "Gerry Weber", - "shop": "clothes" + "name": "Farmacias SalcoBrand", + "amenity": "pharmacy" }, - "name": "Gerry Weber", - "icon": "clothing-store", + "name": "Farmacias SalcoBrand", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/H&M": { + "amenity/pharmacy/Фармация": { "tags": { - "name": "H&M", - "shop": "clothes" + "name": "Фармация", + "amenity": "pharmacy" }, - "name": "H&M", - "icon": "clothing-store", + "name": "Фармация", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Jack & Jones": { + "amenity/pharmacy/Bären-Apotheke": { "tags": { - "name": "Jack & Jones", - "shop": "clothes" + "name": "Bären-Apotheke", + "amenity": "pharmacy" }, - "name": "Jack & Jones", - "icon": "clothing-store", + "name": "Bären-Apotheke", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Jack Wolfskin": { + "amenity/pharmacy/Clicks": { "tags": { - "name": "Jack Wolfskin", - "shop": "clothes" + "name": "Clicks", + "amenity": "pharmacy" }, - "name": "Jack Wolfskin", - "icon": "clothing-store", + "name": "Clicks", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Jules": { + "amenity/pharmacy/セイジョー": { "tags": { - "name": "Jules", - "shop": "clothes" + "name": "セイジョー", + "amenity": "pharmacy" }, - "name": "Jules", - "icon": "clothing-store", + "name": "セイジョー", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/KiK": { + "amenity/pharmacy/マツモトキヨシ": { "tags": { - "name": "KiK", - "shop": "clothes" + "name": "マツモトキヨシ", + "amenity": "pharmacy" }, - "name": "KiK", - "icon": "clothing-store", + "name": "マツモトキヨシ", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Kiabi": { + "amenity/pharmacy/Вита": { "tags": { - "name": "Kiabi", - "shop": "clothes" + "name": "Вита", + "amenity": "pharmacy" }, - "name": "Kiabi", - "icon": "clothing-store", + "name": "Вита", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Lacoste": { + "amenity/pharmacy/Радуга": { "tags": { - "name": "Lacoste", - "shop": "clothes" + "name": "Радуга", + "amenity": "pharmacy" }, - "name": "Lacoste", - "icon": "clothing-store", + "name": "Радуга", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Levi's": { + "amenity/pharmacy/サンドラッグ": { "tags": { - "name": "Levi's", - "shop": "clothes" + "name": "サンドラッグ", + "amenity": "pharmacy" }, - "name": "Levi's", - "icon": "clothing-store", + "name": "サンドラッグ", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Lindex": { + "amenity/pharmacy/Apteka": { "tags": { - "name": "Lindex", - "shop": "clothes" + "name": "Apteka", + "amenity": "pharmacy" }, - "name": "Lindex", - "icon": "clothing-store", + "name": "Apteka", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Mango": { + "amenity/pharmacy/Первая помощь": { "tags": { - "name": "Mango", - "shop": "clothes" + "name": "Первая помощь", + "amenity": "pharmacy" }, - "name": "Mango", - "icon": "clothing-store", + "name": "Первая помощь", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Matalan": { + "amenity/pharmacy/Ригла": { "tags": { - "name": "Matalan", - "shop": "clothes" + "name": "Ригла", + "amenity": "pharmacy" }, - "name": "Matalan", - "icon": "clothing-store", + "name": "Ригла", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Mexx": { + "amenity/pharmacy/Имплозия": { "tags": { - "name": "Mexx", - "shop": "clothes" + "name": "Имплозия", + "amenity": "pharmacy" }, - "name": "Mexx", - "icon": "clothing-store", + "name": "Имплозия", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Mr Price": { + "amenity/pharmacy/Kinney Drugs": { "tags": { - "name": "Mr Price", - "shop": "clothes" + "name": "Kinney Drugs", + "amenity": "pharmacy" }, - "name": "Mr Price", - "icon": "clothing-store", + "name": "Kinney Drugs", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/NKD": { + "amenity/pharmacy/Классика": { "tags": { - "name": "NKD", - "shop": "clothes" + "name": "Классика", + "amenity": "pharmacy" }, - "name": "NKD", - "icon": "clothing-store", + "name": "Классика", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/New Look": { + "amenity/pharmacy/Ljekarna": { "tags": { - "name": "New Look", - "shop": "clothes" + "name": "Ljekarna", + "amenity": "pharmacy" }, - "name": "New Look", - "icon": "clothing-store", + "name": "Ljekarna", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/New Yorker": { + "amenity/pharmacy/SalcoBrand": { "tags": { - "name": "New Yorker", - "shop": "clothes" + "name": "SalcoBrand", + "amenity": "pharmacy" }, - "name": "New Yorker", - "icon": "clothing-store", + "name": "SalcoBrand", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Next": { + "amenity/pharmacy/Аптека 36,6": { "tags": { - "name": "Next", - "shop": "clothes" + "name": "Аптека 36,6", + "amenity": "pharmacy" }, - "name": "Next", - "icon": "clothing-store", + "name": "Аптека 36,6", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Old Navy": { + "amenity/pharmacy/Фармакор": { "tags": { - "name": "Old Navy", - "shop": "clothes" + "name": "Фармакор", + "amenity": "pharmacy" }, - "name": "Old Navy", - "icon": "clothing-store", + "name": "Фармакор", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Orsay": { + "amenity/pharmacy/スギ薬局": { "tags": { - "name": "Orsay", - "shop": "clothes" + "name": "スギ薬局", + "amenity": "pharmacy" }, - "name": "Orsay", - "icon": "clothing-store", + "name": "スギ薬局", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ + "operator", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/pharmacy/Аптечный пункт": { + "tags": { + "name": "Аптечный пункт", + "amenity": "pharmacy" + }, + "name": "Аптечный пункт", + "icon": "pharmacy", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Peacocks": { + "amenity/pharmacy/Невис": { "tags": { - "name": "Peacocks", - "shop": "clothes" + "name": "Невис", + "amenity": "pharmacy" }, - "name": "Peacocks", - "icon": "clothing-store", + "name": "Невис", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ + "operator", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/pharmacy/トモズ (Tomod's)": { + "tags": { + "name": "トモズ (Tomod's)", + "amenity": "pharmacy" + }, + "name": "トモズ (Tomod's)", + "icon": "pharmacy", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Pep": { + "amenity/pharmacy/Eurovaistinė": { "tags": { - "name": "Pep", - "shop": "clothes" + "name": "Eurovaistinė", + "amenity": "pharmacy" }, - "name": "Pep", - "icon": "clothing-store", + "name": "Eurovaistinė", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ + "operator", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/pharmacy/Farmacity": { + "tags": { + "name": "Farmacity", + "amenity": "pharmacy" + }, + "name": "Farmacity", + "icon": "pharmacy", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Pimkie": { + "amenity/pharmacy/аптека": { "tags": { - "name": "Pimkie", - "shop": "clothes" + "name": "аптека", + "amenity": "pharmacy" }, - "name": "Pimkie", - "icon": "clothing-store", + "name": "аптека", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ + "operator", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/pharmacy/The Generics Pharmacy": { + "tags": { + "name": "The Generics Pharmacy", + "amenity": "pharmacy" + }, + "name": "The Generics Pharmacy", + "icon": "pharmacy", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Primark": { + "amenity/pharmacy/Farmatodo": { "tags": { - "name": "Primark", - "shop": "clothes" + "name": "Farmatodo", + "amenity": "pharmacy" }, - "name": "Primark", - "icon": "clothing-store", + "name": "Farmatodo", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ + "operator", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/pharmacy/Фармленд": { + "tags": { + "name": "Фармленд", + "amenity": "pharmacy" + }, + "name": "Фармленд", + "icon": "pharmacy", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Promod": { + "amenity/pharmacy/ドラッグてらしま (Drug Terashima)": { "tags": { - "name": "Promod", - "shop": "clothes" + "name": "ドラッグてらしま (Drug Terashima)", + "amenity": "pharmacy" }, - "name": "Promod", - "icon": "clothing-store", + "name": "ドラッグてらしま (Drug Terashima)", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ + "operator", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/pharmacy/ავერსი (Aversi)": { + "tags": { + "name": "ავერსი (Aversi)", + "amenity": "pharmacy" + }, + "name": "ავერსი (Aversi)", + "icon": "pharmacy", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/River Island": { + "amenity/pharmacy/Farmahorro": { "tags": { - "name": "River Island", - "shop": "clothes" + "name": "Farmahorro", + "amenity": "pharmacy" }, - "name": "River Island", - "icon": "clothing-store", + "name": "Farmahorro", + "icon": "pharmacy", "geometry": [ "point", "vertex", "area" ], "fields": [ + "operator", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/cafe/Starbucks": { + "tags": { + "name": "Starbucks", + "cuisine": "coffee_shop", + "amenity": "cafe" + }, + "name": "Starbucks", + "icon": "cafe", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "internet_access", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Ross": { + "amenity/cafe/Cafeteria": { "tags": { - "name": "Ross", - "shop": "clothes" + "name": "Cafeteria", + "amenity": "cafe" }, - "name": "Ross", - "icon": "clothing-store", + "name": "Cafeteria", + "icon": "cafe", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", + "internet_access", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/cafe/Costa": { + "tags": { + "name": "Costa", + "amenity": "cafe" + }, + "name": "Costa", + "icon": "cafe", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "internet_access", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Street One": { + "amenity/cafe/Caffè Nero": { "tags": { - "name": "Street One", - "shop": "clothes" + "name": "Caffè Nero", + "amenity": "cafe" }, - "name": "Street One", - "icon": "clothing-store", + "name": "Caffè Nero", + "icon": "cafe", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", + "internet_access", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/cafe/Кафе": { + "tags": { + "name": "Кафе", + "amenity": "cafe" + }, + "name": "Кафе", + "icon": "cafe", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "internet_access", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/TK Maxx": { + "amenity/cafe/Café Central": { "tags": { - "name": "TK Maxx", - "shop": "clothes" + "name": "Café Central", + "amenity": "cafe" }, - "name": "TK Maxx", - "icon": "clothing-store", + "name": "Café Central", + "icon": "cafe", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", + "internet_access", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/cafe/Second Cup": { + "tags": { + "name": "Second Cup", + "amenity": "cafe" + }, + "name": "Second Cup", + "icon": "cafe", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "internet_access", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Takko": { + "amenity/cafe/Eisdiele": { "tags": { - "name": "Takko", - "shop": "clothes" + "name": "Eisdiele", + "amenity": "cafe" }, - "name": "Takko", - "icon": "clothing-store", + "name": "Eisdiele", + "icon": "cafe", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", + "internet_access", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/cafe/Dunkin Donuts": { + "tags": { + "name": "Dunkin Donuts", + "cuisine": "donut", + "amenity": "cafe" + }, + "name": "Dunkin Donuts", + "icon": "cafe", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "internet_access", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Tally Weijl": { + "amenity/cafe/Segafredo": { "tags": { - "name": "Tally Weijl", - "shop": "clothes" + "name": "Segafredo", + "amenity": "cafe" }, - "name": "Tally Weijl", - "icon": "clothing-store", + "name": "Segafredo", + "icon": "cafe", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", + "internet_access", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/cafe/Coffee Time": { + "tags": { + "name": "Coffee Time", + "amenity": "cafe" + }, + "name": "Coffee Time", + "icon": "cafe", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "internet_access", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Tommy Hilfiger": { + "amenity/cafe/Cafe Coffee Day": { "tags": { - "name": "Tommy Hilfiger", - "shop": "clothes" + "name": "Cafe Coffee Day", + "amenity": "cafe" }, - "name": "Tommy Hilfiger", - "icon": "clothing-store", + "name": "Cafe Coffee Day", + "icon": "cafe", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", + "internet_access", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/cafe/Eiscafe Venezia": { + "tags": { + "name": "Eiscafe Venezia", + "amenity": "cafe" + }, + "name": "Eiscafe Venezia", + "icon": "cafe", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "internet_access", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Truworths": { + "amenity/cafe/スターバックス": { "tags": { - "name": "Truworths", - "shop": "clothes" + "name": "スターバックス", + "name:en": "Starbucks", + "amenity": "cafe" }, - "name": "Truworths", - "icon": "clothing-store", + "name": "スターバックス", + "icon": "cafe", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", + "internet_access", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/cafe/Шоколадница": { + "tags": { + "name": "Шоколадница", + "amenity": "cafe" + }, + "name": "Шоколадница", + "icon": "cafe", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "internet_access", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Ulla Popken": { + "amenity/cafe/Pret A Manger": { "tags": { - "name": "Ulla Popken", - "shop": "clothes" + "name": "Pret A Manger", + "amenity": "cafe" }, - "name": "Ulla Popken", - "icon": "clothing-store", + "name": "Pret A Manger", + "icon": "cafe", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", + "internet_access", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/cafe/Столовая": { + "tags": { + "name": "Столовая", + "amenity": "cafe" + }, + "name": "Столовая", + "icon": "cafe", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "internet_access", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/United Colors of Benetton": { + "amenity/cafe/ドトール": { "tags": { - "name": "United Colors of Benetton", - "shop": "clothes" + "name": "ドトール", + "name:en": "DOUTOR", + "amenity": "cafe" }, - "name": "United Colors of Benetton", - "icon": "clothing-store", + "name": "ドトール", + "icon": "cafe", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", + "internet_access", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/cafe/Tchibo": { + "tags": { + "name": "Tchibo", + "amenity": "cafe" + }, + "name": "Tchibo", + "icon": "cafe", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "internet_access", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Urban Outfitters": { + "amenity/cafe/Кофе Хауз": { "tags": { - "name": "Urban Outfitters", - "shop": "clothes" + "name": "Кофе Хауз", + "amenity": "cafe" }, - "name": "Urban Outfitters", - "icon": "clothing-store", + "name": "Кофе Хауз", + "icon": "cafe", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", + "internet_access", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/cafe/Caribou Coffee": { + "tags": { + "name": "Caribou Coffee", + "amenity": "cafe" + }, + "name": "Caribou Coffee", + "icon": "cafe", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "internet_access", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Vero Moda": { + "amenity/cafe/Уют": { "tags": { - "name": "Vero Moda", - "shop": "clothes" + "name": "Уют", + "amenity": "cafe" }, - "name": "Vero Moda", - "icon": "clothing-store", + "name": "Уют", + "icon": "cafe", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", + "internet_access", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/cafe/Шашлычная": { + "tags": { + "name": "Шашлычная", + "amenity": "cafe" + }, + "name": "Шашлычная", + "icon": "cafe", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "internet_access", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Vögele": { + "amenity/cafe/คาเฟ่ อเมซอน": { "tags": { - "name": "Vögele", - "shop": "clothes" + "name": "คาเฟ่ อเมซอน", + "amenity": "cafe" }, - "name": "Vögele", - "icon": "clothing-store", + "name": "คาเฟ่ อเมซอน", + "icon": "cafe", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", + "internet_access", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/cafe/Traveler's Coffee": { + "tags": { + "name": "Traveler's Coffee", + "amenity": "cafe" + }, + "name": "Traveler's Coffee", + "icon": "cafe", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "internet_access", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Winners": { + "amenity/cafe/カフェ・ド・クリエ": { "tags": { - "name": "Winners", - "shop": "clothes" + "name": "カフェ・ド・クリエ", + "name:en": "Cafe de CRIE", + "amenity": "cafe" }, - "name": "Winners", - "icon": "clothing-store", + "name": "カフェ・ド・クリエ", + "icon": "cafe", "geometry": [ "point", "vertex", "area" ], "fields": [ + "cuisine", + "internet_access", + "building_area", "address", + "opening_hours" + ], + "suggestion": true + }, + "amenity/cafe/Cafe Amazon": { + "tags": { + "name": "Cafe Amazon", + "amenity": "cafe" + }, + "name": "Cafe Amazon", + "icon": "cafe", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "cuisine", + "internet_access", "building_area", + "address", "opening_hours" ], "suggestion": true }, - "shop/clothes/Woolworths": { + "shop/supermarket/Budgens": { + "tags": { + "name": "Budgens", + "shop": "supermarket" + }, + "name": "Budgens", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Interspar": { + "tags": { + "name": "Interspar", + "shop": "supermarket" + }, + "name": "Interspar", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Merkur": { + "tags": { + "name": "Merkur", + "shop": "supermarket" + }, + "name": "Merkur", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Lidl": { + "tags": { + "name": "Lidl", + "shop": "supermarket" + }, + "name": "Lidl", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/EDEKA": { + "tags": { + "name": "EDEKA", + "shop": "supermarket" + }, + "name": "EDEKA", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Coles": { + "tags": { + "name": "Coles", + "shop": "supermarket" + }, + "name": "Coles", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Iceland": { + "tags": { + "name": "Iceland", + "shop": "supermarket" + }, + "name": "Iceland", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Woolworths": { "tags": { "name": "Woolworths", - "shop": "clothes" + "shop": "supermarket" }, "name": "Woolworths", - "icon": "clothing-store", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/clothes/Zara": { + "shop/supermarket/Zielpunkt": { "tags": { - "name": "Zara", - "shop": "clothes" + "name": "Zielpunkt", + "shop": "supermarket" }, - "name": "Zara", - "icon": "clothing-store", + "name": "Zielpunkt", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/clothes/Zeeman": { + "shop/supermarket/Nahkauf": { "tags": { - "name": "Zeeman", - "shop": "clothes" + "name": "Nahkauf", + "shop": "supermarket" }, - "name": "Zeeman", - "icon": "clothing-store", + "name": "Nahkauf", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/clothes/s.Oliver": { + "shop/supermarket/Billa": { "tags": { - "name": "s.Oliver", - "shop": "clothes" + "name": "Billa", + "shop": "supermarket" }, - "name": "s.Oliver", - "icon": "clothing-store", + "name": "Billa", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/clothes/Одежда": { + "shop/supermarket/Kaufland": { "tags": { - "name": "Одежда", - "shop": "clothes" + "name": "Kaufland", + "shop": "supermarket" }, - "name": "Одежда", - "icon": "clothing-store", + "name": "Kaufland", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/clothes/洋服の青山": { + "shop/supermarket/Plus": { "tags": { - "name": "洋服の青山", - "shop": "clothes" + "name": "Plus", + "shop": "supermarket" }, - "name": "洋服の青山", - "icon": "clothing-store", + "name": "Plus", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/computer/DNS": { + "shop/supermarket/ALDI": { "tags": { - "name": "DNS", - "shop": "computer" + "name": "ALDI", + "shop": "supermarket" }, - "name": "DNS", - "icon": "shop", + "name": "ALDI", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/computer/PC World": { + "shop/supermarket/Checkers": { "tags": { - "name": "PC World", - "shop": "computer" + "name": "Checkers", + "shop": "supermarket" }, - "name": "PC World", - "icon": "shop", + "name": "Checkers", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/24 часа": { + "shop/supermarket/Tesco Metro": { "tags": { - "name": "24 часа", - "shop": "convenience" + "name": "Tesco Metro", + "shop": "supermarket" }, - "name": "24 часа", - "icon": "shop", + "name": "Tesco Metro", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/8 à Huit": { + "shop/supermarket/NP": { "tags": { - "name": "8 à Huit", - "shop": "convenience" + "name": "NP", + "shop": "supermarket" }, - "name": "8 à Huit", - "icon": "shop", + "name": "NP", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Alepa": { + "shop/supermarket/Penny": { "tags": { - "name": "Alepa", - "shop": "convenience" + "name": "Penny", + "shop": "supermarket" }, - "name": "Alepa", - "icon": "shop", + "name": "Penny", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Alfamart": { + "shop/supermarket/Norma": { "tags": { - "name": "Alfamart", - "shop": "convenience" + "name": "Norma", + "shop": "supermarket" }, - "name": "Alfamart", - "icon": "shop", + "name": "Norma", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Almacen": { + "shop/supermarket/Asda": { "tags": { - "name": "Almacen", - "shop": "convenience" + "name": "Asda", + "shop": "supermarket" }, - "name": "Almacen", - "icon": "shop", + "name": "Asda", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Biedronka": { + "shop/supermarket/Netto": { "tags": { - "name": "Biedronka", - "shop": "convenience" + "name": "Netto", + "shop": "supermarket" }, - "name": "Biedronka", - "icon": "shop", + "name": "Netto", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/CBA": { + "shop/supermarket/REWE": { "tags": { - "name": "CBA", - "shop": "convenience" + "name": "REWE", + "shop": "supermarket" }, - "name": "CBA", - "icon": "shop", + "name": "REWE", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/COOP": { + "shop/supermarket/Rewe": { "tags": { - "name": "COOP", - "shop": "convenience" + "name": "Rewe", + "shop": "supermarket" }, - "name": "COOP", - "icon": "shop", + "name": "Rewe", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/COOP Jednota": { + "shop/supermarket/Aldi Süd": { "tags": { - "name": "COOP Jednota", - "shop": "convenience" + "name": "Aldi Süd", + "shop": "supermarket" }, - "name": "COOP Jednota", - "icon": "shop", + "name": "Aldi Süd", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Carrefour City": { + "shop/supermarket/Real": { "tags": { - "name": "Carrefour City", - "shop": "convenience" + "name": "Real", + "shop": "supermarket" }, - "name": "Carrefour City", - "icon": "shop", + "name": "Real", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Carrefour Express": { - "tags": { - "name": "Carrefour Express", - "shop": "convenience" - }, - "name": "Carrefour Express", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Casino": { - "tags": { - "name": "Casino", - "shop": "convenience" - }, - "name": "Casino", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Centra": { - "tags": { - "name": "Centra", - "shop": "convenience" - }, - "name": "Centra", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "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", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Coop Jednota": { - "tags": { - "name": "Coop Jednota", - "shop": "convenience" - }, - "name": "Coop Jednota", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Costcutter": { - "tags": { - "name": "Costcutter", - "shop": "convenience" - }, - "name": "Costcutter", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Cumberland Farms": { - "tags": { - "name": "Cumberland Farms", - "shop": "convenience" - }, - "name": "Cumberland Farms", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Delikatesy": { - "tags": { - "name": "Delikatesy", - "shop": "convenience" - }, - "name": "Delikatesy", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Dollar General": { - "tags": { - "name": "Dollar General", - "shop": "convenience" - }, - "name": "Dollar General", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Dorfladen": { - "tags": { - "name": "Dorfladen", - "shop": "convenience" - }, - "name": "Dorfladen", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Epicerie": { - "tags": { - "name": "Epicerie", - "shop": "convenience" - }, - "name": "Epicerie", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/FamilyMart": { - "tags": { - "name": "FamilyMart", - "shop": "convenience" - }, - "name": "FamilyMart", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Food Mart": { - "tags": { - "name": "Food Mart", - "shop": "convenience" - }, - "name": "Food Mart", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Four Square": { - "tags": { - "name": "Four Square", - "shop": "convenience" - }, - "name": "Four Square", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Franprix": { - "tags": { - "name": "Franprix", - "shop": "convenience" - }, - "name": "Franprix", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Groszek": { - "tags": { - "name": "Groszek", - "shop": "convenience" - }, - "name": "Groszek", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Hasty Market": { - "tags": { - "name": "Hasty Market", - "shop": "convenience" - }, - "name": "Hasty Market", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Indomaret": { - "tags": { - "name": "Indomaret", - "shop": "convenience" - }, - "name": "Indomaret", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Jednota": { - "tags": { - "name": "Jednota", - "shop": "convenience" - }, - "name": "Jednota", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/K-Market": { - "tags": { - "name": "K-Market", - "shop": "convenience" - }, - "name": "K-Market", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Konzum": { - "tags": { - "name": "Konzum", - "shop": "convenience" - }, - "name": "Konzum", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/LAWSON": { - "tags": { - "name": "LAWSON", - "shop": "convenience" - }, - "name": "LAWSON", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Lewiatan": { - "tags": { - "name": "Lewiatan", - "shop": "convenience" - }, - "name": "Lewiatan", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Londis": { - "tags": { - "name": "Londis", - "shop": "convenience" - }, - "name": "Londis", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Mac's": { - "tags": { - "name": "Mac's", - "shop": "convenience" - }, - "name": "Mac's", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Mace": { - "tags": { - "name": "Mace", - "shop": "convenience" - }, - "name": "Mace", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/McColl's": { - "tags": { - "name": "McColl's", - "shop": "convenience" - }, - "name": "McColl's", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Mercator": { - "tags": { - "name": "Mercator", - "shop": "convenience" - }, - "name": "Mercator", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Mini Market": { - "tags": { - "name": "Mini Market", - "shop": "convenience" - }, - "name": "Mini Market", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Mini Stop": { - "tags": { - "name": "Mini Stop", - "shop": "convenience" - }, - "name": "Mini Stop", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Nisa": { - "tags": { - "name": "Nisa", - "shop": "convenience" - }, - "name": "Nisa", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Nisa Local": { - "tags": { - "name": "Nisa Local", - "shop": "convenience" - }, - "name": "Nisa Local", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Oxxo": { - "tags": { - "name": "Oxxo", - "shop": "convenience" - }, - "name": "Oxxo", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/One Stop": { - "tags": { - "name": "One Stop", - "shop": "convenience" - }, - "name": "One Stop", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Petit Casino": { - "tags": { - "name": "Petit Casino", - "shop": "convenience" - }, - "name": "Petit Casino", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Picard": { - "tags": { - "name": "Picard", - "shop": "convenience" - }, - "name": "Picard", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Potraviny": { - "tags": { - "name": "Potraviny", - "shop": "convenience" - }, - "name": "Potraviny", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Premier": { - "tags": { - "name": "Premier", - "shop": "convenience" - }, - "name": "Premier", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Proxi": { - "tags": { - "name": "Proxi", - "shop": "convenience" - }, - "name": "Proxi", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/SPAR": { - "tags": { - "name": "SPAR", - "shop": "convenience" - }, - "name": "SPAR", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Sainsbury's Local": { - "tags": { - "name": "Sainsbury's Local", - "shop": "convenience" - }, - "name": "Sainsbury's Local", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Sale": { - "tags": { - "name": "Sale", - "shop": "convenience" - }, - "name": "Sale", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Select": { - "tags": { - "name": "Select", - "shop": "convenience" - }, - "name": "Select", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Siwa": { - "tags": { - "name": "Siwa", - "shop": "convenience" - }, - "name": "Siwa", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "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", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Spar": { - "tags": { - "name": "Spar", - "shop": "convenience" - }, - "name": "Spar", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Społem": { - "tags": { - "name": "Społem", - "shop": "convenience" - }, - "name": "Społem", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Spożywczy": { - "tags": { - "name": "Spożywczy", - "shop": "convenience" - }, - "name": "Spożywczy", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Stores": { - "tags": { - "name": "Stores", - "shop": "convenience" - }, - "name": "Stores", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Studenac": { - "tags": { - "name": "Studenac", - "shop": "convenience" - }, - "name": "Studenac", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Sunkus": { - "tags": { - "name": "Sunkus", - "shop": "convenience" - }, - "name": "Sunkus", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/Tesco Express": { + "shop/supermarket/Tesco Express": { "tags": { "name": "Tesco Express", - "shop": "convenience" + "shop": "supermarket" }, "name": "Tesco Express", - "icon": "shop", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/The Co-operative Food": { + "shop/supermarket/King Soopers": { "tags": { - "name": "The Co-operative Food", - "shop": "convenience" + "name": "King Soopers", + "shop": "supermarket" }, - "name": "The Co-operative Food", - "icon": "shop", + "name": "King Soopers", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Valintatalo": { + "shop/supermarket/Kiwi": { "tags": { - "name": "Valintatalo", - "shop": "convenience" + "name": "Kiwi", + "shop": "supermarket" }, - "name": "Valintatalo", - "icon": "shop", + "name": "Kiwi", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Vival": { + "shop/supermarket/Edeka": { "tags": { - "name": "Vival", - "shop": "convenience" + "name": "Edeka", + "shop": "supermarket" }, - "name": "Vival", - "icon": "shop", + "name": "Edeka", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Volg": { + "shop/supermarket/Pick n Pay": { + "tags": { + "name": "Pick n Pay", + "shop": "supermarket" + }, + "name": "Pick n Pay", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/ICA": { + "tags": { + "name": "ICA", + "shop": "supermarket" + }, + "name": "ICA", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Tengelmann": { + "tags": { + "name": "Tengelmann", + "shop": "supermarket" + }, + "name": "Tengelmann", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Waitrose": { + "tags": { + "name": "Waitrose", + "shop": "supermarket" + }, + "name": "Waitrose", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Spar": { + "tags": { + "name": "Spar", + "shop": "supermarket" + }, + "name": "Spar", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Hofer": { + "tags": { + "name": "Hofer", + "shop": "supermarket" + }, + "name": "Hofer", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/M-Preis": { + "tags": { + "name": "M-Preis", + "shop": "supermarket" + }, + "name": "M-Preis", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/LIDL": { + "tags": { + "name": "LIDL", + "shop": "supermarket" + }, + "name": "LIDL", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/tegut": { + "tags": { + "name": "tegut", + "shop": "supermarket" + }, + "name": "tegut", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Sainsbury's Local": { + "tags": { + "name": "Sainsbury's Local", + "shop": "supermarket" + }, + "name": "Sainsbury's Local", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/E-Center": { + "tags": { + "name": "E-Center", + "shop": "supermarket" + }, + "name": "E-Center", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Aldi Nord": { + "tags": { + "name": "Aldi Nord", + "shop": "supermarket" + }, + "name": "Aldi Nord", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/nahkauf": { + "tags": { + "name": "nahkauf", + "shop": "supermarket" + }, + "name": "nahkauf", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Meijer": { + "tags": { + "name": "Meijer", + "shop": "supermarket" + }, + "name": "Meijer", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Safeway": { + "tags": { + "name": "Safeway", + "shop": "supermarket" + }, + "name": "Safeway", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Costco": { + "tags": { + "name": "Costco", + "shop": "supermarket" + }, + "name": "Costco", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Albert": { + "tags": { + "name": "Albert", + "shop": "supermarket" + }, + "name": "Albert", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Jumbo": { + "tags": { + "name": "Jumbo", + "shop": "supermarket" + }, + "name": "Jumbo", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Shoprite": { + "tags": { + "name": "Shoprite", + "shop": "supermarket" + }, + "name": "Shoprite", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/MPreis": { + "tags": { + "name": "MPreis", + "shop": "supermarket" + }, + "name": "MPreis", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Penny Market": { + "tags": { + "name": "Penny Market", + "shop": "supermarket" + }, + "name": "Penny Market", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Tesco Extra": { + "tags": { + "name": "Tesco Extra", + "shop": "supermarket" + }, + "name": "Tesco Extra", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Albert Heijn": { + "tags": { + "name": "Albert Heijn", + "shop": "supermarket" + }, + "name": "Albert Heijn", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/IGA": { + "tags": { + "name": "IGA", + "shop": "supermarket" + }, + "name": "IGA", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Metro": { + "tags": { + "name": "Metro", + "shop": "supermarket" + }, + "name": "Metro", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Neukauf": { + "tags": { + "name": "Neukauf", + "shop": "supermarket" + }, + "name": "Neukauf", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Migros": { + "tags": { + "name": "Migros", + "shop": "supermarket" + }, + "name": "Migros", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Marktkauf": { + "tags": { + "name": "Marktkauf", + "shop": "supermarket" + }, + "name": "Marktkauf", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Delikatesy Centrum": { + "tags": { + "name": "Delikatesy Centrum", + "shop": "supermarket" + }, + "name": "Delikatesy Centrum", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/C1000": { + "tags": { + "name": "C1000", + "shop": "supermarket" + }, + "name": "C1000", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Hoogvliet": { + "tags": { + "name": "Hoogvliet", + "shop": "supermarket" + }, + "name": "Hoogvliet", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/COOP": { + "tags": { + "name": "COOP", + "shop": "supermarket" + }, + "name": "COOP", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Food Basics": { + "tags": { + "name": "Food Basics", + "shop": "supermarket" + }, + "name": "Food Basics", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Casino": { + "tags": { + "name": "Casino", + "shop": "supermarket" + }, + "name": "Casino", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Penny Markt": { + "tags": { + "name": "Penny Markt", + "shop": "supermarket" + }, + "name": "Penny Markt", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Giant": { + "tags": { + "name": "Giant", + "shop": "supermarket" + }, + "name": "Giant", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/COOP Jednota": { + "tags": { + "name": "COOP Jednota", + "shop": "supermarket" + }, + "name": "COOP Jednota", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Rema 1000": { + "tags": { + "name": "Rema 1000", + "shop": "supermarket" + }, + "name": "Rema 1000", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Kaufpark": { + "tags": { + "name": "Kaufpark", + "shop": "supermarket" + }, + "name": "Kaufpark", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/ALDI SÜD": { + "tags": { + "name": "ALDI SÜD", + "shop": "supermarket" + }, + "name": "ALDI SÜD", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Simply Market": { + "tags": { + "name": "Simply Market", + "shop": "supermarket" + }, + "name": "Simply Market", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Konzum": { + "tags": { + "name": "Konzum", + "shop": "supermarket" + }, + "name": "Konzum", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Carrefour Express": { + "tags": { + "name": "Carrefour Express", + "shop": "supermarket" + }, + "name": "Carrefour Express", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Eurospar": { + "tags": { + "name": "Eurospar", + "shop": "supermarket" + }, + "name": "Eurospar", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Mercator": { + "tags": { + "name": "Mercator", + "shop": "supermarket" + }, + "name": "Mercator", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Mercadona": { + "tags": { + "name": "Mercadona", + "shop": "supermarket" + }, + "name": "Mercadona", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Famila": { + "tags": { + "name": "Famila", + "shop": "supermarket" + }, + "name": "Famila", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Hemköp": { + "tags": { + "name": "Hemköp", + "shop": "supermarket" + }, + "name": "Hemköp", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/real,-": { + "tags": { + "name": "real,-", + "shop": "supermarket" + }, + "name": "real,-", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Markant": { + "tags": { + "name": "Markant", + "shop": "supermarket" + }, + "name": "Markant", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Volg": { "tags": { "name": "Volg", - "shop": "convenience" + "shop": "supermarket" }, "name": "Volg", - "icon": "shop", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/abc": { + "shop/supermarket/Leader Price": { "tags": { - "name": "abc", - "shop": "convenience" + "name": "Leader Price", + "shop": "supermarket" }, - "name": "abc", - "icon": "shop", + "name": "Leader Price", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Żabka": { + "shop/supermarket/Treff 3000": { "tags": { - "name": "Żabka", - "shop": "convenience" + "name": "Treff 3000", + "shop": "supermarket" }, - "name": "Żabka", - "icon": "shop", + "name": "Treff 3000", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Авоська": { + "shop/supermarket/SuperBrugsen": { "tags": { - "name": "Авоська", - "shop": "convenience" + "name": "SuperBrugsen", + "shop": "supermarket" }, - "name": "Авоська", - "icon": "shop", + "name": "SuperBrugsen", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Березка": { + "shop/supermarket/Kaiser's": { "tags": { - "name": "Березка", - "shop": "convenience" + "name": "Kaiser's", + "shop": "supermarket" }, - "name": "Березка", - "icon": "shop", + "name": "Kaiser's", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Весна": { + "shop/supermarket/K+K": { "tags": { - "name": "Весна", - "shop": "convenience" + "name": "K+K", + "shop": "supermarket" }, - "name": "Весна", - "icon": "shop", + "name": "K+K", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Визит": { + "shop/supermarket/Unimarkt": { "tags": { - "name": "Визит", - "shop": "convenience" + "name": "Unimarkt", + "shop": "supermarket" }, - "name": "Визит", - "icon": "shop", + "name": "Unimarkt", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Виктория": { + "shop/supermarket/Sobeys": { "tags": { - "name": "Виктория", - "shop": "convenience" + "name": "Sobeys", + "shop": "supermarket" }, - "name": "Виктория", - "icon": "shop", + "name": "Sobeys", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Гастроном": { + "shop/supermarket/S-Market": { "tags": { - "name": "Гастроном", - "shop": "convenience" + "name": "S-Market", + "shop": "supermarket" }, - "name": "Гастроном", - "icon": "shop", + "name": "S-Market", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Дикси": { + "shop/supermarket/Combi": { "tags": { - "name": "Дикси", - "shop": "convenience" + "name": "Combi", + "shop": "supermarket" }, - "name": "Дикси", - "icon": "shop", + "name": "Combi", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Кировский": { + "shop/supermarket/Denner": { "tags": { - "name": "Кировский", - "shop": "convenience" + "name": "Denner", + "shop": "supermarket" }, - "name": "Кировский", - "icon": "shop", + "name": "Denner", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Копеечка": { + "shop/supermarket/Konsum": { "tags": { - "name": "Копеечка", - "shop": "convenience" + "name": "Konsum", + "shop": "supermarket" }, - "name": "Копеечка", - "icon": "shop", + "name": "Konsum", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Кулинария": { + "shop/supermarket/Franprix": { "tags": { - "name": "Кулинария", - "shop": "convenience" + "name": "Franprix", + "shop": "supermarket" }, - "name": "Кулинария", - "icon": "shop", + "name": "Franprix", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Магазин": { + "shop/supermarket/Monoprix": { "tags": { - "name": "Магазин", - "shop": "convenience" + "name": "Monoprix", + "shop": "supermarket" }, - "name": "Магазин", - "icon": "shop", + "name": "Monoprix", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Магнит": { + "shop/supermarket/Diska": { "tags": { - "name": "Магнит", - "shop": "convenience" + "name": "Diska", + "shop": "supermarket" }, - "name": "Магнит", - "icon": "shop", + "name": "Diska", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Мария-Ра": { + "shop/supermarket/PENNY": { "tags": { - "name": "Мария-Ра", - "shop": "convenience" + "name": "PENNY", + "shop": "supermarket" }, - "name": "Мария-Ра", - "icon": "shop", + "name": "PENNY", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Мечта": { + "shop/supermarket/Dia": { "tags": { - "name": "Мечта", - "shop": "convenience" + "name": "Dia", + "shop": "supermarket" }, - "name": "Мечта", - "icon": "shop", + "name": "Dia", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Минимаркет": { + "shop/supermarket/Giant Eagle": { "tags": { - "name": "Минимаркет", - "shop": "convenience" + "name": "Giant Eagle", + "shop": "supermarket" }, - "name": "Минимаркет", - "icon": "shop", + "name": "Giant Eagle", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Монетка": { + "shop/supermarket/NORMA": { "tags": { - "name": "Монетка", - "shop": "convenience" + "name": "NORMA", + "shop": "supermarket" }, - "name": "Монетка", - "icon": "shop", + "name": "NORMA", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Надежда": { + "shop/supermarket/AD Delhaize": { "tags": { - "name": "Надежда", - "shop": "convenience" + "name": "AD Delhaize", + "shop": "supermarket" }, - "name": "Надежда", - "icon": "shop", + "name": "AD Delhaize", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Перекресток": { + "shop/supermarket/Consum": { "tags": { - "name": "Перекресток", - "shop": "convenience" + "name": "Consum", + "shop": "supermarket" }, - "name": "Перекресток", - "icon": "shop", + "name": "Consum", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Продукти": { + "shop/supermarket/Carrefour Market": { "tags": { - "name": "Продукти", - "shop": "convenience" + "name": "Carrefour Market", + "shop": "supermarket" }, - "name": "Продукти", - "icon": "shop", + "name": "Carrefour Market", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Продуктовый": { + "shop/supermarket/Carrefour City": { "tags": { - "name": "Продуктовый", - "shop": "convenience" + "name": "Carrefour City", + "shop": "supermarket" }, - "name": "Продуктовый", - "icon": "shop", + "name": "Carrefour City", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Продуктовый магазин": { + "shop/supermarket/Pam": { "tags": { - "name": "Продуктовый магазин", - "shop": "convenience" + "name": "Pam", + "shop": "supermarket" }, - "name": "Продуктовый магазин", - "icon": "shop", + "name": "Pam", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Продукты": { + "shop/supermarket/Despar": { "tags": { - "name": "Продукты", - "shop": "convenience" + "name": "Despar", + "shop": "supermarket" }, - "name": "Продукты", - "icon": "shop", + "name": "Despar", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Пятёрочка": { + "shop/supermarket/Eroski": { "tags": { - "name": "Пятёрочка", - "shop": "convenience" + "name": "Eroski", + "shop": "supermarket" }, - "name": "Пятёрочка", - "icon": "shop", + "name": "Eroski", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Смак": { + "shop/supermarket/Costcutter": { "tags": { - "name": "Смак", - "shop": "convenience" + "name": "Costcutter", + "shop": "supermarket" }, - "name": "Смак", - "icon": "shop", + "name": "Costcutter", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/Универсам": { + "shop/supermarket/Maxi": { "tags": { - "name": "Универсам", - "shop": "convenience" + "name": "Maxi", + "shop": "supermarket" }, - "name": "Универсам", - "icon": "shop", + "name": "Maxi", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/магазин": { + "shop/supermarket/Colruyt": { "tags": { - "name": "магазин", - "shop": "convenience" + "name": "Colruyt", + "shop": "supermarket" }, - "name": "магазин", - "icon": "shop", + "name": "Colruyt", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/продукты": { + "shop/supermarket/The Co-operative": { "tags": { - "name": "продукты", - "shop": "convenience" + "name": "The Co-operative", + "shop": "supermarket" }, - "name": "продукты", - "icon": "shop", + "name": "The Co-operative", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/เซเว่นอีเลฟเว่น": { + "shop/supermarket/sky": { "tags": { - "name": "เซเว่นอีเลฟเว่น", - "shop": "convenience" + "name": "sky", + "shop": "supermarket" }, - "name": "เซเว่นอีเลฟเว่น", - "icon": "shop", + "name": "sky", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/მარკეტი (Market)": { + "shop/supermarket/Delhaize": { "tags": { - "name": "მარკეტი (Market)", - "shop": "convenience" + "name": "Delhaize", + "shop": "supermarket" }, - "name": "მარკეტი (Market)", - "icon": "shop", + "name": "Delhaize", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/サンクス": { + "shop/supermarket/CBA": { "tags": { - "name": "サンクス", - "name:en": "sunkus", - "shop": "convenience" + "name": "CBA", + "shop": "supermarket" }, - "name": "サンクス", - "icon": "shop", + "name": "CBA", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/サークルK": { + "shop/supermarket/Shopi": { "tags": { - "name": "サークルK", - "name:en": "Circle K", - "shop": "convenience" + "name": "Shopi", + "shop": "supermarket" }, - "name": "サークルK", - "icon": "shop", + "name": "Shopi", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/convenience/スリーエフ": { - "tags": { - "name": "スリーエフ", - "shop": "convenience" - }, - "name": "スリーエフ", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/セイコーマート (Seicomart)": { - "tags": { - "name": "セイコーマート (Seicomart)", - "shop": "convenience" - }, - "name": "セイコーマート (Seicomart)", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/セブンイレブン": { - "tags": { - "name": "セブンイレブン", - "name:en": "7-Eleven", - "shop": "convenience" - }, - "name": "セブンイレブン", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/デイリーヤマザキ": { - "tags": { - "name": "デイリーヤマザキ", - "shop": "convenience" - }, - "name": "デイリーヤマザキ", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/ファミリーマート": { - "tags": { - "name": "ファミリーマート", - "name:en": "FamilyMart", - "shop": "convenience" - }, - "name": "ファミリーマート", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/ミニストップ": { - "tags": { - "name": "ミニストップ", - "name:en": "MINISTOP", - "shop": "convenience" - }, - "name": "ミニストップ", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/ローソン": { - "tags": { - "name": "ローソン", - "name:en": "LAWSON", - "shop": "convenience" - }, - "name": "ローソン", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/ローソンストア100": { - "tags": { - "name": "ローソンストア100", - "shop": "convenience" - }, - "name": "ローソンストア100", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "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", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/全家": { - "tags": { - "name": "全家", - "shop": "convenience" - }, - "name": "全家", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/convenience/全家便利商店": { - "tags": { - "name": "全家便利商店", - "shop": "convenience" - }, - "name": "全家便利商店", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "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", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/department_store/Debenhams": { - "tags": { - "name": "Debenhams", - "shop": "department_store" - }, - "name": "Debenhams", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "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", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/department_store/Karstadt": { - "tags": { - "name": "Karstadt", - "shop": "department_store" - }, - "name": "Karstadt", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/department_store/Kmart": { - "tags": { - "name": "Kmart", - "shop": "department_store" - }, - "name": "Kmart", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "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", - "vertex", - "area" - ], - "fields": [ - "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", - "vertex", - "area" - ], - "fields": [ - "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", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/department_store/Sears": { - "tags": { - "name": "Sears", - "shop": "department_store" - }, - "name": "Sears", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/department_store/Target": { - "tags": { - "name": "Target", - "shop": "department_store" - }, - "name": "Target", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/department_store/Walmart": { + "shop/supermarket/Walmart": { "tags": { "name": "Walmart", - "shop": "department_store" + "shop": "supermarket" }, "name": "Walmart", - "icon": "shop", + "icon": "grocery", "geometry": [ "point", "vertex", "area" ], "fields": [ - "address", + "operator", "building_area", - "opening_hours" + "address" ], "suggestion": true }, - "shop/department_store/Walmart Supercenter": { + "shop/supermarket/Kroger": { + "tags": { + "name": "Kroger", + "shop": "supermarket" + }, + "name": "Kroger", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Albertsons": { + "tags": { + "name": "Albertsons", + "shop": "supermarket" + }, + "name": "Albertsons", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Trader Joe's": { + "tags": { + "name": "Trader Joe's", + "shop": "supermarket" + }, + "name": "Trader Joe's", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Feneberg": { + "tags": { + "name": "Feneberg", + "shop": "supermarket" + }, + "name": "Feneberg", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/dm": { + "tags": { + "name": "dm", + "shop": "supermarket" + }, + "name": "dm", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Kvickly": { + "tags": { + "name": "Kvickly", + "shop": "supermarket" + }, + "name": "Kvickly", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Makro": { + "tags": { + "name": "Makro", + "shop": "supermarket" + }, + "name": "Makro", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Nah & Frisch": { + "tags": { + "name": "Nah & Frisch", + "shop": "supermarket" + }, + "name": "Nah & Frisch", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Champion": { + "tags": { + "name": "Champion", + "shop": "supermarket" + }, + "name": "Champion", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Fakta": { + "tags": { + "name": "Fakta", + "shop": "supermarket" + }, + "name": "Fakta", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Магнит": { + "tags": { + "name": "Магнит", + "shop": "supermarket" + }, + "name": "Магнит", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Caprabo": { + "tags": { + "name": "Caprabo", + "shop": "supermarket" + }, + "name": "Caprabo", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Famiglia Cooperativa": { + "tags": { + "name": "Famiglia Cooperativa", + "shop": "supermarket" + }, + "name": "Famiglia Cooperativa", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Народная 7Я семьЯ": { + "tags": { + "name": "Народная 7Я семьЯ", + "shop": "supermarket" + }, + "name": "Народная 7Я семьЯ", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Esselunga": { + "tags": { + "name": "Esselunga", + "shop": "supermarket" + }, + "name": "Esselunga", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Maxima": { + "tags": { + "name": "Maxima", + "shop": "supermarket" + }, + "name": "Maxima", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Petit Casino": { + "tags": { + "name": "Petit Casino", + "shop": "supermarket" + }, + "name": "Petit Casino", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Wasgau": { + "tags": { + "name": "Wasgau", + "shop": "supermarket" + }, + "name": "Wasgau", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Pingo Doce": { + "tags": { + "name": "Pingo Doce", + "shop": "supermarket" + }, + "name": "Pingo Doce", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Match": { + "tags": { + "name": "Match", + "shop": "supermarket" + }, + "name": "Match", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Profi": { + "tags": { + "name": "Profi", + "shop": "supermarket" + }, + "name": "Profi", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Lider": { + "tags": { + "name": "Lider", + "shop": "supermarket" + }, + "name": "Lider", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Unimarc": { + "tags": { + "name": "Unimarc", + "shop": "supermarket" + }, + "name": "Unimarc", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Co-operative Food": { + "tags": { + "name": "Co-operative Food", + "shop": "supermarket" + }, + "name": "Co-operative Food", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Santa Isabel": { + "tags": { + "name": "Santa Isabel", + "shop": "supermarket" + }, + "name": "Santa Isabel", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Седьмой континент": { + "tags": { + "name": "Седьмой континент", + "shop": "supermarket" + }, + "name": "Седьмой континент", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/HIT": { + "tags": { + "name": "HIT", + "shop": "supermarket" + }, + "name": "HIT", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Rimi": { + "tags": { + "name": "Rimi", + "shop": "supermarket" + }, + "name": "Rimi", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Conad": { + "tags": { + "name": "Conad", + "shop": "supermarket" + }, + "name": "Conad", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Фуршет": { + "tags": { + "name": "Фуршет", + "shop": "supermarket" + }, + "name": "Фуршет", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Willys": { + "tags": { + "name": "Willys", + "shop": "supermarket" + }, + "name": "Willys", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Farmfoods": { + "tags": { + "name": "Farmfoods", + "shop": "supermarket" + }, + "name": "Farmfoods", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Фора": { + "tags": { + "name": "Фора", + "shop": "supermarket" + }, + "name": "Фора", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Dunnes Stores": { + "tags": { + "name": "Dunnes Stores", + "shop": "supermarket" + }, + "name": "Dunnes Stores", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Сільпо": { + "tags": { + "name": "Сільпо", + "shop": "supermarket" + }, + "name": "Сільпо", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/マルエツ": { + "tags": { + "name": "マルエツ", + "shop": "supermarket" + }, + "name": "マルエツ", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Piggly Wiggly": { + "tags": { + "name": "Piggly Wiggly", + "shop": "supermarket" + }, + "name": "Piggly Wiggly", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Crai": { + "tags": { + "name": "Crai", + "shop": "supermarket" + }, + "name": "Crai", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Biedronka": { + "tags": { + "name": "Biedronka", + "shop": "supermarket" + }, + "name": "Biedronka", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/El Árbol": { + "tags": { + "name": "El Árbol", + "shop": "supermarket" + }, + "name": "El Árbol", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "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", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Foodland": { + "tags": { + "name": "Foodland", + "shop": "supermarket" + }, + "name": "Foodland", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Super Brugsen": { + "tags": { + "name": "Super Brugsen", + "shop": "supermarket" + }, + "name": "Super Brugsen", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Дикси": { + "tags": { + "name": "Дикси", + "shop": "supermarket" + }, + "name": "Дикси", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Пятёрочка": { + "tags": { + "name": "Пятёрочка", + "shop": "supermarket" + }, + "name": "Пятёрочка", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Publix": { + "tags": { + "name": "Publix", + "shop": "supermarket" + }, + "name": "Publix", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Whole Foods": { + "tags": { + "name": "Whole Foods", + "shop": "supermarket" + }, + "name": "Whole Foods", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Føtex": { + "tags": { + "name": "Føtex", + "shop": "supermarket" + }, + "name": "Føtex", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/coop": { + "tags": { + "name": "coop", + "shop": "supermarket" + }, + "name": "coop", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Fressnapf": { + "tags": { + "name": "Fressnapf", + "shop": "supermarket" + }, + "name": "Fressnapf", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Coop Konsum": { + "tags": { + "name": "Coop Konsum", + "shop": "supermarket" + }, + "name": "Coop Konsum", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Carrefour Contact": { + "tags": { + "name": "Carrefour Contact", + "shop": "supermarket" + }, + "name": "Carrefour Contact", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/SPAR": { + "tags": { + "name": "SPAR", + "shop": "supermarket" + }, + "name": "SPAR", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/No Frills": { + "tags": { + "name": "No Frills", + "shop": "supermarket" + }, + "name": "No Frills", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "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", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Plodine": { + "tags": { + "name": "Plodine", + "shop": "supermarket" + }, + "name": "Plodine", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/ADEG": { + "tags": { + "name": "ADEG", + "shop": "supermarket" + }, + "name": "ADEG", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Minipreço": { + "tags": { + "name": "Minipreço", + "shop": "supermarket" + }, + "name": "Minipreço", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Eurospin": { + "tags": { + "name": "Eurospin", + "shop": "supermarket" + }, + "name": "Eurospin", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Семья": { + "tags": { + "name": "Семья", + "shop": "supermarket" + }, + "name": "Семья", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Евроопт": { + "tags": { + "name": "Евроопт", + "shop": "supermarket" + }, + "name": "Евроопт", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Centra": { + "tags": { + "name": "Centra", + "shop": "supermarket" + }, + "name": "Centra", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Квартал": { + "tags": { + "name": "Квартал", + "shop": "supermarket" + }, + "name": "Квартал", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/New World": { + "tags": { + "name": "New World", + "shop": "supermarket" + }, + "name": "New World", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Countdown": { + "tags": { + "name": "Countdown", + "shop": "supermarket" + }, + "name": "Countdown", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Reliance Fresh": { + "tags": { + "name": "Reliance Fresh", + "shop": "supermarket" + }, + "name": "Reliance Fresh", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Stokrotka": { + "tags": { + "name": "Stokrotka", + "shop": "supermarket" + }, + "name": "Stokrotka", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Coop Jednota": { + "tags": { + "name": "Coop Jednota", + "shop": "supermarket" + }, + "name": "Coop Jednota", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Fred Meyer": { + "tags": { + "name": "Fred Meyer", + "shop": "supermarket" + }, + "name": "Fred Meyer", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Irma": { + "tags": { + "name": "Irma", + "shop": "supermarket" + }, + "name": "Irma", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Continente": { + "tags": { + "name": "Continente", + "shop": "supermarket" + }, + "name": "Continente", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Price Chopper": { + "tags": { + "name": "Price Chopper", + "shop": "supermarket" + }, + "name": "Price Chopper", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Wegmans": { + "tags": { + "name": "Wegmans", + "shop": "supermarket" + }, + "name": "Wegmans", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Game": { + "tags": { + "name": "Game", + "shop": "supermarket" + }, + "name": "Game", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Soriana": { + "tags": { + "name": "Soriana", + "shop": "supermarket" + }, + "name": "Soriana", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Alimerka": { + "tags": { + "name": "Alimerka", + "shop": "supermarket" + }, + "name": "Alimerka", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Piotr i Paweł": { + "tags": { + "name": "Piotr i Paweł", + "shop": "supermarket" + }, + "name": "Piotr i Paweł", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Перекресток": { + "tags": { + "name": "Перекресток", + "shop": "supermarket" + }, + "name": "Перекресток", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Maxima X": { + "tags": { + "name": "Maxima X", + "shop": "supermarket" + }, + "name": "Maxima X", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Карусель": { + "tags": { + "name": "Карусель", + "shop": "supermarket" + }, + "name": "Карусель", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Tesco Lotus": { + "tags": { + "name": "Tesco Lotus", + "shop": "supermarket" + }, + "name": "Tesco Lotus", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Condis": { + "tags": { + "name": "Condis", + "shop": "supermarket" + }, + "name": "Condis", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Sam's Club": { + "tags": { + "name": "Sam's Club", + "shop": "supermarket" + }, + "name": "Sam's Club", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Копейка": { + "tags": { + "name": "Копейка", + "shop": "supermarket" + }, + "name": "Копейка", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Géant Casino": { + "tags": { + "name": "Géant Casino", + "shop": "supermarket" + }, + "name": "Géant Casino", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/ASDA": { + "tags": { + "name": "ASDA", + "shop": "supermarket" + }, + "name": "ASDA", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Intermarche": { + "tags": { + "name": "Intermarche", + "shop": "supermarket" + }, + "name": "Intermarche", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Stop & Shop": { + "tags": { + "name": "Stop & Shop", + "shop": "supermarket" + }, + "name": "Stop & Shop", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Food Lion": { + "tags": { + "name": "Food Lion", + "shop": "supermarket" + }, + "name": "Food Lion", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Harris Teeter": { + "tags": { + "name": "Harris Teeter", + "shop": "supermarket" + }, + "name": "Harris Teeter", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/H-E-B": { + "tags": { + "name": "H-E-B", + "shop": "supermarket" + }, + "name": "H-E-B", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Foodworks": { + "tags": { + "name": "Foodworks", + "shop": "supermarket" + }, + "name": "Foodworks", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Polo Market": { + "tags": { + "name": "Polo Market", + "shop": "supermarket" + }, + "name": "Polo Market", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/西友 (SEIYU)": { + "tags": { + "name": "西友 (SEIYU)", + "shop": "supermarket" + }, + "name": "西友 (SEIYU)", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Полушка": { + "tags": { + "name": "Полушка", + "shop": "supermarket" + }, + "name": "Полушка", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Extra": { + "tags": { + "name": "Extra", + "shop": "supermarket" + }, + "name": "Extra", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Lewiatan": { + "tags": { + "name": "Lewiatan", + "shop": "supermarket" + }, + "name": "Lewiatan", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/АТБ": { + "tags": { + "name": "АТБ", + "shop": "supermarket" + }, + "name": "АТБ", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Społem": { + "tags": { + "name": "Społem", + "shop": "supermarket" + }, + "name": "Społem", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Bodega Aurrera": { + "tags": { + "name": "Bodega Aurrera", + "shop": "supermarket" + }, + "name": "Bodega Aurrera", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Мария-Ра": { + "tags": { + "name": "Мария-Ра", + "shop": "supermarket" + }, + "name": "Мария-Ра", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Магнолия": { + "tags": { + "name": "Магнолия", + "shop": "supermarket" + }, + "name": "Магнолия", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Магазин": { + "tags": { + "name": "Магазин", + "shop": "supermarket" + }, + "name": "Магазин", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Монетка": { + "tags": { + "name": "Монетка", + "shop": "supermarket" + }, + "name": "Монетка", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Hy-Vee": { + "tags": { + "name": "Hy-Vee", + "shop": "supermarket" + }, + "name": "Hy-Vee", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Walmart Supercenter": { "tags": { "name": "Walmart Supercenter", - "shop": "department_store" + "shop": "supermarket" }, "name": "Walmart Supercenter", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Hannaford": { + "tags": { + "name": "Hannaford", + "shop": "supermarket" + }, + "name": "Hannaford", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/業務スーパー": { + "tags": { + "name": "業務スーパー", + "shop": "supermarket" + }, + "name": "業務スーパー", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Norfa XL": { + "tags": { + "name": "Norfa XL", + "shop": "supermarket" + }, + "name": "Norfa XL", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/ヨークマート (YorkMart)": { + "tags": { + "name": "ヨークマート (YorkMart)", + "shop": "supermarket" + }, + "name": "ヨークマート (YorkMart)", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/supermarket/Leclerc Drive": { + "tags": { + "name": "Leclerc Drive", + "shop": "supermarket" + }, + "name": "Leclerc Drive", + "icon": "grocery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "operator", + "building_area", + "address" + ], + "suggestion": true + }, + "shop/electronics/Media Markt": { + "tags": { + "name": "Media Markt", + "shop": "electronics" + }, + "name": "Media Markt", "icon": "shop", "geometry": [ "point", @@ -87320,658 +89112,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/department_store/Woolworth": { + "shop/electronics/Maplin": { "tags": { - "name": "Woolworth", - "shop": "department_store" + "name": "Maplin", + "shop": "electronics" }, - "name": "Woolworth", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/department_store/Универмаг": { - "tags": { - "name": "Универмаг", - "shop": "department_store" - }, - "name": "Универмаг", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Ace Hardware": { - "tags": { - "name": "Ace Hardware", - "shop": "doityourself" - }, - "name": "Ace Hardware", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/B&Q": { - "tags": { - "name": "B&Q", - "shop": "doityourself" - }, - "name": "B&Q", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Bauhaus": { - "tags": { - "name": "Bauhaus", - "shop": "doityourself" - }, - "name": "Bauhaus", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Baumax": { - "tags": { - "name": "Baumax", - "shop": "doityourself" - }, - "name": "Baumax", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Brico": { - "tags": { - "name": "Brico", - "shop": "doityourself" - }, - "name": "Brico", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Bricomarché": { - "tags": { - "name": "Bricomarché", - "shop": "doityourself" - }, - "name": "Bricomarché", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Bricorama": { - "tags": { - "name": "Bricorama", - "shop": "doityourself" - }, - "name": "Bricorama", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Bunnings Warehouse": { - "tags": { - "name": "Bunnings Warehouse", - "shop": "doityourself" - }, - "name": "Bunnings Warehouse", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Castorama": { - "tags": { - "name": "Castorama", - "shop": "doityourself" - }, - "name": "Castorama", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Gamma": { - "tags": { - "name": "Gamma", - "shop": "doityourself" - }, - "name": "Gamma", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Hagebau": { - "tags": { - "name": "Hagebau", - "shop": "doityourself" - }, - "name": "Hagebau", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Hagebaumarkt": { - "tags": { - "name": "Hagebaumarkt", - "shop": "doityourself" - }, - "name": "Hagebaumarkt", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Hellweg": { - "tags": { - "name": "Hellweg", - "shop": "doityourself" - }, - "name": "Hellweg", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Home Depot": { - "tags": { - "name": "Home Depot", - "shop": "doityourself" - }, - "name": "Home Depot", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Home Hardware": { - "tags": { - "name": "Home Hardware", - "shop": "doityourself" - }, - "name": "Home Hardware", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Homebase": { - "tags": { - "name": "Homebase", - "shop": "doityourself" - }, - "name": "Homebase", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Hornbach": { - "tags": { - "name": "Hornbach", - "shop": "doityourself" - }, - "name": "Hornbach", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Hubo": { - "tags": { - "name": "Hubo", - "shop": "doityourself" - }, - "name": "Hubo", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Lagerhaus": { - "tags": { - "name": "Lagerhaus", - "shop": "doityourself" - }, - "name": "Lagerhaus", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Leroy Merlin": { - "tags": { - "name": "Leroy Merlin", - "shop": "doityourself" - }, - "name": "Leroy Merlin", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Lowes": { - "tags": { - "name": "Lowes", - "shop": "doityourself" - }, - "name": "Lowes", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Max Bahr": { - "tags": { - "name": "Max Bahr", - "shop": "doityourself" - }, - "name": "Max Bahr", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Menards": { - "tags": { - "name": "Menards", - "shop": "doityourself" - }, - "name": "Menards", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Mr Bricolage": { - "tags": { - "name": "Mr Bricolage", - "shop": "doityourself" - }, - "name": "Mr Bricolage", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/OBI": { - "tags": { - "name": "OBI", - "shop": "doityourself" - }, - "name": "OBI", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Praktiker": { - "tags": { - "name": "Praktiker", - "shop": "doityourself" - }, - "name": "Praktiker", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Rona": { - "tags": { - "name": "Rona", - "shop": "doityourself" - }, - "name": "Rona", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Toom": { - "tags": { - "name": "Toom", - "shop": "doityourself" - }, - "name": "Toom", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Toom Baumarkt": { - "tags": { - "name": "Toom Baumarkt", - "shop": "doityourself" - }, - "name": "Toom Baumarkt", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Weldom": { - "tags": { - "name": "Weldom", - "shop": "doityourself" - }, - "name": "Weldom", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Wickes": { - "tags": { - "name": "Wickes", - "shop": "doityourself" - }, - "name": "Wickes", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Стройматериалы": { - "tags": { - "name": "Стройматериалы", - "shop": "doityourself" - }, - "name": "Стройматериалы", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/doityourself/Хозтовары": { - "tags": { - "name": "Хозтовары", - "shop": "doityourself" - }, - "name": "Хозтовары", + "name": "Maplin", "icon": "shop", "geometry": [ "point", @@ -88004,12 +89150,31 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/electronics/Comet": { + "shop/electronics/Future Shop": { "tags": { - "name": "Comet", + "name": "Future Shop", "shop": "electronics" }, - "name": "Comet", + "name": "Future Shop", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/electronics/Saturn": { + "tags": { + "name": "Saturn", + "shop": "electronics" + }, + "name": "Saturn", "icon": "shop", "geometry": [ "point", @@ -88042,12 +89207,31 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/electronics/Darty": { + "shop/electronics/Radio Shack": { "tags": { - "name": "Darty", + "name": "Radio Shack", "shop": "electronics" }, - "name": "Darty", + "name": "Radio Shack", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/electronics/Comet": { + "tags": { + "name": "Comet", + "shop": "electronics" + }, + "name": "Comet", "icon": "shop", "geometry": [ "point", @@ -88099,12 +89283,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/electronics/Future Shop": { + "shop/electronics/Эльдорадо": { "tags": { - "name": "Future Shop", + "name": "Эльдорадо", "shop": "electronics" }, - "name": "Future Shop", + "name": "Эльдорадо", "icon": "shop", "geometry": [ "point", @@ -88118,69 +89302,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/electronics/Maplin": { + "shop/electronics/Darty": { "tags": { - "name": "Maplin", + "name": "Darty", "shop": "electronics" }, - "name": "Maplin", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/electronics/Media Markt": { - "tags": { - "name": "Media Markt", - "shop": "electronics" - }, - "name": "Media Markt", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/electronics/Radio Shack": { - "tags": { - "name": "Radio Shack", - "shop": "electronics" - }, - "name": "Radio Shack", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/electronics/Saturn": { - "tags": { - "name": "Saturn", - "shop": "electronics" - }, - "name": "Saturn", + "name": "Darty", "icon": "shop", "geometry": [ "point", @@ -88213,12 +89340,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/electronics/Эльдорадо": { + "shop/convenience/McColl's": { "tags": { - "name": "Эльдорадо", - "shop": "electronics" + "name": "McColl's", + "shop": "convenience" }, - "name": "Эльдорадо", + "name": "McColl's", "icon": "shop", "geometry": [ "point", @@ -88232,12 +89359,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/furniture/But": { + "shop/convenience/One Stop": { "tags": { - "name": "But", - "shop": "furniture" + "name": "One Stop", + "shop": "convenience" }, - "name": "But", + "name": "One Stop", "icon": "shop", "geometry": [ "point", @@ -88251,12 +89378,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/furniture/Conforama": { + "shop/convenience/Londis": { "tags": { - "name": "Conforama", - "shop": "furniture" + "name": "Londis", + "shop": "convenience" }, - "name": "Conforama", + "name": "Londis", "icon": "shop", "geometry": [ "point", @@ -88270,12 +89397,2184 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/furniture/Dänisches Bettenlager": { + "shop/convenience/Sale": { "tags": { - "name": "Dänisches Bettenlager", - "shop": "furniture" + "name": "Sale", + "shop": "convenience" }, - "name": "Dänisches Bettenlager", + "name": "Sale", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Siwa": { + "tags": { + "name": "Siwa", + "shop": "convenience" + }, + "name": "Siwa", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Mac's": { + "tags": { + "name": "Mac's", + "shop": "convenience" + }, + "name": "Mac's", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Alepa": { + "tags": { + "name": "Alepa", + "shop": "convenience" + }, + "name": "Alepa", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Hasty Market": { + "tags": { + "name": "Hasty Market", + "shop": "convenience" + }, + "name": "Hasty Market", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/K-Market": { + "tags": { + "name": "K-Market", + "shop": "convenience" + }, + "name": "K-Market", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Valintatalo": { + "tags": { + "name": "Valintatalo", + "shop": "convenience" + }, + "name": "Valintatalo", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/セブンイレブン": { + "tags": { + "name": "セブンイレブン", + "name:en": "7-Eleven", + "shop": "convenience" + }, + "name": "セブンイレブン", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/ローソン": { + "tags": { + "name": "ローソン", + "name:en": "LAWSON", + "shop": "convenience" + }, + "name": "ローソン", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Mace": { + "tags": { + "name": "Mace", + "shop": "convenience" + }, + "name": "Mace", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Mini Market": { + "tags": { + "name": "Mini Market", + "shop": "convenience" + }, + "name": "Mini Market", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Nisa Local": { + "tags": { + "name": "Nisa Local", + "shop": "convenience" + }, + "name": "Nisa Local", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Dorfladen": { + "tags": { + "name": "Dorfladen", + "shop": "convenience" + }, + "name": "Dorfladen", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Продукты": { + "tags": { + "name": "Продукты", + "shop": "convenience" + }, + "name": "Продукты", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Mini Stop": { + "tags": { + "name": "Mini Stop", + "shop": "convenience" + }, + "name": "Mini Stop", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/LAWSON": { + "tags": { + "name": "LAWSON", + "shop": "convenience" + }, + "name": "LAWSON", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/デイリーヤマザキ": { + "tags": { + "name": "デイリーヤマザキ", + "shop": "convenience" + }, + "name": "デイリーヤマザキ", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Надежда": { + "tags": { + "name": "Надежда", + "shop": "convenience" + }, + "name": "Надежда", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Nisa": { + "tags": { + "name": "Nisa", + "shop": "convenience" + }, + "name": "Nisa", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Premier": { + "tags": { + "name": "Premier", + "shop": "convenience" + }, + "name": "Premier", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/ミニストップ": { + "tags": { + "name": "ミニストップ", + "name:en": "MINISTOP", + "shop": "convenience" + }, + "name": "ミニストップ", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/サンクス": { + "tags": { + "name": "サンクス", + "name:en": "sunkus", + "shop": "convenience" + }, + "name": "サンクス", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/スリーエフ": { + "tags": { + "name": "スリーエフ", + "shop": "convenience" + }, + "name": "スリーエフ", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/8 à Huit": { + "tags": { + "name": "8 à Huit", + "shop": "convenience" + }, + "name": "8 à Huit", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Żabka": { + "tags": { + "name": "Żabka", + "shop": "convenience" + }, + "name": "Żabka", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Almacen": { + "tags": { + "name": "Almacen", + "shop": "convenience" + }, + "name": "Almacen", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Vival": { + "tags": { + "name": "Vival", + "shop": "convenience" + }, + "name": "Vival", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/FamilyMart": { + "tags": { + "name": "FamilyMart", + "shop": "convenience" + }, + "name": "FamilyMart", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/ファミリーマート": { + "tags": { + "name": "ファミリーマート", + "name:en": "FamilyMart", + "shop": "convenience" + }, + "name": "ファミリーマート", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Sunkus": { + "tags": { + "name": "Sunkus", + "shop": "convenience" + }, + "name": "Sunkus", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/セブンイレブン(Seven-Eleven)": { + "tags": { + "name": "セブンイレブン(Seven-Eleven)", + "shop": "convenience" + }, + "name": "セブンイレブン(Seven-Eleven)", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Jednota": { + "tags": { + "name": "Jednota", + "shop": "convenience" + }, + "name": "Jednota", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Гастроном": { + "tags": { + "name": "Гастроном", + "shop": "convenience" + }, + "name": "Гастроном", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Proxi": { + "tags": { + "name": "Proxi", + "shop": "convenience" + }, + "name": "Proxi", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Универсам": { + "tags": { + "name": "Универсам", + "shop": "convenience" + }, + "name": "Универсам", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Groszek": { + "tags": { + "name": "Groszek", + "shop": "convenience" + }, + "name": "Groszek", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Select": { + "tags": { + "name": "Select", + "shop": "convenience" + }, + "name": "Select", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Potraviny": { + "tags": { + "name": "Potraviny", + "shop": "convenience" + }, + "name": "Potraviny", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Смак": { + "tags": { + "name": "Смак", + "shop": "convenience" + }, + "name": "Смак", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Эконом": { + "tags": { + "name": "Эконом", + "shop": "convenience" + }, + "name": "Эконом", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Березка": { + "tags": { + "name": "Березка", + "shop": "convenience" + }, + "name": "Березка", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Cumberland Farms": { + "tags": { + "name": "Cumberland Farms", + "shop": "convenience" + }, + "name": "Cumberland Farms", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/24 часа": { + "tags": { + "name": "24 часа", + "shop": "convenience" + }, + "name": "24 часа", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Минимаркет": { + "tags": { + "name": "Минимаркет", + "shop": "convenience" + }, + "name": "Минимаркет", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Oxxo": { + "tags": { + "name": "Oxxo", + "shop": "convenience" + }, + "name": "Oxxo", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/abc": { + "tags": { + "name": "abc", + "shop": "convenience" + }, + "name": "abc", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Продукти": { + "tags": { + "name": "Продукти", + "shop": "convenience" + }, + "name": "Продукти", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/ローソンストア100": { + "tags": { + "name": "ローソンストア100", + "shop": "convenience" + }, + "name": "ローソンストア100", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/เซเว่นอีเลฟเว่น": { + "tags": { + "name": "เซเว่นอีเลฟเว่น", + "shop": "convenience" + }, + "name": "เซเว่นอีเลฟเว่น", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Spożywczy": { + "tags": { + "name": "Spożywczy", + "shop": "convenience" + }, + "name": "Spożywczy", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Фортуна": { + "tags": { + "name": "Фортуна", + "shop": "convenience" + }, + "name": "Фортуна", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Picard": { + "tags": { + "name": "Picard", + "shop": "convenience" + }, + "name": "Picard", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Four Square": { + "tags": { + "name": "Four Square", + "shop": "convenience" + }, + "name": "Four Square", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Визит": { + "tags": { + "name": "Визит", + "shop": "convenience" + }, + "name": "Визит", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Авоська": { + "tags": { + "name": "Авоська", + "shop": "convenience" + }, + "name": "Авоська", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Dollar General": { + "tags": { + "name": "Dollar General", + "shop": "convenience" + }, + "name": "Dollar General", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Studenac": { + "tags": { + "name": "Studenac", + "shop": "convenience" + }, + "name": "Studenac", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/продукты": { + "tags": { + "name": "продукты", + "shop": "convenience" + }, + "name": "продукты", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Кулинария": { + "tags": { + "name": "Кулинария", + "shop": "convenience" + }, + "name": "Кулинария", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/全家": { + "tags": { + "name": "全家", + "shop": "convenience" + }, + "name": "全家", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Мечта": { + "tags": { + "name": "Мечта", + "shop": "convenience" + }, + "name": "Мечта", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Epicerie": { + "tags": { + "name": "Epicerie", + "shop": "convenience" + }, + "name": "Epicerie", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Кировский": { + "tags": { + "name": "Кировский", + "shop": "convenience" + }, + "name": "Кировский", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Food Mart": { + "tags": { + "name": "Food Mart", + "shop": "convenience" + }, + "name": "Food Mart", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Delikatesy": { + "tags": { + "name": "Delikatesy", + "shop": "convenience" + }, + "name": "Delikatesy", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/ポプラ": { + "tags": { + "name": "ポプラ", + "shop": "convenience" + }, + "name": "ポプラ", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Продуктовый магазин": { + "tags": { + "name": "Продуктовый магазин", + "shop": "convenience" + }, + "name": "Продуктовый магазин", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Продуктовый": { + "tags": { + "name": "Продуктовый", + "shop": "convenience" + }, + "name": "Продуктовый", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/セイコーマート (Seicomart)": { + "tags": { + "name": "セイコーマート (Seicomart)", + "shop": "convenience" + }, + "name": "セイコーマート (Seicomart)", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Виктория": { + "tags": { + "name": "Виктория", + "shop": "convenience" + }, + "name": "Виктория", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Весна": { + "tags": { + "name": "Весна", + "shop": "convenience" + }, + "name": "Весна", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Копеечка": { + "tags": { + "name": "Копеечка", + "shop": "convenience" + }, + "name": "Копеечка", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Royal Farms": { + "tags": { + "name": "Royal Farms", + "shop": "convenience" + }, + "name": "Royal Farms", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Alfamart": { + "tags": { + "name": "Alfamart", + "shop": "convenience" + }, + "name": "Alfamart", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Indomaret": { + "tags": { + "name": "Indomaret", + "shop": "convenience" + }, + "name": "Indomaret", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/магазин": { + "tags": { + "name": "магазин", + "shop": "convenience" + }, + "name": "магазин", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/全家便利商店": { + "tags": { + "name": "全家便利商店", + "shop": "convenience" + }, + "name": "全家便利商店", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/მარკეტი (Market)": { + "tags": { + "name": "მარკეტი (Market)", + "shop": "convenience" + }, + "name": "მარკეტი (Market)", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/convenience/Stores": { + "tags": { + "name": "Stores", + "shop": "convenience" + }, + "name": "Stores", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/chemist/Müller": { + "tags": { + "name": "Müller", + "shop": "chemist" + }, + "name": "Müller", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/chemist/Schlecker": { + "tags": { + "name": "Schlecker", + "shop": "chemist" + }, + "name": "Schlecker", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/chemist/Etos": { + "tags": { + "name": "Etos", + "shop": "chemist" + }, + "name": "Etos", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/chemist/Bipa": { + "tags": { + "name": "Bipa", + "shop": "chemist" + }, + "name": "Bipa", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/chemist/Rossmann": { + "tags": { + "name": "Rossmann", + "shop": "chemist" + }, + "name": "Rossmann", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/chemist/Ihr Platz": { + "tags": { + "name": "Ihr Platz", + "shop": "chemist" + }, + "name": "Ihr Platz", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/chemist/Douglas": { + "tags": { + "name": "Douglas", + "shop": "chemist" + }, + "name": "Douglas", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/chemist/Kruidvat": { + "tags": { + "name": "Kruidvat", + "shop": "chemist" + }, + "name": "Kruidvat", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car_repair/Peugeot": { + "tags": { + "name": "Peugeot", + "shop": "car_repair" + }, + "name": "Peugeot", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car_repair/Kwik Fit": { + "tags": { + "name": "Kwik Fit", + "shop": "car_repair" + }, + "name": "Kwik Fit", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car_repair/ATU": { + "tags": { + "name": "ATU", + "shop": "car_repair" + }, + "name": "ATU", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car_repair/Kwik-Fit": { + "tags": { + "name": "Kwik-Fit", + "shop": "car_repair" + }, + "name": "Kwik-Fit", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car_repair/Midas": { + "tags": { + "name": "Midas", + "shop": "car_repair" + }, + "name": "Midas", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car_repair/Feu Vert": { + "tags": { + "name": "Feu Vert", + "shop": "car_repair" + }, + "name": "Feu Vert", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car_repair/Norauto": { + "tags": { + "name": "Norauto", + "shop": "car_repair" + }, + "name": "Norauto", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car_repair/Speedy": { + "tags": { + "name": "Speedy", + "shop": "car_repair" + }, + "name": "Speedy", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car_repair/Автозапчасти": { + "tags": { + "name": "Автозапчасти", + "shop": "car_repair" + }, + "name": "Автозапчасти", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car_repair/Renault": { + "tags": { + "name": "Renault", + "shop": "car_repair" + }, + "name": "Renault", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car_repair/Pit Stop": { + "tags": { + "name": "Pit Stop", + "shop": "car_repair" + }, + "name": "Pit Stop", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car_repair/Jiffy Lube": { + "tags": { + "name": "Jiffy Lube", + "shop": "car_repair" + }, + "name": "Jiffy Lube", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car_repair/Шиномонтаж": { + "tags": { + "name": "Шиномонтаж", + "shop": "car_repair" + }, + "name": "Шиномонтаж", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car_repair/СТО": { + "tags": { + "name": "СТО", + "shop": "car_repair" + }, + "name": "СТО", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car_repair/Carglass": { + "tags": { + "name": "Carglass", + "shop": "car_repair" + }, + "name": "Carglass", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car_repair/шиномонтаж": { + "tags": { + "name": "шиномонтаж", + "shop": "car_repair" + }, + "name": "шиномонтаж", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car_repair/Euromaster": { + "tags": { + "name": "Euromaster", + "shop": "car_repair" + }, + "name": "Euromaster", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car_repair/Firestone": { + "tags": { + "name": "Firestone", + "shop": "car_repair" + }, + "name": "Firestone", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car_repair/AutoZone": { + "tags": { + "name": "AutoZone", + "shop": "car_repair" + }, + "name": "AutoZone", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car_repair/Автосервис": { + "tags": { + "name": "Автосервис", + "shop": "car_repair" + }, + "name": "Автосервис", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car_repair/Roady": { + "tags": { + "name": "Roady", + "shop": "car_repair" + }, + "name": "Roady", "icon": "shop", "geometry": [ "point", @@ -88327,12 +91626,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/furniture/Matratzen Concord": { + "shop/furniture/Roller": { "tags": { - "name": "Matratzen Concord", + "name": "Roller", "shop": "furniture" }, - "name": "Matratzen Concord", + "name": "Roller", "icon": "shop", "geometry": [ "point", @@ -88346,12 +91645,50 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/furniture/Roller": { + "shop/furniture/Dänisches Bettenlager": { "tags": { - "name": "Roller", + "name": "Dänisches Bettenlager", "shop": "furniture" }, - "name": "Roller", + "name": "Dänisches Bettenlager", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/furniture/Conforama": { + "tags": { + "name": "Conforama", + "shop": "furniture" + }, + "name": "Conforama", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/furniture/Matratzen Concord": { + "tags": { + "name": "Matratzen Concord", + "shop": "furniture" + }, + "name": "Matratzen Concord", "icon": "shop", "geometry": [ "point", @@ -88384,12 +91721,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/hairdresser/Coiffeur": { + "shop/furniture/But": { "tags": { - "name": "Coiffeur", - "shop": "hairdresser" + "name": "But", + "shop": "furniture" }, - "name": "Coiffeur", + "name": "But", "icon": "shop", "geometry": [ "point", @@ -88403,12 +91740,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/hairdresser/Franck Provost": { + "shop/doityourself/Hornbach": { "tags": { - "name": "Franck Provost", - "shop": "hairdresser" + "name": "Hornbach", + "shop": "doityourself" }, - "name": "Franck Provost", + "name": "Hornbach", "icon": "shop", "geometry": [ "point", @@ -88422,12 +91759,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/hairdresser/Friseur": { + "shop/doityourself/B&Q": { "tags": { - "name": "Friseur", - "shop": "hairdresser" + "name": "B&Q", + "shop": "doityourself" }, - "name": "Friseur", + "name": "B&Q", "icon": "shop", "geometry": [ "point", @@ -88441,12 +91778,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/hairdresser/Great Clips": { + "shop/doityourself/Hubo": { "tags": { - "name": "Great Clips", - "shop": "hairdresser" + "name": "Hubo", + "shop": "doityourself" }, - "name": "Great Clips", + "name": "Hubo", "icon": "shop", "geometry": [ "point", @@ -88460,12 +91797,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/hairdresser/Klier": { + "shop/doityourself/Mr Bricolage": { "tags": { - "name": "Klier", - "shop": "hairdresser" + "name": "Mr Bricolage", + "shop": "doityourself" }, - "name": "Klier", + "name": "Mr Bricolage", "icon": "shop", "geometry": [ "point", @@ -88479,12 +91816,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/hairdresser/Peluqueria": { + "shop/doityourself/Gamma": { "tags": { - "name": "Peluqueria", - "shop": "hairdresser" + "name": "Gamma", + "shop": "doityourself" }, - "name": "Peluqueria", + "name": "Gamma", "icon": "shop", "geometry": [ "point", @@ -88498,12 +91835,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/hairdresser/Supercuts": { + "shop/doityourself/OBI": { "tags": { - "name": "Supercuts", - "shop": "hairdresser" + "name": "OBI", + "shop": "doityourself" }, - "name": "Supercuts", + "name": "OBI", "icon": "shop", "geometry": [ "point", @@ -88517,12 +91854,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/hairdresser/Парикмахерская": { + "shop/doityourself/Lowes": { "tags": { - "name": "Парикмахерская", - "shop": "hairdresser" + "name": "Lowes", + "shop": "doityourself" }, - "name": "Парикмахерская", + "name": "Lowes", "icon": "shop", "geometry": [ "point", @@ -88536,12 +91873,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/hairdresser/Салон красоты": { + "shop/doityourself/Wickes": { "tags": { - "name": "Салон красоты", - "shop": "hairdresser" + "name": "Wickes", + "shop": "doityourself" }, - "name": "Салон красоты", + "name": "Wickes", "icon": "shop", "geometry": [ "point", @@ -88555,12 +91892,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/hardware/1000 мелочей": { + "shop/doityourself/Hagebau": { "tags": { - "name": "1000 мелочей", - "shop": "hardware" + "name": "Hagebau", + "shop": "doityourself" }, - "name": "1000 мелочей", + "name": "Hagebau", "icon": "shop", "geometry": [ "point", @@ -88574,6 +91911,3976 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, + "shop/doityourself/Max Bahr": { + "tags": { + "name": "Max Bahr", + "shop": "doityourself" + }, + "name": "Max Bahr", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Castorama": { + "tags": { + "name": "Castorama", + "shop": "doityourself" + }, + "name": "Castorama", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Rona": { + "tags": { + "name": "Rona", + "shop": "doityourself" + }, + "name": "Rona", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Home Depot": { + "tags": { + "name": "Home Depot", + "shop": "doityourself" + }, + "name": "Home Depot", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Toom Baumarkt": { + "tags": { + "name": "Toom Baumarkt", + "shop": "doityourself" + }, + "name": "Toom Baumarkt", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Homebase": { + "tags": { + "name": "Homebase", + "shop": "doityourself" + }, + "name": "Homebase", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Baumax": { + "tags": { + "name": "Baumax", + "shop": "doityourself" + }, + "name": "Baumax", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Lagerhaus": { + "tags": { + "name": "Lagerhaus", + "shop": "doityourself" + }, + "name": "Lagerhaus", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Bauhaus": { + "tags": { + "name": "Bauhaus", + "shop": "doityourself" + }, + "name": "Bauhaus", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Leroy Merlin": { + "tags": { + "name": "Leroy Merlin", + "shop": "doityourself" + }, + "name": "Leroy Merlin", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Hellweg": { + "tags": { + "name": "Hellweg", + "shop": "doityourself" + }, + "name": "Hellweg", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Brico": { + "tags": { + "name": "Brico", + "shop": "doityourself" + }, + "name": "Brico", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Bricomarché": { + "tags": { + "name": "Bricomarché", + "shop": "doityourself" + }, + "name": "Bricomarché", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Toom": { + "tags": { + "name": "Toom", + "shop": "doityourself" + }, + "name": "Toom", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Praktiker": { + "tags": { + "name": "Praktiker", + "shop": "doityourself" + }, + "name": "Praktiker", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Hagebaumarkt": { + "tags": { + "name": "Hagebaumarkt", + "shop": "doityourself" + }, + "name": "Hagebaumarkt", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Menards": { + "tags": { + "name": "Menards", + "shop": "doityourself" + }, + "name": "Menards", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Weldom": { + "tags": { + "name": "Weldom", + "shop": "doityourself" + }, + "name": "Weldom", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Bunnings Warehouse": { + "tags": { + "name": "Bunnings Warehouse", + "shop": "doityourself" + }, + "name": "Bunnings Warehouse", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Ace Hardware": { + "tags": { + "name": "Ace Hardware", + "shop": "doityourself" + }, + "name": "Ace Hardware", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Home Hardware": { + "tags": { + "name": "Home Hardware", + "shop": "doityourself" + }, + "name": "Home Hardware", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Хозтовары": { + "tags": { + "name": "Хозтовары", + "shop": "doityourself" + }, + "name": "Хозтовары", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Стройматериалы": { + "tags": { + "name": "Стройматериалы", + "shop": "doityourself" + }, + "name": "Стройматериалы", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Bricorama": { + "tags": { + "name": "Bricorama", + "shop": "doityourself" + }, + "name": "Bricorama", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/doityourself/Point P": { + "tags": { + "name": "Point P", + "shop": "doityourself" + }, + "name": "Point P", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/department_store/Target": { + "tags": { + "name": "Target", + "shop": "department_store" + }, + "name": "Target", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/department_store/Debenhams": { + "tags": { + "name": "Debenhams", + "shop": "department_store" + }, + "name": "Debenhams", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/department_store/Karstadt": { + "tags": { + "name": "Karstadt", + "shop": "department_store" + }, + "name": "Karstadt", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/department_store/Kmart": { + "tags": { + "name": "Kmart", + "shop": "department_store" + }, + "name": "Kmart", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/department_store/Woolworth": { + "tags": { + "name": "Woolworth", + "shop": "department_store" + }, + "name": "Woolworth", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/department_store/Универмаг": { + "tags": { + "name": "Универмаг", + "shop": "department_store" + }, + "name": "Универмаг", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/department_store/Sears": { + "tags": { + "name": "Sears", + "shop": "department_store" + }, + "name": "Sears", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/department_store/JCPenney": { + "tags": { + "name": "JCPenney", + "shop": "department_store" + }, + "name": "JCPenney", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/stationery/Staples": { + "tags": { + "name": "Staples", + "shop": "stationery" + }, + "name": "Staples", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/stationery/McPaper": { + "tags": { + "name": "McPaper", + "shop": "stationery" + }, + "name": "McPaper", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/stationery/Office Depot": { + "tags": { + "name": "Office Depot", + "shop": "stationery" + }, + "name": "Office Depot", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/stationery/Канцтовары": { + "tags": { + "name": "Канцтовары", + "shop": "stationery" + }, + "name": "Канцтовары", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Skoda": { + "tags": { + "name": "Skoda", + "shop": "car" + }, + "name": "Skoda", + "icon": "car", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/BMW": { + "tags": { + "name": "BMW", + "shop": "car" + }, + "name": "BMW", + "icon": "car", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Citroen": { + "tags": { + "name": "Citroen", + "shop": "car" + }, + "name": "Citroen", + "icon": "car", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Mercedes-Benz": { + "tags": { + "name": "Mercedes-Benz", + "shop": "car" + }, + "name": "Mercedes-Benz", + "icon": "car", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Volvo": { + "tags": { + "name": "Volvo", + "shop": "car" + }, + "name": "Volvo", + "icon": "car", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Ford": { + "tags": { + "name": "Ford", + "shop": "car" + }, + "name": "Ford", + "icon": "car", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Volkswagen": { + "tags": { + "name": "Volkswagen", + "shop": "car" + }, + "name": "Volkswagen", + "icon": "car", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Mazda": { + "tags": { + "name": "Mazda", + "shop": "car" + }, + "name": "Mazda", + "icon": "car", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Mitsubishi": { + "tags": { + "name": "Mitsubishi", + "shop": "car" + }, + "name": "Mitsubishi", + "icon": "car", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Fiat": { + "tags": { + "name": "Fiat", + "shop": "car" + }, + "name": "Fiat", + "icon": "car", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Opel": { + "tags": { + "name": "Opel", + "shop": "car" + }, + "name": "Opel", + "icon": "car", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Audi": { + "tags": { + "name": "Audi", + "shop": "car" + }, + "name": "Audi", + "icon": "car", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Toyota": { + "tags": { + "name": "Toyota", + "shop": "car" + }, + "name": "Toyota", + "icon": "car", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Nissan": { + "tags": { + "name": "Nissan", + "shop": "car" + }, + "name": "Nissan", + "icon": "car", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Suzuki": { + "tags": { + "name": "Suzuki", + "shop": "car" + }, + "name": "Suzuki", + "icon": "car", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Honda": { + "tags": { + "name": "Honda", + "shop": "car" + }, + "name": "Honda", + "icon": "car", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Hyundai": { + "tags": { + "name": "Hyundai", + "shop": "car" + }, + "name": "Hyundai", + "icon": "car", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Subaru": { + "tags": { + "name": "Subaru", + "shop": "car" + }, + "name": "Subaru", + "icon": "car", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Chevrolet": { + "tags": { + "name": "Chevrolet", + "shop": "car" + }, + "name": "Chevrolet", + "icon": "car", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "opening_hours" + ], + "suggestion": true + }, + "shop/car/Автомагазин": { + "tags": { + "name": "Автомагазин", + "shop": "car" + }, + "name": "Автомагазин", + "icon": "car", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Matalan": { + "tags": { + "name": "Matalan", + "shop": "clothes" + }, + "name": "Matalan", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/KiK": { + "tags": { + "name": "KiK", + "shop": "clothes" + }, + "name": "KiK", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Zeeman": { + "tags": { + "name": "Zeeman", + "shop": "clothes" + }, + "name": "Zeeman", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Takko": { + "tags": { + "name": "Takko", + "shop": "clothes" + }, + "name": "Takko", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Zara": { + "tags": { + "name": "Zara", + "shop": "clothes" + }, + "name": "Zara", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/NKD": { + "tags": { + "name": "NKD", + "shop": "clothes" + }, + "name": "NKD", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Winners": { + "tags": { + "name": "Winners", + "shop": "clothes" + }, + "name": "Winners", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Next": { + "tags": { + "name": "Next", + "shop": "clothes" + }, + "name": "Next", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Gap": { + "tags": { + "name": "Gap", + "shop": "clothes" + }, + "name": "Gap", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Adidas": { + "tags": { + "name": "Adidas", + "shop": "clothes" + }, + "name": "Adidas", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Pep": { + "tags": { + "name": "Pep", + "shop": "clothes" + }, + "name": "Pep", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Edgars": { + "tags": { + "name": "Edgars", + "shop": "clothes" + }, + "name": "Edgars", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Ackermans": { + "tags": { + "name": "Ackermans", + "shop": "clothes" + }, + "name": "Ackermans", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Truworths": { + "tags": { + "name": "Truworths", + "shop": "clothes" + }, + "name": "Truworths", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Ross": { + "tags": { + "name": "Ross", + "shop": "clothes" + }, + "name": "Ross", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Deichmann": { + "tags": { + "name": "Deichmann", + "shop": "clothes" + }, + "name": "Deichmann", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Lindex": { + "tags": { + "name": "Lindex", + "shop": "clothes" + }, + "name": "Lindex", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Pimkie": { + "tags": { + "name": "Pimkie", + "shop": "clothes" + }, + "name": "Pimkie", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Esprit": { + "tags": { + "name": "Esprit", + "shop": "clothes" + }, + "name": "Esprit", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Primark": { + "tags": { + "name": "Primark", + "shop": "clothes" + }, + "name": "Primark", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Bonita": { + "tags": { + "name": "Bonita", + "shop": "clothes" + }, + "name": "Bonita", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Mexx": { + "tags": { + "name": "Mexx", + "shop": "clothes" + }, + "name": "Mexx", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Mango": { + "tags": { + "name": "Mango", + "shop": "clothes" + }, + "name": "Mango", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Benetton": { + "tags": { + "name": "Benetton", + "shop": "clothes" + }, + "name": "Benetton", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/AWG": { + "tags": { + "name": "AWG", + "shop": "clothes" + }, + "name": "AWG", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Orsay": { + "tags": { + "name": "Orsay", + "shop": "clothes" + }, + "name": "Orsay", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Lacoste": { + "tags": { + "name": "Lacoste", + "shop": "clothes" + }, + "name": "Lacoste", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Etam": { + "tags": { + "name": "Etam", + "shop": "clothes" + }, + "name": "Etam", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Kiabi": { + "tags": { + "name": "Kiabi", + "shop": "clothes" + }, + "name": "Kiabi", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Intimissimi": { + "tags": { + "name": "Intimissimi", + "shop": "clothes" + }, + "name": "Intimissimi", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Jules": { + "tags": { + "name": "Jules", + "shop": "clothes" + }, + "name": "Jules", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/AOKI": { + "tags": { + "name": "AOKI", + "shop": "clothes" + }, + "name": "AOKI", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Calzedonia": { + "tags": { + "name": "Calzedonia", + "shop": "clothes" + }, + "name": "Calzedonia", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/洋服の青山": { + "tags": { + "name": "洋服の青山", + "shop": "clothes" + }, + "name": "洋服の青山", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Celio": { + "tags": { + "name": "Celio", + "shop": "clothes" + }, + "name": "Celio", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Promod": { + "tags": { + "name": "Promod", + "shop": "clothes" + }, + "name": "Promod", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/ユニクロ": { + "tags": { + "name": "ユニクロ", + "shop": "clothes" + }, + "name": "ユニクロ", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Одежда": { + "tags": { + "name": "Одежда", + "shop": "clothes" + }, + "name": "Одежда", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/Peacocks": { + "tags": { + "name": "Peacocks", + "shop": "clothes" + }, + "name": "Peacocks", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/clothes/しまむら": { + "tags": { + "name": "しまむら", + "shop": "clothes" + }, + "name": "しまむら", + "icon": "clothing-store", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/books/Bruna": { + "tags": { + "name": "Bruna", + "shop": "books" + }, + "name": "Bruna", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/books/Waterstones": { + "tags": { + "name": "Waterstones", + "shop": "books" + }, + "name": "Waterstones", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/books/Libro": { + "tags": { + "name": "Libro", + "shop": "books" + }, + "name": "Libro", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/books/Barnes & Noble": { + "tags": { + "name": "Barnes & Noble", + "shop": "books" + }, + "name": "Barnes & Noble", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/books/Weltbild": { + "tags": { + "name": "Weltbild", + "shop": "books" + }, + "name": "Weltbild", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/books/Thalia": { + "tags": { + "name": "Thalia", + "shop": "books" + }, + "name": "Thalia", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/books/Книги": { + "tags": { + "name": "Книги", + "shop": "books" + }, + "name": "Книги", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/alcohol/Alko": { + "tags": { + "name": "Alko", + "shop": "alcohol" + }, + "name": "Alko", + "icon": "alcohol-shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/alcohol/The Beer Store": { + "tags": { + "name": "The Beer Store", + "shop": "alcohol" + }, + "name": "The Beer Store", + "icon": "alcohol-shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/alcohol/Systembolaget": { + "tags": { + "name": "Systembolaget", + "shop": "alcohol" + }, + "name": "Systembolaget", + "icon": "alcohol-shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/alcohol/LCBO": { + "tags": { + "name": "LCBO", + "shop": "alcohol" + }, + "name": "LCBO", + "icon": "alcohol-shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/alcohol/Ароматный мир": { + "tags": { + "name": "Ароматный мир", + "shop": "alcohol" + }, + "name": "Ароматный мир", + "icon": "alcohol-shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/alcohol/Bargain Booze": { + "tags": { + "name": "Bargain Booze", + "shop": "alcohol" + }, + "name": "Bargain Booze", + "icon": "alcohol-shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/alcohol/Nicolas": { + "tags": { + "name": "Nicolas", + "shop": "alcohol" + }, + "name": "Nicolas", + "icon": "alcohol-shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/alcohol/Botilleria": { + "tags": { + "name": "Botilleria", + "shop": "alcohol" + }, + "name": "Botilleria", + "icon": "alcohol-shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/alcohol/SAQ": { + "tags": { + "name": "SAQ", + "shop": "alcohol" + }, + "name": "SAQ", + "icon": "alcohol-shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/alcohol/Gall & Gall": { + "tags": { + "name": "Gall & Gall", + "shop": "alcohol" + }, + "name": "Gall & Gall", + "icon": "alcohol-shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/alcohol/BWS": { + "tags": { + "name": "BWS", + "shop": "alcohol" + }, + "name": "BWS", + "icon": "alcohol-shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/alcohol/Живое пиво": { + "tags": { + "name": "Живое пиво", + "shop": "alcohol" + }, + "name": "Живое пиво", + "icon": "alcohol-shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Kamps": { + "tags": { + "name": "Kamps", + "shop": "bakery" + }, + "name": "Kamps", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Anker": { + "tags": { + "name": "Anker", + "shop": "bakery" + }, + "name": "Anker", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Schäfer": { + "tags": { + "name": "Schäfer", + "shop": "bakery" + }, + "name": "Schäfer", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Hofpfisterei": { + "tags": { + "name": "Hofpfisterei", + "shop": "bakery" + }, + "name": "Hofpfisterei", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Greggs": { + "tags": { + "name": "Greggs", + "shop": "bakery" + }, + "name": "Greggs", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Oebel": { + "tags": { + "name": "Oebel", + "shop": "bakery" + }, + "name": "Oebel", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Boulangerie": { + "tags": { + "name": "Boulangerie", + "shop": "bakery" + }, + "name": "Boulangerie", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Stadtbäckerei": { + "tags": { + "name": "Stadtbäckerei", + "shop": "bakery" + }, + "name": "Stadtbäckerei", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Steinecke": { + "tags": { + "name": "Steinecke", + "shop": "bakery" + }, + "name": "Steinecke", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Ihle": { + "tags": { + "name": "Ihle", + "shop": "bakery" + }, + "name": "Ihle", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Goldilocks": { + "tags": { + "name": "Goldilocks", + "shop": "bakery" + }, + "name": "Goldilocks", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Dat Backhus": { + "tags": { + "name": "Dat Backhus", + "shop": "bakery" + }, + "name": "Dat Backhus", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/K&U": { + "tags": { + "name": "K&U", + "shop": "bakery" + }, + "name": "K&U", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Der Beck": { + "tags": { + "name": "Der Beck", + "shop": "bakery" + }, + "name": "Der Beck", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Thürmann": { + "tags": { + "name": "Thürmann", + "shop": "bakery" + }, + "name": "Thürmann", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Backwerk": { + "tags": { + "name": "Backwerk", + "shop": "bakery" + }, + "name": "Backwerk", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Bäcker": { + "tags": { + "name": "Bäcker", + "shop": "bakery" + }, + "name": "Bäcker", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Panaderia": { + "tags": { + "name": "Panaderia", + "shop": "bakery" + }, + "name": "Panaderia", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Goeken backen": { + "tags": { + "name": "Goeken backen", + "shop": "bakery" + }, + "name": "Goeken backen", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Boulangerie Patisserie": { + "tags": { + "name": "Boulangerie Patisserie", + "shop": "bakery" + }, + "name": "Boulangerie Patisserie", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Paul": { + "tags": { + "name": "Paul", + "shop": "bakery" + }, + "name": "Paul", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Хлеб": { + "tags": { + "name": "Хлеб", + "shop": "bakery" + }, + "name": "Хлеб", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/bakery/Piekarnia": { + "tags": { + "name": "Piekarnia", + "shop": "bakery" + }, + "name": "Piekarnia", + "icon": "bakery", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/sports/Sports Direct": { + "tags": { + "name": "Sports Direct", + "shop": "sports" + }, + "name": "Sports Direct", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/sports/Decathlon": { + "tags": { + "name": "Decathlon", + "shop": "sports" + }, + "name": "Decathlon", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/sports/Intersport": { + "tags": { + "name": "Intersport", + "shop": "sports" + }, + "name": "Intersport", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/sports/Sports Authority": { + "tags": { + "name": "Sports Authority", + "shop": "sports" + }, + "name": "Sports Authority", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/sports/Спортмастер": { + "tags": { + "name": "Спортмастер", + "shop": "sports" + }, + "name": "Спортмастер", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/sports/Sport 2000": { + "tags": { + "name": "Sport 2000", + "shop": "sports" + }, + "name": "Sport 2000", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/variety_store/Tedi": { + "tags": { + "name": "Tedi", + "shop": "variety_store" + }, + "name": "Tedi", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/variety_store/Dollarama": { + "tags": { + "name": "Dollarama", + "shop": "variety_store" + }, + "name": "Dollarama", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/pet/PetSmart": { + "tags": { + "name": "PetSmart", + "shop": "pet" + }, + "name": "PetSmart", + "icon": "dog-park", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/pet/Petco": { + "tags": { + "name": "Petco", + "shop": "pet" + }, + "name": "Petco", + "icon": "dog-park", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/pet/Зоомагазин": { + "tags": { + "name": "Зоомагазин", + "shop": "pet" + }, + "name": "Зоомагазин", + "icon": "dog-park", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/shoes/Reno": { + "tags": { + "name": "Reno", + "shop": "shoes" + }, + "name": "Reno", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/shoes/Ecco": { + "tags": { + "name": "Ecco", + "shop": "shoes" + }, + "name": "Ecco", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/shoes/Clarks": { + "tags": { + "name": "Clarks", + "shop": "shoes" + }, + "name": "Clarks", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/shoes/Brantano": { + "tags": { + "name": "Brantano", + "shop": "shoes" + }, + "name": "Brantano", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/shoes/Salamander": { + "tags": { + "name": "Salamander", + "shop": "shoes" + }, + "name": "Salamander", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/shoes/Обувь": { + "tags": { + "name": "Обувь", + "shop": "shoes" + }, + "name": "Обувь", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/shoes/Famous Footwear": { + "tags": { + "name": "Famous Footwear", + "shop": "shoes" + }, + "name": "Famous Footwear", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/shoes/Quick Schuh": { + "tags": { + "name": "Quick Schuh", + "shop": "shoes" + }, + "name": "Quick Schuh", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/shoes/Foot Locker": { + "tags": { + "name": "Foot Locker", + "shop": "shoes" + }, + "name": "Foot Locker", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/shoes/Bata": { + "tags": { + "name": "Bata", + "shop": "shoes" + }, + "name": "Bata", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/toys/Детский мир": { + "tags": { + "name": "Детский мир", + "shop": "toys" + }, + "name": "Детский мир", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/toys/Intertoys": { + "tags": { + "name": "Intertoys", + "shop": "toys" + }, + "name": "Intertoys", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/toys/Игрушки": { + "tags": { + "name": "Игрушки", + "shop": "toys" + }, + "name": "Игрушки", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "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", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, "shop/jewelry/Bijou Brigitte": { "tags": { "name": "Bijou Brigitte", @@ -88631,462 +95938,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/mobile_phone/AT&T": { - "tags": { - "name": "AT&T", - "shop": "mobile_phone" - }, - "name": "AT&T", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Bell": { - "tags": { - "name": "Bell", - "shop": "mobile_phone" - }, - "name": "Bell", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Bitė": { - "tags": { - "name": "Bitė", - "shop": "mobile_phone" - }, - "name": "Bitė", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Carphone Warehouse": { - "tags": { - "name": "Carphone Warehouse", - "shop": "mobile_phone" - }, - "name": "Carphone Warehouse", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Movistar": { - "tags": { - "name": "Movistar", - "shop": "mobile_phone" - }, - "name": "Movistar", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/O2": { - "tags": { - "name": "O2", - "shop": "mobile_phone" - }, - "name": "O2", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Orange": { - "tags": { - "name": "Orange", - "shop": "mobile_phone" - }, - "name": "Orange", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/SFR": { - "tags": { - "name": "SFR", - "shop": "mobile_phone" - }, - "name": "SFR", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Sprint": { - "tags": { - "name": "Sprint", - "shop": "mobile_phone" - }, - "name": "Sprint", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/T-Mobile": { - "tags": { - "name": "T-Mobile", - "shop": "mobile_phone" - }, - "name": "T-Mobile", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "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": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Verizon Wireless": { - "tags": { - "name": "Verizon Wireless", - "shop": "mobile_phone" - }, - "name": "Verizon Wireless", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Vodafone": { - "tags": { - "name": "Vodafone", - "shop": "mobile_phone" - }, - "name": "Vodafone", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/au": { - "tags": { - "name": "au", - "shop": "mobile_phone" - }, - "name": "au", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Билайн": { - "tags": { - "name": "Билайн", - "shop": "mobile_phone" - }, - "name": "Билайн", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Евросеть": { - "tags": { - "name": "Евросеть", - "shop": "mobile_phone" - }, - "name": "Евросеть", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/МТС": { - "tags": { - "name": "МТС", - "shop": "mobile_phone" - }, - "name": "МТС", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Мегафон": { - "tags": { - "name": "Мегафон", - "shop": "mobile_phone" - }, - "name": "Мегафон", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/Связной": { - "tags": { - "name": "Связной", - "shop": "mobile_phone" - }, - "name": "Связной", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/ソフトバンクショップ (SoftBank shop)": { - "tags": { - "name": "ソフトバンクショップ (SoftBank shop)", - "shop": "mobile_phone" - }, - "name": "ソフトバンクショップ (SoftBank shop)", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/mobile_phone/ドコモショップ (docomo shop)": { - "tags": { - "name": "ドコモショップ (docomo shop)", - "shop": "mobile_phone" - }, - "name": "ドコモショップ (docomo shop)", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/motorcycle/Yamaha": { - "tags": { - "name": "Yamaha", - "shop": "motorcycle" - }, - "name": "Yamaha", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/optician/Alain Afflelou": { - "tags": { - "name": "Alain Afflelou", - "shop": "optician" - }, - "name": "Alain Afflelou", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/optician/Apollo Optik": { - "tags": { - "name": "Apollo Optik", - "shop": "optician" - }, - "name": "Apollo Optik", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, "shop/optician/Fielmann": { "tags": { "name": "Fielmann", @@ -89106,50 +95957,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/optician/Krys": { + "shop/optician/Apollo Optik": { "tags": { - "name": "Krys", + "name": "Apollo Optik", "shop": "optician" }, - "name": "Krys", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/optician/Optic 2000": { - "tags": { - "name": "Optic 2000", - "shop": "optician" - }, - "name": "Optic 2000", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/optician/Specsavers": { - "tags": { - "name": "Specsavers", - "shop": "optician" - }, - "name": "Specsavers", + "name": "Apollo Optik", "icon": "shop", "geometry": [ "point", @@ -89201,126 +96014,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/pet/Das Futterhaus": { + "shop/optician/Optic 2000": { "tags": { - "name": "Das Futterhaus", - "shop": "pet" + "name": "Optic 2000", + "shop": "optician" }, - "name": "Das Futterhaus", - "icon": "dog-park", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/pet/Fressnapf": { - "tags": { - "name": "Fressnapf", - "shop": "pet" - }, - "name": "Fressnapf", - "icon": "dog-park", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/pet/PetSmart": { - "tags": { - "name": "PetSmart", - "shop": "pet" - }, - "name": "PetSmart", - "icon": "dog-park", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/pet/Petco": { - "tags": { - "name": "Petco", - "shop": "pet" - }, - "name": "Petco", - "icon": "dog-park", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "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", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/pet/Зоомагазин": { - "tags": { - "name": "Зоомагазин", - "shop": "pet" - }, - "name": "Зоомагазин", - "icon": "dog-park", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/shoes/Bata": { - "tags": { - "name": "Bata", - "shop": "shoes" - }, - "name": "Bata", + "name": "Optic 2000", "icon": "shop", "geometry": [ "point", @@ -89334,12 +96033,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/shoes/Brantano": { + "shop/optician/Alain Afflelou": { "tags": { - "name": "Brantano", - "shop": "shoes" + "name": "Alain Afflelou", + "shop": "optician" }, - "name": "Brantano", + "name": "Alain Afflelou", "icon": "shop", "geometry": [ "point", @@ -89353,12 +96052,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/shoes/Clarks": { + "shop/optician/Specsavers": { "tags": { - "name": "Clarks", - "shop": "shoes" + "name": "Specsavers", + "shop": "optician" }, - "name": "Clarks", + "name": "Specsavers", "icon": "shop", "geometry": [ "point", @@ -89372,12 +96071,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/shoes/Ecco": { + "shop/optician/Krys": { "tags": { - "name": "Ecco", - "shop": "shoes" + "name": "Krys", + "shop": "optician" }, - "name": "Ecco", + "name": "Krys", "icon": "shop", "geometry": [ "point", @@ -89391,3964 +96090,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "suggestion": true }, - "shop/shoes/Foot Locker": { + "shop/optician/Atol": { "tags": { - "name": "Foot Locker", - "shop": "shoes" + "name": "Atol", + "shop": "optician" }, - "name": "Foot Locker", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "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", - "vertex", - "area" - ], - "fields": [ - "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", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/shoes/Quick Schuh": { - "tags": { - "name": "Quick Schuh", - "shop": "shoes" - }, - "name": "Quick Schuh", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/shoes/Reno": { - "tags": { - "name": "Reno", - "shop": "shoes" - }, - "name": "Reno", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/shoes/Salamander": { - "tags": { - "name": "Salamander", - "shop": "shoes" - }, - "name": "Salamander", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/shoes/Обувь": { - "tags": { - "name": "Обувь", - "shop": "shoes" - }, - "name": "Обувь", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/sports/Decathlon": { - "tags": { - "name": "Decathlon", - "shop": "sports" - }, - "name": "Decathlon", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "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", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/sports/Intersport": { - "tags": { - "name": "Intersport", - "shop": "sports" - }, - "name": "Intersport", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/sports/Sport 2000": { - "tags": { - "name": "Sport 2000", - "shop": "sports" - }, - "name": "Sport 2000", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/sports/Sports Authority": { - "tags": { - "name": "Sports Authority", - "shop": "sports" - }, - "name": "Sports Authority", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/sports/Спортмастер": { - "tags": { - "name": "Спортмастер", - "shop": "sports" - }, - "name": "Спортмастер", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/stationery/McPaper": { - "tags": { - "name": "McPaper", - "shop": "stationery" - }, - "name": "McPaper", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/stationery/Office Depot": { - "tags": { - "name": "Office Depot", - "shop": "stationery" - }, - "name": "Office Depot", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/stationery/Staples": { - "tags": { - "name": "Staples", - "shop": "stationery" - }, - "name": "Staples", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/stationery/Канцтовары": { - "tags": { - "name": "Канцтовары", - "shop": "stationery" - }, - "name": "Канцтовары", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/supermarket/AD Delhaize": { - "tags": { - "name": "AD Delhaize", - "shop": "supermarket" - }, - "name": "AD Delhaize", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/ADEG": { - "tags": { - "name": "ADEG", - "shop": "supermarket" - }, - "name": "ADEG", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/ALDI": { - "tags": { - "name": "ALDI", - "shop": "supermarket" - }, - "name": "ALDI", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Aldi Süd": { - "tags": { - "name": "Aldi Süd", - "shop": "supermarket" - }, - "name": "Aldi Süd", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/ASDA": { - "tags": { - "name": "ASDA", - "shop": "supermarket" - }, - "name": "ASDA", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Albert": { - "tags": { - "name": "Albert", - "shop": "supermarket" - }, - "name": "Albert", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Albert Heijn": { - "tags": { - "name": "Albert Heijn", - "shop": "supermarket" - }, - "name": "Albert Heijn", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Albertsons": { - "tags": { - "name": "Albertsons", - "shop": "supermarket" - }, - "name": "Albertsons", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Aldi Nord": { - "tags": { - "name": "Aldi Nord", - "shop": "supermarket" - }, - "name": "Aldi Nord", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Alimerka": { - "tags": { - "name": "Alimerka", - "shop": "supermarket" - }, - "name": "Alimerka", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Asda": { - "tags": { - "name": "Asda", - "shop": "supermarket" - }, - "name": "Asda", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Billa": { - "tags": { - "name": "Billa", - "shop": "supermarket" - }, - "name": "Billa", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Bodega Aurrera": { - "tags": { - "name": "Bodega Aurrera", - "shop": "supermarket" - }, - "name": "Bodega Aurrera", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Budgens": { - "tags": { - "name": "Budgens", - "shop": "supermarket" - }, - "name": "Budgens", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/C1000": { - "tags": { - "name": "C1000", - "shop": "supermarket" - }, - "name": "C1000", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Caprabo": { - "tags": { - "name": "Caprabo", - "shop": "supermarket" - }, - "name": "Caprabo", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Carrefour Contact": { - "tags": { - "name": "Carrefour Contact", - "shop": "supermarket" - }, - "name": "Carrefour Contact", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Carrefour Market": { - "tags": { - "name": "Carrefour Market", - "shop": "supermarket" - }, - "name": "Carrefour Market", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Champion": { - "tags": { - "name": "Champion", - "shop": "supermarket" - }, - "name": "Champion", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Checkers": { - "tags": { - "name": "Checkers", - "shop": "supermarket" - }, - "name": "Checkers", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Coles": { - "tags": { - "name": "Coles", - "shop": "supermarket" - }, - "name": "Coles", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Colruyt": { - "tags": { - "name": "Colruyt", - "shop": "supermarket" - }, - "name": "Colruyt", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Combi": { - "tags": { - "name": "Combi", - "shop": "supermarket" - }, - "name": "Combi", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Conad": { - "tags": { - "name": "Conad", - "shop": "supermarket" - }, - "name": "Conad", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Condis": { - "tags": { - "name": "Condis", - "shop": "supermarket" - }, - "name": "Condis", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Consum": { - "tags": { - "name": "Consum", - "shop": "supermarket" - }, - "name": "Consum", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Continente": { - "tags": { - "name": "Continente", - "shop": "supermarket" - }, - "name": "Continente", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Coop Konsum": { - "tags": { - "name": "Coop Konsum", - "shop": "supermarket" - }, - "name": "Coop Konsum", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Costco": { - "tags": { - "name": "Costco", - "shop": "supermarket" - }, - "name": "Costco", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Countdown": { - "tags": { - "name": "Countdown", - "shop": "supermarket" - }, - "name": "Countdown", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Dia": { - "tags": { - "name": "Dia", - "shop": "supermarket" - }, - "name": "Dia", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Delhaize": { - "tags": { - "name": "Delhaize", - "shop": "supermarket" - }, - "name": "Delhaize", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Delikatesy Centrum": { - "tags": { - "name": "Delikatesy Centrum", - "shop": "supermarket" - }, - "name": "Delikatesy Centrum", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Denner": { - "tags": { - "name": "Denner", - "shop": "supermarket" - }, - "name": "Denner", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Despar": { - "tags": { - "name": "Despar", - "shop": "supermarket" - }, - "name": "Despar", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Diska": { - "tags": { - "name": "Diska", - "shop": "supermarket" - }, - "name": "Diska", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Dunnes Stores": { - "tags": { - "name": "Dunnes Stores", - "shop": "supermarket" - }, - "name": "Dunnes Stores", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/E-Center": { - "tags": { - "name": "E-Center", - "shop": "supermarket" - }, - "name": "E-Center", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/EDEKA": { - "tags": { - "name": "EDEKA", - "shop": "supermarket" - }, - "name": "EDEKA", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Edeka": { - "tags": { - "name": "Edeka", - "shop": "supermarket" - }, - "name": "Edeka", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/El Árbol": { - "tags": { - "name": "El Árbol", - "shop": "supermarket" - }, - "name": "El Árbol", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Eroski": { - "tags": { - "name": "Eroski", - "shop": "supermarket" - }, - "name": "Eroski", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Esselunga": { - "tags": { - "name": "Esselunga", - "shop": "supermarket" - }, - "name": "Esselunga", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Eurospar": { - "tags": { - "name": "Eurospar", - "shop": "supermarket" - }, - "name": "Eurospar", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Eurospin": { - "tags": { - "name": "Eurospin", - "shop": "supermarket" - }, - "name": "Eurospin", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Extra": { - "tags": { - "name": "Extra", - "shop": "supermarket" - }, - "name": "Extra", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Fakta": { - "tags": { - "name": "Fakta", - "shop": "supermarket" - }, - "name": "Fakta", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Famiglia Cooperativa": { - "tags": { - "name": "Famiglia Cooperativa", - "shop": "supermarket" - }, - "name": "Famiglia Cooperativa", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Famila": { - "tags": { - "name": "Famila", - "shop": "supermarket" - }, - "name": "Famila", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Farmfoods": { - "tags": { - "name": "Farmfoods", - "shop": "supermarket" - }, - "name": "Farmfoods", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Feneberg": { - "tags": { - "name": "Feneberg", - "shop": "supermarket" - }, - "name": "Feneberg", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Food Basics": { - "tags": { - "name": "Food Basics", - "shop": "supermarket" - }, - "name": "Food Basics", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Food Lion": { - "tags": { - "name": "Food Lion", - "shop": "supermarket" - }, - "name": "Food Lion", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Foodland": { - "tags": { - "name": "Foodland", - "shop": "supermarket" - }, - "name": "Foodland", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Foodworks": { - "tags": { - "name": "Foodworks", - "shop": "supermarket" - }, - "name": "Foodworks", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Fred Meyer": { - "tags": { - "name": "Fred Meyer", - "shop": "supermarket" - }, - "name": "Fred Meyer", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Føtex": { - "tags": { - "name": "Føtex", - "shop": "supermarket" - }, - "name": "Føtex", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Game": { - "tags": { - "name": "Game", - "shop": "supermarket" - }, - "name": "Game", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Giant": { - "tags": { - "name": "Giant", - "shop": "supermarket" - }, - "name": "Giant", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Giant Eagle": { - "tags": { - "name": "Giant Eagle", - "shop": "supermarket" - }, - "name": "Giant Eagle", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Géant Casino": { - "tags": { - "name": "Géant Casino", - "shop": "supermarket" - }, - "name": "Géant Casino", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/HEB": { - "tags": { - "name": "HEB", - "shop": "supermarket" - }, - "name": "HEB", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/HIT": { - "tags": { - "name": "HIT", - "shop": "supermarket" - }, - "name": "HIT", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Hannaford": { - "tags": { - "name": "Hannaford", - "shop": "supermarket" - }, - "name": "Hannaford", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Harris Teeter": { - "tags": { - "name": "Harris Teeter", - "shop": "supermarket" - }, - "name": "Harris Teeter", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Hemköp": { - "tags": { - "name": "Hemköp", - "shop": "supermarket" - }, - "name": "Hemköp", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Hofer": { - "tags": { - "name": "Hofer", - "shop": "supermarket" - }, - "name": "Hofer", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Hoogvliet": { - "tags": { - "name": "Hoogvliet", - "shop": "supermarket" - }, - "name": "Hoogvliet", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Hy-Vee": { - "tags": { - "name": "Hy-Vee", - "shop": "supermarket" - }, - "name": "Hy-Vee", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/ICA": { - "tags": { - "name": "ICA", - "shop": "supermarket" - }, - "name": "ICA", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/IGA": { - "tags": { - "name": "IGA", - "shop": "supermarket" - }, - "name": "IGA", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Iceland": { - "tags": { - "name": "Iceland", - "shop": "supermarket" - }, - "name": "Iceland", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Intermarche": { - "tags": { - "name": "Intermarche", - "shop": "supermarket" - }, - "name": "Intermarche", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Interspar": { - "tags": { - "name": "Interspar", - "shop": "supermarket" - }, - "name": "Interspar", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Irma": { - "tags": { - "name": "Irma", - "shop": "supermarket" - }, - "name": "Irma", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Jumbo": { - "tags": { - "name": "Jumbo", - "shop": "supermarket" - }, - "name": "Jumbo", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/K+K": { - "tags": { - "name": "K+K", - "shop": "supermarket" - }, - "name": "K+K", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Kaiser's": { - "tags": { - "name": "Kaiser's", - "shop": "supermarket" - }, - "name": "Kaiser's", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Kaufland": { - "tags": { - "name": "Kaufland", - "shop": "supermarket" - }, - "name": "Kaufland", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Kaufpark": { - "tags": { - "name": "Kaufpark", - "shop": "supermarket" - }, - "name": "Kaufpark", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/King Soopers": { - "tags": { - "name": "King Soopers", - "shop": "supermarket" - }, - "name": "King Soopers", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Kiwi": { - "tags": { - "name": "Kiwi", - "shop": "supermarket" - }, - "name": "Kiwi", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Konsum": { - "tags": { - "name": "Konsum", - "shop": "supermarket" - }, - "name": "Konsum", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Kroger": { - "tags": { - "name": "Kroger", - "shop": "supermarket" - }, - "name": "Kroger", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Kvickly": { - "tags": { - "name": "Kvickly", - "shop": "supermarket" - }, - "name": "Kvickly", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/LIDL": { - "tags": { - "name": "LIDL", - "shop": "supermarket" - }, - "name": "LIDL", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Leader Price": { - "tags": { - "name": "Leader Price", - "shop": "supermarket" - }, - "name": "Leader Price", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Leclerc": { - "tags": { - "name": "Leclerc", - "shop": "supermarket" - }, - "name": "Leclerc", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Lider": { - "tags": { - "name": "Lider", - "shop": "supermarket" - }, - "name": "Lider", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Lidl": { - "tags": { - "name": "Lidl", - "shop": "supermarket" - }, - "name": "Lidl", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/M-Preis": { - "tags": { - "name": "M-Preis", - "shop": "supermarket" - }, - "name": "M-Preis", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/MPreis": { - "tags": { - "name": "MPreis", - "shop": "supermarket" - }, - "name": "MPreis", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Makro": { - "tags": { - "name": "Makro", - "shop": "supermarket" - }, - "name": "Makro", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Markant": { - "tags": { - "name": "Markant", - "shop": "supermarket" - }, - "name": "Markant", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Marktkauf": { - "tags": { - "name": "Marktkauf", - "shop": "supermarket" - }, - "name": "Marktkauf", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Match": { - "tags": { - "name": "Match", - "shop": "supermarket" - }, - "name": "Match", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Maxi": { - "tags": { - "name": "Maxi", - "shop": "supermarket" - }, - "name": "Maxi", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Maxima": { - "tags": { - "name": "Maxima", - "shop": "supermarket" - }, - "name": "Maxima", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Maxima X": { - "tags": { - "name": "Maxima X", - "shop": "supermarket" - }, - "name": "Maxima X", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Meijer": { - "tags": { - "name": "Meijer", - "shop": "supermarket" - }, - "name": "Meijer", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Mercadona": { - "tags": { - "name": "Mercadona", - "shop": "supermarket" - }, - "name": "Mercadona", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Merkur": { - "tags": { - "name": "Merkur", - "shop": "supermarket" - }, - "name": "Merkur", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Metro": { - "tags": { - "name": "Metro", - "shop": "supermarket" - }, - "name": "Metro", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Migros": { - "tags": { - "name": "Migros", - "shop": "supermarket" - }, - "name": "Migros", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Minipreço": { - "tags": { - "name": "Minipreço", - "shop": "supermarket" - }, - "name": "Minipreço", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Monoprix": { - "tags": { - "name": "Monoprix", - "shop": "supermarket" - }, - "name": "Monoprix", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Netto": { - "tags": { - "name": "Netto", - "shop": "supermarket" - }, - "name": "Netto", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/NORMA": { - "tags": { - "name": "NORMA", - "shop": "supermarket" - }, - "name": "NORMA", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/NP": { - "tags": { - "name": "NP", - "shop": "supermarket" - }, - "name": "NP", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Nah & Frisch": { - "tags": { - "name": "Nah & Frisch", - "shop": "supermarket" - }, - "name": "Nah & Frisch", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Nahkauf": { - "tags": { - "name": "Nahkauf", - "shop": "supermarket" - }, - "name": "Nahkauf", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Neukauf": { - "tags": { - "name": "Neukauf", - "shop": "supermarket" - }, - "name": "Neukauf", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/New World": { - "tags": { - "name": "New World", - "shop": "supermarket" - }, - "name": "New World", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/No Frills": { - "tags": { - "name": "No Frills", - "shop": "supermarket" - }, - "name": "No Frills", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Norma": { - "tags": { - "name": "Norma", - "shop": "supermarket" - }, - "name": "Norma", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/PENNY": { - "tags": { - "name": "PENNY", - "shop": "supermarket" - }, - "name": "PENNY", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Pam": { - "tags": { - "name": "Pam", - "shop": "supermarket" - }, - "name": "Pam", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Penny": { - "tags": { - "name": "Penny", - "shop": "supermarket" - }, - "name": "Penny", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Penny Market": { - "tags": { - "name": "Penny Market", - "shop": "supermarket" - }, - "name": "Penny Market", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Penny Markt": { - "tags": { - "name": "Penny Markt", - "shop": "supermarket" - }, - "name": "Penny Markt", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Pick n Pay": { - "tags": { - "name": "Pick n Pay", - "shop": "supermarket" - }, - "name": "Pick n Pay", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Piggly Wiggly": { - "tags": { - "name": "Piggly Wiggly", - "shop": "supermarket" - }, - "name": "Piggly Wiggly", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Pingo Doce": { - "tags": { - "name": "Pingo Doce", - "shop": "supermarket" - }, - "name": "Pingo Doce", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Piotr i Paweł": { - "tags": { - "name": "Piotr i Paweł", - "shop": "supermarket" - }, - "name": "Piotr i Paweł", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Plodine": { - "tags": { - "name": "Plodine", - "shop": "supermarket" - }, - "name": "Plodine", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Plus": { - "tags": { - "name": "Plus", - "shop": "supermarket" - }, - "name": "Plus", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Polo Market": { - "tags": { - "name": "Polo Market", - "shop": "supermarket" - }, - "name": "Polo Market", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Price Chopper": { - "tags": { - "name": "Price Chopper", - "shop": "supermarket" - }, - "name": "Price Chopper", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Profi": { - "tags": { - "name": "Profi", - "shop": "supermarket" - }, - "name": "Profi", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Publix": { - "tags": { - "name": "Publix", - "shop": "supermarket" - }, - "name": "Publix", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/REWE": { - "tags": { - "name": "REWE", - "shop": "supermarket" - }, - "name": "REWE", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Real": { - "tags": { - "name": "Real", - "shop": "supermarket" - }, - "name": "Real", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Reliance Fresh": { - "tags": { - "name": "Reliance Fresh", - "shop": "supermarket" - }, - "name": "Reliance Fresh", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Rema 1000": { - "tags": { - "name": "Rema 1000", - "shop": "supermarket" - }, - "name": "Rema 1000", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Rewe": { - "tags": { - "name": "Rewe", - "shop": "supermarket" - }, - "name": "Rewe", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Rimi": { - "tags": { - "name": "Rimi", - "shop": "supermarket" - }, - "name": "Rimi", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/S-Market": { - "tags": { - "name": "S-Market", - "shop": "supermarket" - }, - "name": "S-Market", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Safeway": { - "tags": { - "name": "Safeway", - "shop": "supermarket" - }, - "name": "Safeway", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Sam's Club": { - "tags": { - "name": "Sam's Club", - "shop": "supermarket" - }, - "name": "Sam's Club", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Santa Isabel": { - "tags": { - "name": "Santa Isabel", - "shop": "supermarket" - }, - "name": "Santa Isabel", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Shopi": { - "tags": { - "name": "Shopi", - "shop": "supermarket" - }, - "name": "Shopi", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Shoprite": { - "tags": { - "name": "Shoprite", - "shop": "supermarket" - }, - "name": "Shoprite", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Simply Market": { - "tags": { - "name": "Simply Market", - "shop": "supermarket" - }, - "name": "Simply Market", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Sobeys": { - "tags": { - "name": "Sobeys", - "shop": "supermarket" - }, - "name": "Sobeys", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Soriana": { - "tags": { - "name": "Soriana", - "shop": "supermarket" - }, - "name": "Soriana", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Stokrotka": { - "tags": { - "name": "Stokrotka", - "shop": "supermarket" - }, - "name": "Stokrotka", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Stop & Shop": { - "tags": { - "name": "Stop & Shop", - "shop": "supermarket" - }, - "name": "Stop & Shop", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Super Brugsen": { - "tags": { - "name": "Super Brugsen", - "shop": "supermarket" - }, - "name": "Super Brugsen", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/SuperBrugsen": { - "tags": { - "name": "SuperBrugsen", - "shop": "supermarket" - }, - "name": "SuperBrugsen", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/tegut": { - "tags": { - "name": "tegut", - "shop": "supermarket" - }, - "name": "tegut", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Tengelmann": { - "tags": { - "name": "Tengelmann", - "shop": "supermarket" - }, - "name": "Tengelmann", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Tesco Extra": { - "tags": { - "name": "Tesco Extra", - "shop": "supermarket" - }, - "name": "Tesco Extra", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Tesco Metro": { - "tags": { - "name": "Tesco Metro", - "shop": "supermarket" - }, - "name": "Tesco Metro", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/The Co-operative": { - "tags": { - "name": "The Co-operative", - "shop": "supermarket" - }, - "name": "The Co-operative", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Trader Joe's": { - "tags": { - "name": "Trader Joe's", - "shop": "supermarket" - }, - "name": "Trader Joe's", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Treff 3000": { - "tags": { - "name": "Treff 3000", - "shop": "supermarket" - }, - "name": "Treff 3000", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Unimarc": { - "tags": { - "name": "Unimarc", - "shop": "supermarket" - }, - "name": "Unimarc", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Unimarkt": { - "tags": { - "name": "Unimarkt", - "shop": "supermarket" - }, - "name": "Unimarkt", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Waitrose": { - "tags": { - "name": "Waitrose", - "shop": "supermarket" - }, - "name": "Waitrose", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Wasgau": { - "tags": { - "name": "Wasgau", - "shop": "supermarket" - }, - "name": "Wasgau", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Whole Foods": { - "tags": { - "name": "Whole Foods", - "shop": "supermarket" - }, - "name": "Whole Foods", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Willys": { - "tags": { - "name": "Willys", - "shop": "supermarket" - }, - "name": "Willys", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Zielpunkt": { - "tags": { - "name": "Zielpunkt", - "shop": "supermarket" - }, - "name": "Zielpunkt", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/coop": { - "tags": { - "name": "coop", - "shop": "supermarket" - }, - "name": "coop", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/nahkauf": { - "tags": { - "name": "nahkauf", - "shop": "supermarket" - }, - "name": "nahkauf", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/real,-": { - "tags": { - "name": "real,-", - "shop": "supermarket" - }, - "name": "real,-", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/sky": { - "tags": { - "name": "sky", - "shop": "supermarket" - }, - "name": "sky", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/АТБ": { - "tags": { - "name": "АТБ", - "shop": "supermarket" - }, - "name": "АТБ", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Десяточка": { - "tags": { - "name": "Десяточка", - "shop": "supermarket" - }, - "name": "Десяточка", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Евроопт": { - "tags": { - "name": "Евроопт", - "shop": "supermarket" - }, - "name": "Евроопт", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Карусель": { - "tags": { - "name": "Карусель", - "shop": "supermarket" - }, - "name": "Карусель", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Квартал": { - "tags": { - "name": "Квартал", - "shop": "supermarket" - }, - "name": "Квартал", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Копейка": { - "tags": { - "name": "Копейка", - "shop": "supermarket" - }, - "name": "Копейка", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Магнолия": { - "tags": { - "name": "Магнолия", - "shop": "supermarket" - }, - "name": "Магнолия", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Народная 7Я семьЯ": { - "tags": { - "name": "Народная 7Я семьЯ", - "shop": "supermarket" - }, - "name": "Народная 7Я семьЯ", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Полушка": { - "tags": { - "name": "Полушка", - "shop": "supermarket" - }, - "name": "Полушка", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Седьмой континент": { - "tags": { - "name": "Седьмой континент", - "shop": "supermarket" - }, - "name": "Седьмой континент", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Семья": { - "tags": { - "name": "Семья", - "shop": "supermarket" - }, - "name": "Семья", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Сільпо": { - "tags": { - "name": "Сільпо", - "shop": "supermarket" - }, - "name": "Сільпо", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Фора": { - "tags": { - "name": "Фора", - "shop": "supermarket" - }, - "name": "Фора", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/Фуршет": { - "tags": { - "name": "Фуршет", - "shop": "supermarket" - }, - "name": "Фуршет", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/マルエツ": { - "tags": { - "name": "マルエツ", - "shop": "supermarket" - }, - "name": "マルエツ", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/ヨークマート (YorkMart)": { - "tags": { - "name": "ヨークマート (YorkMart)", - "shop": "supermarket" - }, - "name": "ヨークマート (YorkMart)", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "suggestion": true - }, - "shop/supermarket/西友 (SEIYU)": { - "tags": { - "name": "西友 (SEIYU)", - "shop": "supermarket" - }, - "name": "西友 (SEIYU)", - "icon": "grocery", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area", - "address" - ], - "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", - "vertex", - "area" - ], - "fields": [ - "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", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/toys/Детский мир": { - "tags": { - "name": "Детский мир", - "shop": "toys" - }, - "name": "Детский мир", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "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", - "vertex", - "area" - ], - "fields": [ - "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", - "vertex", - "area" - ], - "fields": [ - "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", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/variety_store/Dollarama": { - "tags": { - "name": "Dollarama", - "shop": "variety_store" - }, - "name": "Dollarama", - "icon": "shop", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "address", - "building_area", - "opening_hours" - ], - "suggestion": true - }, - "shop/variety_store/Tedi": { - "tags": { - "name": "Tedi", - "shop": "variety_store" - }, - "name": "Tedi", + "name": "Atol", "icon": "shop", "geometry": [ "point", @@ -93399,6 +96146,633 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "opening_hours" ], "suggestion": true + }, + "shop/mobile_phone/Билайн": { + "tags": { + "name": "Билайн", + "shop": "mobile_phone" + }, + "name": "Билайн", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/mobile_phone/ソフトバンクショップ (SoftBank shop)": { + "tags": { + "name": "ソフトバンクショップ (SoftBank shop)", + "shop": "mobile_phone" + }, + "name": "ソフトバンクショップ (SoftBank shop)", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/mobile_phone/Vodafone": { + "tags": { + "name": "Vodafone", + "shop": "mobile_phone" + }, + "name": "Vodafone", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/mobile_phone/O2": { + "tags": { + "name": "O2", + "shop": "mobile_phone" + }, + "name": "O2", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/mobile_phone/Carphone Warehouse": { + "tags": { + "name": "Carphone Warehouse", + "shop": "mobile_phone" + }, + "name": "Carphone Warehouse", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/mobile_phone/Orange": { + "tags": { + "name": "Orange", + "shop": "mobile_phone" + }, + "name": "Orange", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/mobile_phone/Verizon Wireless": { + "tags": { + "name": "Verizon Wireless", + "shop": "mobile_phone" + }, + "name": "Verizon Wireless", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/mobile_phone/Sprint": { + "tags": { + "name": "Sprint", + "shop": "mobile_phone" + }, + "name": "Sprint", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/mobile_phone/T-Mobile": { + "tags": { + "name": "T-Mobile", + "shop": "mobile_phone" + }, + "name": "T-Mobile", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/mobile_phone/МТС": { + "tags": { + "name": "МТС", + "shop": "mobile_phone" + }, + "name": "МТС", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/mobile_phone/Евросеть": { + "tags": { + "name": "Евросеть", + "shop": "mobile_phone" + }, + "name": "Евросеть", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/mobile_phone/Bell": { + "tags": { + "name": "Bell", + "shop": "mobile_phone" + }, + "name": "Bell", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "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": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/mobile_phone/SFR": { + "tags": { + "name": "SFR", + "shop": "mobile_phone" + }, + "name": "SFR", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/mobile_phone/Связной": { + "tags": { + "name": "Связной", + "shop": "mobile_phone" + }, + "name": "Связной", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/mobile_phone/Мегафон": { + "tags": { + "name": "Мегафон", + "shop": "mobile_phone" + }, + "name": "Мегафон", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/mobile_phone/AT&T": { + "tags": { + "name": "AT&T", + "shop": "mobile_phone" + }, + "name": "AT&T", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/mobile_phone/ドコモショップ (docomo shop)": { + "tags": { + "name": "ドコモショップ (docomo shop)", + "shop": "mobile_phone" + }, + "name": "ドコモショップ (docomo shop)", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/mobile_phone/au": { + "tags": { + "name": "au", + "shop": "mobile_phone" + }, + "name": "au", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/mobile_phone/Movistar": { + "tags": { + "name": "Movistar", + "shop": "mobile_phone" + }, + "name": "Movistar", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/mobile_phone/Bitė": { + "tags": { + "name": "Bitė", + "shop": "mobile_phone" + }, + "name": "Bitė", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/computer/PC World": { + "tags": { + "name": "PC World", + "shop": "computer" + }, + "name": "PC World", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/computer/DNS": { + "tags": { + "name": "DNS", + "shop": "computer" + }, + "name": "DNS", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/hairdresser/Klier": { + "tags": { + "name": "Klier", + "shop": "hairdresser" + }, + "name": "Klier", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/hairdresser/Supercuts": { + "tags": { + "name": "Supercuts", + "shop": "hairdresser" + }, + "name": "Supercuts", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/hairdresser/Hairkiller": { + "tags": { + "name": "Hairkiller", + "shop": "hairdresser" + }, + "name": "Hairkiller", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/hairdresser/Great Clips": { + "tags": { + "name": "Great Clips", + "shop": "hairdresser" + }, + "name": "Great Clips", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/hairdresser/Парикмахерская": { + "tags": { + "name": "Парикмахерская", + "shop": "hairdresser" + }, + "name": "Парикмахерская", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/hairdresser/Fryzjer": { + "tags": { + "name": "Fryzjer", + "shop": "hairdresser" + }, + "name": "Fryzjer", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/hairdresser/Franck Provost": { + "tags": { + "name": "Franck Provost", + "shop": "hairdresser" + }, + "name": "Franck Provost", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/hairdresser/Салон красоты": { + "tags": { + "name": "Салон красоты", + "shop": "hairdresser" + }, + "name": "Салон красоты", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/hardware/1000 мелочей": { + "tags": { + "name": "1000 мелочей", + "shop": "hardware" + }, + "name": "1000 мелочей", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true + }, + "shop/motorcycle/Yamaha": { + "tags": { + "name": "Yamaha", + "shop": "motorcycle" + }, + "name": "Yamaha", + "icon": "shop", + "geometry": [ + "point", + "vertex", + "area" + ], + "fields": [ + "address", + "building_area", + "opening_hours" + ], + "suggestion": true } }, "defaults": { @@ -93579,7 +96953,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "waterway/river", "waterway/stream", "waterway/canal", - "waterway/ditch" + "waterway/ditch", + "waterway/drain" ] } }, @@ -93669,6 +97044,59 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "type": "number", "label": "Admin Level" }, + "aerialway": { + "key": "aerialway", + "type": "typeCombo", + "label": "Type" + }, + "aerialway/access": { + "key": "aerialway:access", + "type": "combo", + "options": [ + "entry", + "exit", + "both" + ], + "label": "Access" + }, + "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", + "options": [ + "entry", + "exit", + "both" + ], + "label": "Access (summer)" + }, "aeroway": { "key": "aeroway", "type": "typeCombo", @@ -93825,6 +97253,17 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "type": "textarea", "label": "Description" }, + "electrified": { + "key": "electrified", + "type": "combo", + "label": "Electrification", + "options": [ + "contact_line", + "rail", + "yes", + "no" + ] + }, "elevation": { "key": "ele", "type": "number", @@ -93869,6 +97308,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "type": "textarea", "label": "Fix Me" }, + "gauge": { + "key": "gauge", + "type": "combo", + "label": "Gauge" + }, "generator/method": { "key": "generator:method", "type": "combo", @@ -94087,6 +97531,21 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "label": "Phone", "placeholder": "+31 42 123 4567" }, + "piste/difficulty": { + "key": "piste:difficulty", + "type": "combo", + "label": "Difficulty" + }, + "piste/grooming": { + "key": "piste:grooming", + "type": "combo", + "label": "Grooming" + }, + "piste/type": { + "key": "piste:type", + "type": "typeCombo", + "label": "Type" + }, "place": { "key": "place", "type": "typeCombo", @@ -94224,6 +97683,15 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," } } }, + "studio_type": { + "key": "type", + "type": "combo", + "options": [ + "audio", + "video" + ], + "label": "Type" + }, "supervised": { "key": "supervised", "type": "check", @@ -94269,6 +97737,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "label": "Type" }, + "tunnel": { + "key": "tunnel", + "type": "combo", + "label": "Tunnel" + }, "vending": { "key": "vending", "type": "combo", @@ -106192,6 +109665,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "id", "it", "ja", + "kn", "ko", "lv", "lt", @@ -106201,6 +109675,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "pl", "pt", "pt-BR", + "ro-RO", "ru", "sc", "sr", @@ -106472,7 +109947,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "yes": "Yes", "no": "No" }, - "none": "None" + "none": "None", + "node": "Node", + "way": "Way", + "relation": "Relation", + "location": "Location" }, "background": { "title": "Background", @@ -106532,6 +110011,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "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_tooltip": "Select a feature type that describes what this {geometry} is.", "deprecated_tags": "Deprecated tags: {tags}" }, "zoom": { @@ -106547,7 +110027,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," }, "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 a\n[free OpenStreetMap account](https://www.openstreetmap.org/user/new).\n\nThe [iD editor](http://ideditor.com/) is a collaborative project with [source\ncode available on GitHub](https://github.com/systemed/iD).\n", + "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 a\n[free OpenStreetMap account](https://www.openstreetmap.org/user/new).\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", "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\nGPS data is the most trusted 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[Surveying with a GPS](http://learnosm.org/en/beginner/using-gps/).\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 green\nline. Click on the 'Background Settings' 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", @@ -106690,6 +110170,33 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "admin_level": { "label": "Admin Level" }, + "aerialway": { + "label": "Type" + }, + "aerialway/access": { + "label": "Access" + }, + "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)" + }, "aeroway": { "label": "Type" }, @@ -106770,6 +110277,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "description": { "label": "Description" }, + "electrified": { + "label": "Electrification" + }, "elevation": { "label": "Elevation" }, @@ -106792,6 +110302,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "fixme": { "label": "Fix Me" }, + "gauge": { + "label": "Gauge" + }, "generator/method": { "label": "Method" }, @@ -106915,6 +110428,15 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "label": "Phone", "placeholder": "+31 42 123 4567" }, + "piste/difficulty": { + "label": "Difficulty" + }, + "piste/grooming": { + "label": "Grooming" + }, + "piste/type": { + "label": "Type" + }, "place": { "label": "Type" }, @@ -106982,6 +110504,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "cutting": "Cutting" } }, + "studio_type": { + "label": "Type" + }, "supervised": { "label": "Supervised" }, @@ -107006,6 +110531,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "tree_type": { "label": "Type" }, + "tunnel": { + "label": "Tunnel" + }, "vending": { "label": "Type of Goods" }, @@ -107037,6 +110565,46 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "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": "" @@ -107133,6 +110701,14 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "name": "Cinema", "terms": "big screen,bijou,cine,drive-in,film,flicks,motion pictures,movie house,movie theater,moving pictures,nabes,photoplay,picture show,pictures,playhouse,show,silver screen" }, + "amenity/clinic": { + "name": "Clinic", + "terms": "clinic,medical clinic" + }, + "amenity/clock": { + "name": "Clock", + "terms": "" + }, "amenity/college": { "name": "College", "terms": "" @@ -107141,6 +110717,14 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "name": "Courthouse", "terms": "" }, + "amenity/dentist": { + "name": "Dentist", + "terms": "dentist,dentist's office" + }, + "amenity/doctor": { + "name": "Doctor", + "terms": "doctor,doctor's office" + }, "amenity/drinking_water": { "name": "Drinking Water", "terms": "water fountain,potable water" @@ -107249,6 +110833,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "name": "Shelter", "terms": "lean-to" }, + "amenity/studio": { + "name": "Studio", + "terms": "recording studio,studio,radio,radio studio,television,television studio" + }, "amenity/swimming_pool": { "name": "Swimming Pool", "terms": "" @@ -107281,6 +110869,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "name": "Vending Machine", "terms": "" }, + "amenity/veterinary": { + "name": "Veterinary", + "terms": "pet clinic,veterinarian,animal hospital,pet doctor" + }, "amenity/waste_basket": { "name": "Waste Basket", "terms": "rubbish bin,litter bin,trash can,garbage can" @@ -107397,6 +110989,186 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "name": "Residential Building", "terms": "" }, + "craft/basket_maker": { + "name": "Basket Maker", + "terms": "basket,basketry,basket maker,basket weaver" + }, + "craft/beekeeper": { + "name": "Beekeeper", + "terms": "bees,beekeeper,bee box" + }, + "craft/blacksmith": { + "name": "Blacksmith", + "terms": "blacksmith" + }, + "craft/boatbuilder": { + "name": "Boat Builder", + "terms": "boat builder" + }, + "craft/bookbinder": { + "name": "Bookbinder", + "terms": "bookbinder,book repair" + }, + "craft/brewery": { + "name": "Brewery", + "terms": "brewery" + }, + "craft/carpenter": { + "name": "Carpenter", + "terms": "carpenter,woodworker" + }, + "craft/carpet_layer": { + "name": "Carpet Layer", + "terms": "carpet layer" + }, + "craft/caterer": { + "name": "Caterer", + "terms": "Caterer,Catering" + }, + "craft/clockmaker": { + "name": "Clockmaker", + "terms": "clock,clockmaker,clock repair" + }, + "craft/confectionary": { + "name": "Confectionary", + "terms": "confectionary,sweets,candy" + }, + "craft/dressmaker": { + "name": "Dressmaker", + "terms": "dress,dressmaker" + }, + "craft/electrician": { + "name": "Electrician", + "terms": "electrician" + }, + "craft/gardener": { + "name": "Gardener", + "terms": "gardener,landscaper,grounds keeper" + }, + "craft/glaziery": { + "name": "Glaziery", + "terms": "glass,glass foundry,stained-glass,window" + }, + "craft/handicraft": { + "name": "Handicraft", + "terms": "handicraft" + }, + "craft/hvac": { + "name": "HVAC", + "terms": "heating,ventilating,air-conditioning,air conditioning" + }, + "craft/insulator": { + "name": "Insulator", + "terms": "insulation,insulator" + }, + "craft/jeweler": { + "name": "Jeweler", + "terms": "jeweler,gem,diamond" + }, + "craft/key_cutter": { + "name": "Key Cutter", + "terms": "key,key cutter" + }, + "craft/locksmith": { + "name": "Locksmith", + "terms": "locksmith,lock" + }, + "craft/metal_construction": { + "name": "Metal Construction", + "terms": "metal construction" + }, + "craft/optician": { + "name": "Optician", + "terms": "glasses,optician" + }, + "craft/painter": { + "name": "painter", + "terms": "painter" + }, + "craft/photographer": { + "name": "Photographer", + "terms": "photographer" + }, + "craft/photographic_labratory": { + "name": "Photographic Labratory", + "terms": "photographic labratory,film developer" + }, + "craft/plasterer": { + "name": "Plasterer", + "terms": "plasterer" + }, + "craft/plumber": { + "name": "Plumber", + "terms": "pumber" + }, + "craft/pottery": { + "name": "Pottery", + "terms": "pottery,potter" + }, + "craft/rigger": { + "name": "Rigger", + "terms": "rigger" + }, + "craft/roofer": { + "name": "Roofer", + "terms": "roofer" + }, + "craft/saddler": { + "name": "Saddler", + "terms": "saddler" + }, + "craft/sailmaker": { + "name": "Sailmaker", + "terms": "sailmaker" + }, + "craft/sawmill": { + "name": "Sawmill", + "terms": "sawmill,lumber" + }, + "craft/scaffolder": { + "name": "Scaffolder", + "terms": "scaffolder" + }, + "craft/sculpter": { + "name": "Sculpter", + "terms": "sculpter" + }, + "craft/shoemaker": { + "name": "Shoemaker", + "terms": "shoe repair,shoemaker" + }, + "craft/stonemason": { + "name": "Stonemason", + "terms": "stonemason,masonry" + }, + "craft/sweep": { + "name": "Chimney Sweep", + "terms": "sweep,chimney sweep" + }, + "craft/tailor": { + "name": "Tailor", + "terms": "tailor,clothes" + }, + "craft/tiler": { + "name": "Tiler", + "terms": "tiler" + }, + "craft/tinsmith": { + "name": "Tinsmith", + "terms": "tinsmith" + }, + "craft/upholsterer": { + "name": "Upholsterer", + "terms": "upholsterer" + }, + "craft/watchmaker": { + "name": "Watchmaker", + "terms": "watch,watchmaker,watch repair" + }, + "craft/window_construction": { + "name": "Window Construction", + "terms": "window,window maker,window construction" + }, "embankment": { "name": "Embankment", "terms": "" @@ -107521,6 +111293,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "name": "Residential Road", "terms": "" }, + "highway/rest_area": { + "name": "Rest Area", + "terms": "rest stop,turnout,lay-by" + }, "highway/road": { "name": "Unknown Road", "terms": "" @@ -107557,6 +111333,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "name": "Parking Aisle", "terms": "" }, + "highway/services": { + "name": "Service Area", + "terms": "services,travel plaza,service station" + }, "highway/steps": { "name": "Steps", "terms": "stairs,staircase" @@ -108033,6 +111813,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "name": "Travel Agency", "terms": "" }, + "piste": { + "name": "Piste/Ski Trail", + "terms": "ski,sled,sleigh,snowboard,nordic,downhill,snowmobile" + }, "place": { "name": "Place", "terms": "" @@ -108121,6 +111905,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "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" @@ -108133,6 +111921,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "name": "Monorail", "terms": "" }, + "railway/narrow_gauge": { + "name": "Narrow Gauge Rail", + "terms": "narrow gauge railway,narrow gauge railroad" + }, "railway/platform": { "name": "Railway Platform", "terms": "" @@ -108566,738 +112358,1999 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," }, "suggestions": { "amenity": { + "pub": { + "The Green Man": { + "count": 51 + }, + "Kings Arms": { + "count": 67 + }, + "Red Lion": { + "count": 203 + }, + "The Ship": { + "count": 87 + }, + "The White Horse": { + "count": 201 + }, + "The White Hart": { + "count": 228 + }, + "Royal Oak": { + "count": 147 + }, + "The Red Lion": { + "count": 231 + }, + "The Kings Arms": { + "count": 58 + }, + "The Star": { + "count": 73 + }, + "The Anchor": { + "count": 64 + }, + "The Cross Keys": { + "count": 55 + }, + "The Wheatsheaf": { + "count": 117 + }, + "The Crown Inn": { + "count": 68 + }, + "The Kings Head": { + "count": 53 + }, + "The Castle": { + "count": 58 + }, + "The Railway": { + "count": 100 + }, + "The White Lion": { + "count": 118 + }, + "The Bell": { + "count": 121 + }, + "The Bull": { + "count": 67 + }, + "The Plough": { + "count": 177 + }, + "The George": { + "count": 109 + }, + "The Royal Oak": { + "count": 210 + }, + "The Fox": { + "count": 76 + }, + "Prince of Wales": { + "count": 76 + }, + "The Rising Sun": { + "count": 69 + }, + "The Prince of Wales": { + "count": 51 + }, + "The Crown": { + "count": 241 + }, + "The Chequers": { + "count": 64 + }, + "The Swan": { + "count": 150 + }, + "Rose and Crown": { + "count": 79 + }, + "The Victoria": { + "count": 68 + }, + "New Inn": { + "count": 89 + }, + "Royal Hotel": { + "count": 55 + }, + "Cross Keys": { + "count": 59 + }, + "The Greyhound": { + "count": 96 + }, + "The Black Horse": { + "count": 94 + }, + "The New Inn": { + "count": 104 + }, + "Kings Head": { + "count": 57 + }, + "The Angel": { + "count": 53 + }, + "The Queens Head": { + "count": 51 + }, + "The Ship Inn": { + "count": 83 + }, + "Rose & Crown": { + "count": 51 + }, + "Queens Head": { + "count": 51 + }, + "Irish Pub": { + "count": 79 + } + }, + "fuel": { + "76": { + "count": 295 + }, + "Neste": { + "count": 192 + }, + "BP": { + "count": 2444 + }, + "Shell": { + "count": 8191 + }, + "Agip": { + "count": 2652 + }, + "Migrol": { + "count": 65 + }, + "Avia": { + "count": 883 + }, + "Texaco": { + "count": 667 + }, + "Total": { + "count": 2545 + }, + "Statoil": { + "count": 589 + }, + "Esso": { + "count": 3595 + }, + "Jet": { + "count": 438 + }, + "Avanti": { + "count": 89 + }, + "Sainsbury's": { + "count": 57 + }, + "OMV": { + "count": 706 + }, + "Aral": { + "count": 1334 + }, + "Tesco": { + "count": 193 + }, + "JET": { + "count": 178 + }, + "Morrisons": { + "count": 108 + }, + "United": { + "count": 89 + }, + "Canadian Tire": { + "count": 65 + }, + "Mobil": { + "count": 586 + }, + "Caltex": { + "count": 973 + }, + "Sunoco": { + "count": 336 + }, + "Q8": { + "count": 1160 + }, + "ABC": { + "count": 80 + }, + "Tankstelle": { + "count": 115 + }, + "ARAL": { + "count": 366 + }, + "CEPSA": { + "count": 1017 + }, + "BFT": { + "count": 88 + }, + "Petron": { + "count": 862 + }, + "Intermarché": { + "count": 428 + }, + "Super U": { + "count": 122 + }, + "Auchan": { + "count": 52 + }, + "Elf": { + "count": 131 + }, + "Carrefour": { + "count": 199 + }, + "Station Service E. Leclerc": { + "count": 534 + }, + "Shell Express": { + "count": 129 + }, + "Hess": { + "count": 114 + }, + "Flying V": { + "count": 132 + }, + "bft": { + "count": 169 + }, + "Gulf": { + "count": 192 + }, + "PTT": { + "count": 176 + }, + "St1": { + "count": 102 + }, + "Teboil": { + "count": 120 + }, + "HEM": { + "count": 218 + }, + "GALP": { + "count": 593 + }, + "OK": { + "count": 160 + }, + "ÖMV": { + "count": 100 + }, + "Tinq": { + "count": 215 + }, + "OKQ8": { + "count": 187 + }, + "Freie Tankstelle": { + "count": 217 + }, + "Repsol": { + "count": 408 + }, + "Westfalen": { + "count": 96 + }, + "Esso Express": { + "count": 87 + }, + "Raiffeisenbank": { + "count": 115 + }, + "Tamoil": { + "count": 865 + }, + "Engen": { + "count": 230 + }, + "Sasol": { + "count": 58 + }, + "Topaz": { + "count": 78 + }, + "LPG": { + "count": 170 + }, + "Coop": { + "count": 55 + }, + "Orlen": { + "count": 577 + }, + "Oilibya": { + "count": 66 + }, + "Tango": { + "count": 122 + }, + "Star": { + "count": 315 + }, + "Петрол": { + "count": 81 + }, + "Cepsa": { + "count": 82 + }, + "OIL!": { + "count": 59 + }, + "Ultramar": { + "count": 124 + }, + "Irving": { + "count": 86 + }, + "Lukoil": { + "count": 689 + }, + "Petro-Canada": { + "count": 477 + }, + "7-Eleven": { + "count": 447 + }, + "Agrola": { + "count": 70 + }, + "Husky": { + "count": 119 + }, + "Slovnaft": { + "count": 218 + }, + "Sheetz": { + "count": 113 + }, + "Mol": { + "count": 56 + }, + "Petronas": { + "count": 151 + }, + "Газпромнефть": { + "count": 742 + }, + "Лукойл": { + "count": 1451 + }, + "Elan": { + "count": 113 + }, + "Роснефть": { + "count": 621 + }, + "Turmöl": { + "count": 57 + }, + "Neste A24": { + "count": 57 + }, + "Marathon": { + "count": 170 + }, + "Valero": { + "count": 348 + }, + "Eni": { + "count": 219 + }, + "Chevron": { + "count": 918 + }, + "ТНК": { + "count": 512 + }, + "REPSOL": { + "count": 1609 + }, + "MOL": { + "count": 226 + }, + "Bliska": { + "count": 150 + }, + "Api": { + "count": 307 + }, + "Arco": { + "count": 174 + }, + "Pemex": { + "count": 385 + }, + "Exxon": { + "count": 474 + }, + "Coles Express": { + "count": 108 + }, + "Petrom": { + "count": 256 + }, + "PETRONOR": { + "count": 208 + }, + "Rompetrol": { + "count": 165 + }, + "Lotos": { + "count": 171 + }, + "ОМВ": { + "count": 60 + }, + "BR": { + "count": 102 + }, + "Copec": { + "count": 500 + }, + "Petrobras": { + "count": 260 + }, + "Liberty": { + "count": 53 + }, + "IP": { + "count": 855 + }, + "YPF": { + "count": 158 + }, + "Erg": { + "count": 594 + }, + "Eneos": { + "count": 96 + }, + "Citgo": { + "count": 268 + }, + "Metano": { + "count": 206 + }, + "Сургутнефтегаз": { + "count": 62 + }, + "EKO": { + "count": 58 + }, + "Eko": { + "count": 58 + }, + "Indipend.": { + "count": 175 + }, + "IES": { + "count": 63 + }, + "TotalErg": { + "count": 85 + }, + "Cenex": { + "count": 114 + }, + "ПТК": { + "count": 81 + }, + "HP": { + "count": 76 + }, + "Phillips 66": { + "count": 202 + }, + "CARREFOUR": { + "count": 73 + }, + "ERG": { + "count": 75 + }, + "Speedway": { + "count": 131 + }, + "Benzina": { + "count": 70 + }, + "Татнефть": { + "count": 258 + }, + "Terpel": { + "count": 258 + }, + "WOG": { + "count": 169 + }, + "Seaoil": { + "count": 53 + }, + "АЗС": { + "count": 1048 + }, + "Kwik Trip": { + "count": 104 + }, + "Wawa": { + "count": 81 + }, + "Pertamina": { + "count": 182 + }, + "COSMO": { + "count": 65 + }, + "Z": { + "count": 75 + }, + "Indian Oil": { + "count": 167 + }, + "АГЗС": { + "count": 486 + }, + "INA": { + "count": 119 + }, + "JOMO": { + "count": 63 + }, + "Holiday": { + "count": 96 + }, + "IDEMITSU": { + "count": 88 + }, + "ENEOS": { + "count": 702 + }, + "Stacja paliw": { + "count": 84 + }, + "Bharat Petroleum": { + "count": 51 + }, + "CAMPSA": { + "count": 622 + }, + "Casey's General Store": { + "count": 179 + }, + "Kangaroo": { + "count": 57 + }, + "Белоруснефть": { + "count": 51 + }, + "コスモ石油 (COSMO)": { + "count": 132 + }, + "MEROIL": { + "count": 78 + }, + "1-2-3": { + "count": 71 + }, + "Conoco": { + "count": 171 + }, + "出光": { + "count": 214, + "tags": { + "name:en": "IDEMITSU" + } + }, + "НК Альянс": { + "count": 87 + }, + "Sinclair": { + "count": 86 + }, + "SPBU": { + "count": 51 + }, + "Макпетрол": { + "count": 109 + }, + "Circle K": { + "count": 156 + }, + "Posto Ipiranga": { + "count": 57 + }, + "Phoenix": { + "count": 143 + }, + "Ipiranga": { + "count": 83 + }, + "OKKO": { + "count": 83 + }, + "ОККО": { + "count": 116 + }, + "บางจาก": { + "count": 59 + }, + "QuikTrip": { + "count": 92 + }, + "Stewart's": { + "count": 62 + }, + "Posto BR": { + "count": 58 + }, + "ป ต ท": { + "count": 153 + }, + "ปตท": { + "count": 88 + }, + "ANP": { + "count": 77 + }, + "Kum & Go": { + "count": 84 + }, + "Sokimex": { + "count": 61 + }, + "Tela": { + "count": 115 + }, + "Укрнафта": { + "count": 57 + }, + "Татнефтепродукт": { + "count": 54 + }, + "Afriquia": { + "count": 88 + }, + "Murphy USA": { + "count": 62 + }, + "昭和シェル (Showa-shell)": { + "count": 94 + }, + "CNG": { + "count": 79 + } + }, + "fast_food": { + "Quick": { + "count": 482 + }, + "McDonald's": { + "count": 12049, + "tags": { + "cuisine": "burger" + } + }, + "Subway": { + "count": 5378, + "tags": { + "cuisine": "sandwich" + } + }, + "Burger King": { + "count": 3594, + "tags": { + "cuisine": "burger" + } + }, + "Ali Baba": { + "count": 59 + }, + "Hungry Jacks": { + "count": 170, + "tags": { + "cuisine": "burger" + } + }, + "Red Rooster": { + "count": 147 + }, + "KFC": { + "count": 3093, + "tags": { + "cuisine": "chicken" + } + }, + "Domino's Pizza": { + "count": 935, + "tags": { + "cuisine": "pizza" + } + }, + "Chowking": { + "count": 141 + }, + "Jollibee": { + "count": 390 + }, + "Hesburger": { + "count": 99 + }, + "肯德基": { + "count": 84 + }, + "Wendy's": { + "count": 1554, + "tags": { + "cuisine": "burger" + } + }, + "Tim Hortons": { + "count": 304 + }, + "Steers": { + "count": 143 + }, + "Hardee's": { + "count": 253, + "tags": { + "cuisine": "burger" + } + }, + "Arby's": { + "count": 747 + }, + "A&W": { + "count": 268 + }, + "Dairy Queen": { + "count": 752 + }, + "Hallo Pizza": { + "count": 76 + }, + "Fish & Chips": { + "count": 85 + }, + "Harvey's": { + "count": 88 + }, + "麥當勞": { + "count": 55 + }, + "Pizza Pizza": { + "count": 203 + }, + "Kotipizza": { + "count": 75 + }, + "Jack in the Box": { + "count": 530, + "tags": { + "cuisine": "burger" + } + }, + "Istanbul": { + "count": 56 + }, + "Kochlöffel": { + "count": 68 + }, + "Döner": { + "count": 227 + }, + "Telepizza": { + "count": 190 + }, + "Sibylla": { + "count": 60 + }, + "Carl's Jr.": { + "count": 287, + "tags": { + "cuisine": "burger" + } + }, + "Quiznos": { + "count": 261, + "tags": { + "cuisine": "sandwich" + } + }, + "Wimpy": { + "count": 136 + }, + "Sonic": { + "count": 538, + "tags": { + "cuisine": "burger" + } + }, + "Taco Bell": { + "count": 1367 + }, + "Pizza Nova": { + "count": 58 + }, + "Papa John's": { + "count": 289, + "tags": { + "cuisine": "pizza" + } + }, + "Nordsee": { + "count": 158 + }, + "Mr. Sub": { + "count": 104 + }, + "Kebab": { + "count": 176 + }, + "Макдоналдс": { + "count": 316, + "tags": { + "name:en": "McDonald's" + } + }, + "Asia Imbiss": { + "count": 107 + }, + "Imbiss": { + "count": 183 + }, + "Chipotle": { + "count": 275, + "tags": { + "cuisine": "mexican" + } + }, + "マクドナルド": { + "count": 668, + "tags": { + "name:en": "McDonald's", + "cuisine": "burger" + } + }, + "In-N-Out Burger": { + "count": 58 + }, + "Jimmy John's": { + "count": 126 + }, + "Jamba Juice": { + "count": 63 + }, + "Робин Сдобин": { + "count": 81 + }, + "Baskin Robbins": { + "count": 69 + }, + "ケンタッキーフライドチキン": { + "count": 162, + "tags": { + "name:en": "KFC", + "cuisine": "chicken" + } + }, + "吉野家": { + "count": 183 + }, + "Taco Time": { + "count": 85 + }, + "松屋": { + "count": 262, + "tags": { + "name:en": "Matsuya" + } + }, + "Little Caesars": { + "count": 65 + }, + "El Pollo Loco": { + "count": 62 + }, + "Del Taco": { + "count": 139 + }, + "White Castle": { + "count": 77 + }, + "Boston Market": { + "count": 63 + }, + "Chick-fil-A": { + "count": 236, + "tags": { + "cuisine": "chicken" + } + }, + "Panda Express": { + "count": 225 + }, + "Whataburger": { + "count": 152 + }, + "Taco John's": { + "count": 72 + }, + "Теремок": { + "count": 65 + }, + "Culver's": { + "count": 426 + }, + "Five Guys": { + "count": 130 + }, + "Church's Chicken": { + "count": 93 + }, + "Popeye's": { + "count": 151, + "tags": { + "cuisine": "chicken" + } + }, + "Long John Silver's": { + "count": 80 + }, + "Pollo Campero": { + "count": 61 + }, + "すき家": { + "count": 264, + "tags": { + "name:en": "SUKIYA" + } + }, + "モスバーガー": { + "count": 252, + "tags": { + "name:en": "MOS BURGER" + } + }, + "Русский Аппетит": { + "count": 67 + }, + "なか卯": { + "count": 56 + } + }, + "restaurant": { + "Pizza Hut": { + "count": 1099 + }, + "Little Chef": { + "count": 64 + }, + "Adler": { + "count": 158 + }, + "Zur Krone": { + "count": 91 + }, + "Deutsches Haus": { + "count": 91 + }, + "Krone": { + "count": 173 + }, + "Akropolis": { + "count": 150 + }, + "Schützenhaus": { + "count": 126 + }, + "TGI Friday's": { + "count": 198 + }, + "Kreuz": { + "count": 73 + }, + "Waldschänke": { + "count": 56 + }, + "La Piazza": { + "count": 69 + }, + "Lamm": { + "count": 68 + }, + "Zur Sonne": { + "count": 73 + }, + "Zur Linde": { + "count": 204 + }, + "Poseidon": { + "count": 111 + }, + "Shanghai": { + "count": 81 + }, + "Red Lobster": { + "count": 224 + }, + "Zum Löwen": { + "count": 81 + }, + "Swiss Chalet": { + "count": 105 + }, + "Olympia": { + "count": 77 + }, + "Wagamama": { + "count": 59 + }, + "Frankie & Benny's": { + "count": 62 + }, + "Hooters": { + "count": 101 + }, + "Sternen": { + "count": 76 + }, + "Hirschen": { + "count": 82 + }, + "Papa John's": { + "count": 58, + "tags": { + "cuisine": "pizza" + } + }, + "Denny's": { + "count": 422 + }, + "Athen": { + "count": 67 + }, + "Sonne": { + "count": 124 + }, + "Hirsch": { + "count": 78 + }, + "Ratskeller": { + "count": 149 + }, + "La Cantina": { + "count": 54 + }, + "Gasthaus Krone": { + "count": 55 + }, + "El Greco": { + "count": 80 + }, + "Gasthof zur Post": { + "count": 74 + }, + "Nando's": { + "count": 234 + }, + "Löwen": { + "count": 114 + }, + "Pizza Express": { + "count": 250 + }, + "Mandarin": { + "count": 64 + }, + "Hong Kong": { + "count": 83 + }, + "Zizzi": { + "count": 65 + }, + "Cracker Barrel": { + "count": 170 + }, + "Rhodos": { + "count": 78 + }, + "Lindenhof": { + "count": 80 + }, + "Milano": { + "count": 53 + }, + "Dolce Vita": { + "count": 75 + }, + "Kirchenwirt": { + "count": 81 + }, + "Kantine": { + "count": 56 + }, + "Ochsen": { + "count": 93 + }, + "Spur": { + "count": 59 + }, + "Mykonos": { + "count": 59 + }, + "Lotus": { + "count": 66 + }, + "Applebee's": { + "count": 501 + }, + "Flunch": { + "count": 71 + }, + "Zur Post": { + "count": 116 + }, + "China Town": { + "count": 71 + }, + "La Dolce Vita": { + "count": 68 + }, + "Waffle House": { + "count": 195 + }, + "Delphi": { + "count": 88 + }, + "Linde": { + "count": 102 + }, + "Dionysos": { + "count": 69 + }, + "Outback Steakhouse": { + "count": 199 + }, + "Kelsey's": { + "count": 55 + }, + "Boston Pizza": { + "count": 153 + }, + "Bella Italia": { + "count": 129 + }, + "Sizzler": { + "count": 52 + }, + "Grüner Baum": { + "count": 115 + }, + "Taj Mahal": { + "count": 102 + }, + "Rössli": { + "count": 67 + }, + "Traube": { + "count": 64 + }, + "Red Robin": { + "count": 177 + }, + "Roma": { + "count": 61 + }, + "San Marco": { + "count": 66 + }, + "Hellas": { + "count": 54 + }, + "La Perla": { + "count": 66 + }, + "Vips": { + "count": 52 + }, + "Panera Bread": { + "count": 192 + }, + "Da Vinci": { + "count": 54 + }, + "Hippopotamus": { + "count": 92 + }, + "Prezzo": { + "count": 71 + }, + "Courtepaille": { + "count": 99 + }, + "Hard Rock Cafe": { + "count": 67 + }, + "Panorama": { + "count": 61 + }, + "デニーズ": { + "count": 77 + }, + "Sportheim": { + "count": 62 + }, + "餃子の王将": { + "count": 54 + }, + "Bären": { + "count": 55 + }, + "Alte Post": { + "count": 61 + }, + "China Garden": { + "count": 64 + }, + "Vapiano": { + "count": 82 + }, + "Mamma Mia": { + "count": 60 + }, + "Schwarzer Adler": { + "count": 56 + }, + "IHOP": { + "count": 304 + }, + "Chili's": { + "count": 308 + }, + "Olive Garden": { + "count": 264 + }, + "Friendly's": { + "count": 75 + }, + "Buffalo Grill": { + "count": 196 + }, + "Texas Roadhouse": { + "count": 103 + }, + "ガスト": { + "count": 221, + "tags": { + "name:en": "Gusto" + } + }, + "Sakura": { + "count": 70 + }, + "Mensa": { + "count": 92 + }, + "The Keg": { + "count": 52 + }, + "サイゼリヤ": { + "count": 88 + }, + "La Strada": { + "count": 51 + }, + "Village Inn": { + "count": 89 + }, + "Buffalo Wild Wings": { + "count": 161 + }, + "Peking": { + "count": 56 + }, + "Boston Market": { + "count": 60 + }, + "Jimmy John's": { + "count": 53 + }, + "California Pizza Kitchen": { + "count": 56 + }, + "Якитория": { + "count": 77 + }, + "Golden Corral": { + "count": 97 + }, + "Perkins": { + "count": 101 + }, + "Ruby Tuesday": { + "count": 146 + }, + "Shari's": { + "count": 63 + }, + "Bob Evans": { + "count": 112 + }, + "바다횟집 (Bada Fish Restaurant)": { + "count": 54 + }, + "Mang Inasal": { + "count": 82 + }, + "Евразия": { + "count": 99 + }, + "ジョナサン": { + "count": 57 + }, + "Longhorn Steakhouse": { + "count": 63 + } + }, "bank": { + "Chase": { + "count": 667 + }, + "Commonwealth Bank": { + "count": 224 + }, + "Citibank": { + "count": 261 + }, + "HSBC": { + "count": 1072 + }, + "Barclays": { + "count": 947 + }, + "Westpac": { + "count": 200 + }, + "NAB": { + "count": 126 + }, + "ANZ": { + "count": 207 + }, + "Lloyds Bank": { + "count": 543 + }, + "Landbank": { + "count": 80 + }, + "Sparkasse": { + "count": 4526 + }, + "UCPB": { + "count": 90 + }, + "PNB": { + "count": 243 + }, + "Metrobank": { + "count": 264 + }, + "BDO": { + "count": 288 + }, + "Volksbank": { + "count": 2584 + }, + "BPI": { + "count": 402 + }, + "Postbank": { + "count": 440 + }, + "NatWest": { + "count": 620 + }, + "Raiffeisenbank": { + "count": 2072 + }, + "Yorkshire Bank": { + "count": 63 + }, + "ABSA": { + "count": 90 + }, + "Standard Bank": { + "count": 101 + }, + "FNB": { + "count": 92 + }, + "Deutsche Bank": { + "count": 846 + }, + "SEB": { + "count": 131 + }, + "Commerzbank": { + "count": 802 + }, + "Targobank": { + "count": 166 + }, "ABN AMRO": { "count": 129 }, - "ABSA": { - "count": 88 + "Handelsbanken": { + "count": 181 }, - "AIB": { - "count": 71 + "Swedbank": { + "count": 221 }, - "ANZ": { - "count": 199 + "Kreissparkasse": { + "count": 587 }, - "AXA": { - "count": 66 + "UniCredit Bank": { + "count": 400 }, - "Alior Bank": { - "count": 71 + "Monte dei Paschi di Siena": { + "count": 131 }, - "Allied Bank": { - "count": 115 - }, - "Alpha Bank": { + "Caja Rural": { "count": 94 }, - "Argenta": { - "count": 84 + "Dresdner Bank": { + "count": 72 }, - "Axis Bank": { - "count": 52 + "Sparda-Bank": { + "count": 315 }, - "BAWAG PSK": { - "count": 105 + "VÚB": { + "count": 106 }, - "BB&T": { - "count": 126 + "Slovenská sporiteľňa": { + "count": 130 }, - "BBK": { - "count": 69 + "Bank of Montreal": { + "count": 115 }, - "BBVA": { - "count": 574 + "KBC": { + "count": 198 }, - "BCI": { - "count": 57 + "Royal Bank of Scotland": { + "count": 109 }, - "BCR": { - "count": 137 + "TSB": { + "count": 71 }, - "BDO": { - "count": 275 + "US Bank": { + "count": 234 }, - "BES": { - "count": 68 + "HypoVereinsbank": { + "count": 565 + }, + "Bank Austria": { + "count": 172 + }, + "ING": { + "count": 482 + }, + "Erste Bank": { + "count": 180 + }, + "CIBC": { + "count": 321 + }, + "Scotiabank": { + "count": 392 + }, + "Caisse d'Épargne": { + "count": 849 + }, + "Santander": { + "count": 1254 + }, + "Bank of Scotland": { + "count": 87 + }, + "TD Canada Trust": { + "count": 437 }, "BMO": { + "count": 166 + }, + "Danske Bank": { + "count": 130 + }, + "OTP": { + "count": 189 + }, + "Crédit Agricole": { + "count": 1200 + }, + "LCL": { + "count": 528 + }, + "VR-Bank": { + "count": 427 + }, + "ČSOB": { "count": 160 }, - "BNL": { - "count": 78 + "Česká spořitelna": { + "count": 211 }, "BNP": { "count": 109 }, - "BNP Paribas": { - "count": 574 - }, - "BNP Paribas Fortis": { - "count": 204 - }, - "BPI": { - "count": 393 - }, - "BRD": { - "count": 179 - }, - "BW-Bank": { - "count": 97 - }, - "BZ WBK": { + "Royal Bank": { "count": 65 }, - "Banamex": { - "count": 130 + "Nationwide": { + "count": 200 }, - "Banca Intesa": { - "count": 58 - }, - "Banca Popolare di Novara": { - "count": 51 - }, - "Banca Popolare di Vicenza": { - "count": 67 - }, - "Banca Transilvania": { - "count": 131 - }, - "Bancaja": { - "count": 58 - }, - "Banco BCI": { - "count": 51 - }, - "Banco Estado": { - "count": 67 - }, - "Banco G&T Continental": { - "count": 62 - }, - "Banco Itaú": { - "count": 82 - }, - "Banco Nación": { - "count": 59 - }, - "Banco Pastor": { - "count": 62 - }, - "Banco Popular": { - "count": 262 - }, - "Banco Provincia": { - "count": 62 - }, - "Banco Santander": { - "count": 91 - }, - "Banco de Chile": { - "count": 95 - }, - "Banco de Costa Rica": { - "count": 64 - }, - "Banco de Desarrollo Banrural": { - "count": 74 - }, - "Banco de la Nación": { - "count": 93 - }, - "Banco do Brasil": { - "count": 440 - }, - "BancoEstado": { - "count": 79 - }, - "Bancolombia": { - "count": 85 - }, - "Bancomer": { - "count": 96 - }, - "Bancpost": { - "count": 51 - }, - "Banesco": { - "count": 86 - }, - "Banesto": { - "count": 198 - }, - "Bank Austria": { - "count": 174 - }, - "Bank Mandiri": { - "count": 56 - }, - "Bank Spółdzielczy": { - "count": 142 - }, - "Bank of America": { - "count": 836 - }, - "Bank of Ireland": { - "count": 109 - }, - "Bank of Montreal": { - "count": 111 - }, - "Bank of Scotland": { - "count": 85 - }, - "Bank of the West": { - "count": 86 - }, - "Bankia": { - "count": 108 - }, - "Bankinter": { - "count": 54 - }, - "Banorte": { - "count": 65 - }, - "Banque Nationale": { - "count": 56 - }, - "Banque Populaire": { - "count": 399 - }, - "Barclays": { - "count": 925 - }, - "Belfius": { + "Halifax": { "count": 219 }, - "Bendigo Bank": { - "count": 88 + "BAWAG PSK": { + "count": 101 + }, + "National Bank": { + "count": 84 + }, + "Nedbank": { + "count": 78 + }, + "First National Bank": { + "count": 76 + }, + "Nordea": { + "count": 313 + }, + "Rabobank": { + "count": 613 + }, + "Sparkasse KölnBonn": { + "count": 53 + }, + "Tatra banka": { + "count": 67 }, "Berliner Sparkasse": { "count": 61 }, "Berliner Volksbank": { - "count": 79 - }, - "Bicentenario": { - "count": 183 - }, - "Bradesco": { - "count": 236 - }, - "CIBC": { - "count": 306 - }, - "CIC": { - "count": 393 - }, - "Caisse d'Épargne": { - "count": 801 - }, - "Caixa": { - "count": 99 - }, - "Caixa Econômica Federal": { - "count": 131 - }, - "Caixa Geral de Depósitos": { - "count": 119 - }, - "Caja Círculo": { - "count": 65 - }, - "Caja Duero": { - "count": 58 - }, - "Caja Madrid": { - "count": 115 - }, - "Caja Rural": { - "count": 87 - }, - "Caja de Burgos": { - "count": 58 - }, - "Cajamar": { - "count": 61 - }, - "Cajero Automatico Bancared": { - "count": 147 - }, - "Canara Bank": { - "count": 82 - }, - "Cassa di Risparmio del Veneto": { - "count": 58 - }, - "Chase": { - "count": 623 - }, - "China Bank": { - "count": 59 - }, - "Chinabank": { - "count": 54 - }, - "Citibank": { - "count": 249 - }, - "Citizens Bank": { - "count": 107 - }, - "CityCommerce Bank": { - "count": 53 - }, - "Commercial Bank of Ceylon PLC": { - "count": 80 - }, - "Commerzbank": { - "count": 799 - }, - "Commonwealth Bank": { - "count": 218 - }, - "Credit Agricole": { - "count": 143 - }, - "Credit Suisse": { - "count": 69 - }, - "Crédit Agricole": { - "count": 1160 - }, - "Crédit Mutuel": { - "count": 648 - }, - "Crédit Mutuel de Bretagne": { - "count": 335 - }, - "Crédit du Nord": { - "count": 88 - }, - "Danske Bank": { - "count": 130 - }, - "Davivienda": { - "count": 83 - }, - "De Venezuela": { - "count": 127 - }, - "Del Tesoro": { - "count": 94 - }, - "Deutsche Bank": { - "count": 836 - }, - "Dresdner Bank": { "count": 77 }, - "Ecobank": { - "count": 54 + "Wells Fargo": { + "count": 822 }, - "Erste Bank": { - "count": 178 - }, - "Eurobank": { - "count": 89 - }, - "FNB": { - "count": 90 - }, - "Fifth Third Bank": { - "count": 66 - }, - "First National Bank": { - "count": 76 - }, - "GE Money Bank": { - "count": 72 - }, - "HDFC Bank": { - "count": 85 - }, - "HSBC": { - "count": 1039 - }, - "Halifax": { - "count": 214 - }, - "Hamburger Sparkasse": { - "count": 157 - }, - "Handelsbanken": { - "count": 178 - }, - "HypoVereinsbank": { - "count": 570 - }, - "ICICI Bank": { - "count": 78 - }, - "ING": { - "count": 468 - }, - "ING Bank Śląski": { - "count": 64 - }, - "Ibercaja": { - "count": 58 - }, - "Intesa San Paolo": { - "count": 60 - }, - "Itaú": { - "count": 278 - }, - "KBC": { - "count": 194 - }, - "Key Bank": { - "count": 139 - }, - "Komerční banka": { - "count": 136 - }, - "Kreissparkasse": { - "count": 579 - }, - "Kreissparkasse Köln": { - "count": 67 - }, - "LCL": { - "count": 508 - }, - "La Banque Postale": { - "count": 61 - }, - "La Caixa": { - "count": 513 - }, - "Landbank": { - "count": 79 - }, - "Lloyds Bank": { - "count": 541 - }, - "M&T Bank": { - "count": 80 - }, - "Maybank": { - "count": 81 - }, - "Mercantil": { - "count": 220 - }, - "Metrobank": { - "count": 253 - }, - "Millenium Bank": { - "count": 60 - }, - "Millennium Bank": { - "count": 415 - }, - "Monte dei Paschi di Siena": { - "count": 126 - }, - "NAB": { - "count": 123 - }, - "NatWest": { - "count": 606 - }, - "National Bank": { - "count": 87 - }, - "Nationwide": { - "count": 193 - }, - "Nedbank": { - "count": 74 - }, - "Nordea": { - "count": 312 - }, - "OLB": { - "count": 52 - }, - "OTP": { - "count": 184 - }, - "Oberbank": { - "count": 87 - }, - "Oldenburgische Landesbank": { - "count": 56 - }, - "Osuuspankki": { - "count": 74 - }, - "PKO BP": { - "count": 239 - }, - "PNB": { - "count": 106 - }, - "PNC Bank": { - "count": 215 - }, - "PSBank": { - "count": 57 - }, - "Pekao SA": { - "count": 53 - }, - "Peoples Bank": { - "count": 55 - }, - "Postbank": { - "count": 433 - }, - "RBC": { - "count": 220 - }, - "RBS": { - "count": 136 - }, - "RCBC": { - "count": 117 - }, - "Rabobank": { - "count": 619 - }, - "Raiffeisenbank": { - "count": 2028 - }, - "Regions Bank": { - "count": 59 - }, - "Royal Bank": { - "count": 65 - }, - "Royal Bank of Scotland": { - "count": 108 - }, - "SEB": { - "count": 129 - }, - "Santander": { - "count": 1181 - }, - "Santander Consumer Bank": { - "count": 81 - }, - "Santander Totta": { - "count": 63 - }, - "Sberbank": { - "count": 61 - }, - "Scotiabank": { - "count": 379 - }, - "Security Bank": { - "count": 71 - }, - "Slovenská sporiteľňa": { - "count": 127 + "Credit Suisse": { + "count": 70 }, "Société Générale": { - "count": 592 + "count": 615 }, - "Sparda-Bank": { - "count": 313 - }, - "Sparkasse": { - "count": 4521 + "Osuuspankki": { + "count": 73 }, "Sparkasse Aachen": { - "count": 58 + "count": 56 }, - "Sparkasse KölnBonn": { + "Hamburger Sparkasse": { + "count": 155 + }, + "Cassa di Risparmio del Veneto": { + "count": 66 + }, + "BNP Paribas": { + "count": 598 + }, + "Banque Populaire": { + "count": 411 + }, + "BNP Paribas Fortis": { + "count": 208 + }, + "Banco Popular": { + "count": 272 + }, + "Bancaja": { "count": 55 }, + "Banesto": { + "count": 207 + }, + "La Caixa": { + "count": 553 + }, + "Santander Consumer Bank": { + "count": 83 + }, + "BRD": { + "count": 188 + }, + "BCR": { + "count": 140 + }, + "Banca Transilvania": { + "count": 139 + }, + "BW-Bank": { + "count": 97 + }, + "Komerční banka": { + "count": 133 + }, + "Banco Pastor": { + "count": 64 + }, "Stadtsparkasse": { "count": 86 }, - "Standard Bank": { - "count": 100 - }, - "State Bank of India": { - "count": 132 - }, - "SunTrust": { - "count": 63 - }, - "SunTrust Bank": { - "count": 66 - }, - "Swedbank": { - "count": 219 - }, - "TD Bank": { - "count": 178 - }, - "TD Canada Trust": { - "count": 421 - }, - "TSB": { - "count": 51 - }, - "Targobank": { - "count": 167 - }, - "Tatra banka": { - "count": 65 - }, - "UBS": { - "count": 129 - }, - "UCPB": { - "count": 87 - }, - "US Bank": { - "count": 214 - }, "Ulster Bank": { - "count": 85 + "count": 88 }, - "UniCredit Bank": { - "count": 376 + "Sberbank": { + "count": 59 + }, + "CIC": { + "count": 411 + }, + "Bancpost": { + "count": 53 + }, + "Caja Madrid": { + "count": 114 + }, + "Maybank": { + "count": 88 + }, + "中国银行": { + "count": 70 }, "Unicredit Banca": { + "count": 233 + }, + "Crédit Mutuel": { + "count": 666 + }, + "BBVA": { + "count": 614 + }, + "Intesa San Paolo": { + "count": 62 + }, + "TD Bank": { + "count": 184 + }, + "Belfius": { + "count": 227 + }, + "Bank of America": { + "count": 877 + }, + "RBC": { "count": 224 }, - "Unicaja": { - "count": 74 + "Alpha Bank": { + "count": 103 + }, + "Сбербанк": { + "count": 4703 + }, + "Россельхозбанк": { + "count": 192 + }, + "Crédit du Nord": { + "count": 91 + }, + "BancoEstado": { + "count": 79 + }, + "Millennium Bank": { + "count": 415 + }, + "State Bank of India": { + "count": 141 + }, + "Беларусбанк": { + "count": 233 + }, + "ING Bank Śląski": { + "count": 65 + }, + "Caixa Geral de Depósitos": { + "count": 124 + }, + "Kreissparkasse Köln": { + "count": 67 + }, + "Banco BCI": { + "count": 51 + }, + "Banco de Chile": { + "count": 96 + }, + "ВТБ24": { + "count": 316 + }, + "UBS": { + "count": 131 + }, + "PKO BP": { + "count": 249 + }, + "Chinabank": { + "count": 54 + }, + "PSBank": { + "count": 57 }, "Union Bank": { - "count": 110 + "count": 118 }, - "VR-Bank": { - "count": 421 + "China Bank": { + "count": 63 }, - "Volksbank": { - "count": 2573 + "RCBC": { + "count": 122 }, - "VÚB": { + "Unicaja": { + "count": 78 + }, + "BBK": { + "count": 77 + }, + "Ibercaja": { + "count": 66 + }, + "RBS": { + "count": 140 + }, + "Commercial Bank of Ceylon PLC": { + "count": 79 + }, + "Bank of Ireland": { "count": 108 }, + "BNL": { + "count": 80 + }, + "Banco Santander": { + "count": 106 + }, + "Banco Itaú": { + "count": 94 + }, + "AIB": { + "count": 70 + }, + "BZ WBK": { + "count": 72 + }, + "Banco do Brasil": { + "count": 494 + }, + "Caixa Econômica Federal": { + "count": 155 + }, + "Fifth Third Bank": { + "count": 71 + }, + "Banca Popolare di Vicenza": { + "count": 77 + }, "Wachovia": { - "count": 61 - }, - "Wells Fargo": { - "count": 781 - }, - "Western Union": { - "count": 84 - }, - "Westpac": { - "count": 194 - }, - "Yorkshire Bank": { "count": 60 }, - "ČSOB": { - "count": 157 + "OLB": { + "count": 51 }, - "Česká spořitelna": { - "count": 207 + "みずほ銀行": { + "count": 73 + }, + "BES": { + "count": 69 + }, + "ICICI Bank": { + "count": 88 + }, + "HDFC Bank": { + "count": 89 + }, + "La Banque Postale": { + "count": 63 + }, + "Pekao SA": { + "count": 53 + }, + "Oberbank": { + "count": 88 + }, + "Bradesco": { + "count": 272 + }, + "Oldenburgische Landesbank": { + "count": 55 + }, + "Scotia Bank": { + "count": 52 + }, + "Bendigo Bank": { + "count": 89 + }, + "Argenta": { + "count": 85 + }, + "AXA": { + "count": 68 + }, + "Axis Bank": { + "count": 58 + }, + "Banco Nación": { + "count": 61 + }, + "GE Money Bank": { + "count": 71 }, "Альфа-Банк": { - "count": 183 + "count": 182 + }, + "Белагропромбанк": { + "count": 67 + }, + "Caja Círculo": { + "count": 64 + }, + "Eurobank": { + "count": 91 + }, + "Banca Intesa": { + "count": 55 + }, + "Canara Bank": { + "count": 86 + }, + "Cajamar": { + "count": 68 + }, + "Banamex": { + "count": 138 + }, + "Crédit Mutuel de Bretagne": { + "count": 335 + }, + "Davivienda": { + "count": 81 + }, + "Bank Spółdzielczy": { + "count": 148 + }, + "Credit Agricole": { + "count": 151 + }, + "Bankinter": { + "count": 55 + }, + "Banque Nationale": { + "count": 62 + }, + "Bank of the West": { + "count": 91 + }, + "Key Bank": { + "count": 144 + }, + "Western Union": { + "count": 86 + }, + "Citizens Bank": { + "count": 110 + }, + "ПриватБанк": { + "count": 492 + }, + "Security Bank": { + "count": 72 + }, + "Ecobank": { + "count": 63 + }, + "Millenium Bank": { + "count": 61 + }, + "Bankia": { + "count": 127 + }, + "三菱東京UFJ銀行": { + "count": 159 + }, + "Caixa": { + "count": 109 + }, + "Banco de Costa Rica": { + "count": 62 + }, + "SunTrust Bank": { + "count": 69 + }, + "Itaú": { + "count": 313 + }, + "PBZ": { + "count": 52 + }, + "Bancolombia": { + "count": 87 + }, + "Райффайзен Банк Аваль": { + "count": 62 + }, + "Bancomer": { + "count": 102 + }, + "Banorte": { + "count": 74 + }, + "Alior Bank": { + "count": 76 + }, + "BOC": { + "count": 51 }, "Банк Москвы": { "count": 116 }, - "Белагропромбанк": { - "count": 66 - }, - "Беларусбанк": { - "count": 223 - }, "ВТБ": { - "count": 54 - }, - "ВТБ24": { - "count": 298 - }, - "Возрождение": { - "count": 56 - }, - "Газпромбанк": { - "count": 93 - }, - "Ощадбанк": { - "count": 292 - }, - "ПриватБанк": { - "count": 480 - }, - "Промсвязьбанк": { - "count": 86 - }, - "Райффайзен Банк Аваль": { "count": 57 }, + "Caja Duero": { + "count": 58 + }, + "Regions Bank": { + "count": 61 + }, "Росбанк": { - "count": 172 + "count": 177 }, - "Россельхозбанк": { - "count": 181 + "Banco Estado": { + "count": 70 }, - "Сбербанк": { - "count": 4579 + "BCI": { + "count": 63 }, - "Совкомбанк": { - "count": 51 + "SunTrust": { + "count": 64 }, - "УкрСиббанк": { - "count": 125 - }, - "Уралсиб": { - "count": 83 - }, - "ლიბერთი ბანკი": { - "count": 55, - "tags": { - "name:en": "Liberty Bank" - } - }, - "みずほ銀行": { - "count": 68 - }, - "りそな銀行": { - "count": 227, - "tags": { - "name:en": "Mizuho Bank" - } - }, - "三井住友銀行": { - "count": 122 - }, - "三菱東京UFJ銀行": { - "count": 149 - }, - "中国银行": { - "count": 65 - }, - "광주은행": { - "count": 55, - "tags": { - "name:en": "Gwangju Bank" - } - }, - "국민은행": { - "count": 167, - "tags": { - "name:en": "Gungmin Bank" - } - }, - "농협": { - "count": 51 + "PNC Bank": { + "count": 232 }, "신한은행": { "count": 218, @@ -109306,3775 +114359,2481 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," } }, "우리은행": { - "count": 293, + "count": 292, "tags": { "name:en": "Uri Bank" } }, + "국민은행": { + "count": 166, + "tags": { + "name:en": "Gungmin Bank" + } + }, "중소기업은행": { - "count": 53, + "count": 52, "tags": { "name:en": "Industrial Bank of Korea" } }, + "광주은행": { + "count": 53, + "tags": { + "name:en": "Gwangju Bank" + } + }, + "Газпромбанк": { + "count": 99 + }, + "M&T Bank": { + "count": 85 + }, + "Caja de Burgos": { + "count": 52 + }, + "Santander Totta": { + "count": 63 + }, + "УкрСиббанк": { + "count": 128 + }, + "Ощадбанк": { + "count": 313 + }, + "Уралсиб": { + "count": 84 + }, + "りそな銀行": { + "count": 227, + "tags": { + "name:en": "Mizuho Bank" + } + }, + "Cajero Automatico Bancared": { + "count": 145 + }, + "Промсвязьбанк": { + "count": 89 + }, + "三井住友銀行": { + "count": 126 + }, + "Banco Provincia": { + "count": 65 + }, + "BB&T": { + "count": 136 + }, + "Возрождение": { + "count": 57 + }, + "Capital One": { + "count": 52 + }, + "Bank Mandiri": { + "count": 59 + }, + "Banco de la Nación": { + "count": 93 + }, + "Banco G&T Continental": { + "count": 62 + }, + "Peoples Bank": { + "count": 58 + }, + "Совкомбанк": { + "count": 52 + }, + "Provincial": { + "count": 53 + }, + "Banco de Desarrollo Banrural": { + "count": 73 + }, + "Banco Bradesco": { + "count": 56 + }, + "Bicentenario": { + "count": 182 + }, + "ლიბერთი ბანკი": { + "count": 54, + "tags": { + "name:en": "Liberty Bank" + } + }, + "Banesco": { + "count": 106 + }, + "Mercantil": { + "count": 76 + }, + "Del Tesoro": { + "count": 91 + }, "하나은행": { - "count": 78 + "count": 77 + }, + "CityCommerce Bank": { + "count": 53 + }, + "De Venezuela": { + "count": 118 + } + }, + "car_rental": { + "Europcar": { + "count": 287 + }, + "Budget": { + "count": 85 + }, + "Sixt": { + "count": 151 + }, + "Avis": { + "count": 276 + }, + "Hertz": { + "count": 286 + }, + "Enterprise": { + "count": 184 + }, + "stadtmobil CarSharing-Station": { + "count": 149 + } + }, + "pharmacy": { + "Rowlands Pharmacy": { + "count": 69 + }, + "Boots": { + "count": 819 + }, + "Marien-Apotheke": { + "count": 314 + }, + "Mercury Drug": { + "count": 412 + }, + "Löwen-Apotheke": { + "count": 354 + }, + "Superdrug": { + "count": 109 + }, + "Sonnen-Apotheke": { + "count": 306 + }, + "Rathaus-Apotheke": { + "count": 131 + }, + "Engel-Apotheke": { + "count": 123 + }, + "Hirsch-Apotheke": { + "count": 82 + }, + "Stern-Apotheke": { + "count": 66 + }, + "Lloyds Pharmacy": { + "count": 292 + }, + "Rosen-Apotheke": { + "count": 207 + }, + "Stadt-Apotheke": { + "count": 299 + }, + "Markt-Apotheke": { + "count": 162 + }, + "Аптека": { + "count": 1938 + }, + "Pharmasave": { + "count": 63 + }, + "Brunnen-Apotheke": { + "count": 53 + }, + "Shoppers Drug Mart": { + "count": 417 + }, + "Apotheke am Markt": { + "count": 61 + }, + "Alte Apotheke": { + "count": 87 + }, + "Neue Apotheke": { + "count": 110 + }, + "Gintarinė vaistinė": { + "count": 101 + }, + "Rats-Apotheke": { + "count": 83 + }, + "Adler Apotheke": { + "count": 307 + }, + "Pharmacie Centrale": { + "count": 63 + }, + "Walgreens": { + "count": 1521 + }, + "Rite Aid": { + "count": 700 + }, + "Apotheke": { + "count": 163 + }, + "Linden-Apotheke": { + "count": 209 + }, + "Bahnhof-Apotheke": { + "count": 65 + }, + "Burg-Apotheke": { + "count": 56 + }, + "Jean Coutu": { + "count": 59 + }, + "Pharmaprix": { + "count": 58 + }, + "Farmacias Ahumada": { + "count": 102 + }, + "Farmacia Comunale": { + "count": 108 + }, + "Farmacias Cruz Verde": { + "count": 84 + }, + "Cruz Verde": { + "count": 97 + }, + "Hubertus Apotheke": { + "count": 52 + }, + "CVS": { + "count": 1448 + }, + "Farmacias SalcoBrand": { + "count": 132 + }, + "Фармация": { + "count": 118 + }, + "Bären-Apotheke": { + "count": 72 + }, + "Clicks": { + "count": 109 + }, + "セイジョー": { + "count": 51 + }, + "マツモトキヨシ": { + "count": 111 + }, + "Вита": { + "count": 107 + }, + "Радуга": { + "count": 70 + }, + "サンドラッグ": { + "count": 57 + }, + "Apteka": { + "count": 352 + }, + "Первая помощь": { + "count": 74 + }, + "Ригла": { + "count": 111 + }, + "Имплозия": { + "count": 63 + }, + "Kinney Drugs": { + "count": 68 + }, + "Классика": { + "count": 66 + }, + "Ljekarna": { + "count": 54 + }, + "SalcoBrand": { + "count": 90 + }, + "Аптека 36,6": { + "count": 220 + }, + "Фармакор": { + "count": 74 + }, + "スギ薬局": { + "count": 82 + }, + "Аптечный пункт": { + "count": 140 + }, + "Невис": { + "count": 58 + }, + "トモズ (Tomod's)": { + "count": 83 + }, + "Eurovaistinė": { + "count": 62 + }, + "Farmacity": { + "count": 65 + }, + "аптека": { + "count": 100 + }, + "The Generics Pharmacy": { + "count": 86 + }, + "Farmatodo": { + "count": 124 + }, + "Фармленд": { + "count": 80 + }, + "ドラッグてらしま (Drug Terashima)": { + "count": 96 + }, + "ავერსი (Aversi)": { + "count": 62 + }, + "Farmahorro": { + "count": 58 } }, "cafe": { - "Cafe Amazon": { - "count": 51 - }, - "Cafe Coffee Day": { - "count": 103 - }, - "Cafeteria": { - "count": 69 - }, - "Caffè Nero": { - "count": 159 - }, - "Café Central": { - "count": 58 - }, - "Caribou Coffee": { - "count": 92 - }, - "Coffee Time": { - "count": 94 - }, - "Costa": { - "count": 548 - }, - "Dunkin Donuts": { - "count": 365, - "tags": { - "cuisine": "donut" - } - }, - "Eiscafe": { - "count": 115 - }, - "Eiscafe Venezia": { - "count": 176 - }, - "Eisdiele": { - "count": 64 - }, - "Pret A Manger": { - "count": 115 - }, - "Second Cup": { - "count": 170 - }, - "Segafredo": { - "count": 67 - }, "Starbucks": { - "count": 3837, + "count": 4032, "tags": { "cuisine": "coffee_shop" } }, - "Tchibo": { - "count": 91 + "Cafeteria": { + "count": 77 }, - "Traveler's Coffee": { - "count": 59 + "Costa": { + "count": 579 + }, + "Caffè Nero": { + "count": 165 }, "Кафе": { - "count": 244 + "count": 214 }, - "Кофе Хауз": { - "count": 99 + "Café Central": { + "count": 60 }, - "Столовая": { - "count": 320 + "Second Cup": { + "count": 190 }, - "Шашлычная": { - "count": 51 + "Eisdiele": { + "count": 65 }, - "Шоколадница": { - "count": 124 - }, - "คาเฟ่ อเมซอน": { - "count": 63 - }, - "カフェ・ド・クリエ": { - "count": 68, + "Dunkin Donuts": { + "count": 393, "tags": { - "name:en": "Cafe de CRIE" + "cuisine": "donut" } }, + "Segafredo": { + "count": 66 + }, + "Coffee Time": { + "count": 95 + }, + "Cafe Coffee Day": { + "count": 104 + }, + "Eiscafe Venezia": { + "count": 173 + }, "スターバックス": { - "count": 245, + "count": 248, "tags": { "name:en": "Starbucks" } }, + "Шоколадница": { + "count": 138 + }, + "Pret A Manger": { + "count": 115 + }, + "Столовая": { + "count": 351 + }, "ドトール": { "count": 163, "tags": { "name:en": "DOUTOR" } - } - }, - "car_rental": { - "Avis": { - "count": 263 }, - "Budget": { - "count": 81 - }, - "Enterprise": { - "count": 173 - }, - "Europcar": { - "count": 271 - }, - "Hertz": { - "count": 276 - }, - "Sixt": { - "count": 150 - }, - "stadtmobil CarSharing-Station": { - "count": 162 - } - }, - "fast_food": { - "A&W": { - "count": 255 - }, - "Ali Baba": { - "count": 57 - }, - "Arby's": { - "count": 714 - }, - "Asia Imbiss": { - "count": 103 - }, - "Baskin Robbins": { - "count": 69 - }, - "Boston Market": { - "count": 57 - }, - "Burger King": { - "count": 3449, - "tags": { - "cuisine": "burger" - } - }, - "Carl's Jr.": { - "count": 272, - "tags": { - "cuisine": "burger" - } - }, - "Chick-fil-A": { - "count": 214, - "tags": { - "cuisine": "chicken" - } - }, - "Chipotle": { - "count": 260, - "tags": { - "cuisine": "mexican" - } - }, - "Chowking": { - "count": 138 - }, - "Church's Chicken": { - "count": 86 - }, - "Culver's": { - "count": 427 - }, - "Dairy Queen": { - "count": 722 - }, - "Del Taco": { - "count": 137 - }, - "Domino's Pizza": { - "count": 896, - "tags": { - "cuisine": "pizza" - } - }, - "Döner": { - "count": 221 - }, - "El Pollo Loco": { - "count": 61 - }, - "Fish & Chips": { - "count": 82 - }, - "Five Guys": { - "count": 124 - }, - "Hallo Pizza": { - "count": 76 - }, - "Hardee's": { - "count": 242, - "tags": { - "cuisine": "burger" - } - }, - "Harvey's": { - "count": 83 - }, - "Hesburger": { + "Tchibo": { "count": 97 }, - "Hungry Jacks": { - "count": 163, - "tags": { - "cuisine": "burger" - } - }, - "Imbiss": { - "count": 181 - }, - "In-N-Out Burger": { - "count": 58 - }, - "Istanbul": { - "count": 52 - }, - "Jack in the Box": { - "count": 517, - "tags": { - "cuisine": "burger" - } - }, - "Jamba Juice": { - "count": 60 - }, - "Jimmy John's": { - "count": 119 - }, - "Jollibee": { - "count": 384 - }, - "KFC": { - "count": 2975, - "tags": { - "cuisine": "chicken" - } - }, - "Kebab": { - "count": 167 - }, - "Kochlöffel": { - "count": 69 - }, - "Kotipizza": { - "count": 75 - }, - "Little Caesars": { - "count": 61 - }, - "Long John Silver's": { - "count": 76 - }, - "McDonald's": { - "count": 11760, - "tags": { - "cuisine": "burger" - } - }, - "Mr. Sub": { - "count": 108 - }, - "Nordsee": { - "count": 159 - }, - "Panda Express": { - "count": 212 - }, - "Papa John's": { - "count": 274, - "tags": { - "cuisine": "pizza" - } - }, - "Pizza Nova": { - "count": 57 - }, - "Pizza Pizza": { - "count": 202 - }, - "Pollo Campero": { - "count": 63 - }, - "Popeye's": { - "count": 147, - "tags": { - "cuisine": "chicken" - } - }, - "Quick": { - "count": 484 - }, - "Quiznos": { - "count": 262, - "tags": { - "cuisine": "sandwich" - } - }, - "Red Rooster": { - "count": 145 - }, - "Sibylla": { - "count": 61 - }, - "Sonic": { - "count": 506, - "tags": { - "cuisine": "burger" - } - }, - "Steers": { - "count": 139 - }, - "Subway": { - "count": 5113, - "tags": { - "cuisine": "sandwich" - } - }, - "Taco Bell": { - "count": 1257 - }, - "Taco John's": { - "count": 64 - }, - "Taco Time": { - "count": 82 - }, - "Telepizza": { - "count": 188 - }, - "Tim Hortons": { - "count": 292 - }, - "Wendy's": { - "count": 1487, - "tags": { - "cuisine": "burger" - } - }, - "Whataburger": { - "count": 147 - }, - "White Castle": { - "count": 74 - }, - "Wimpy": { - "count": 136 - }, - "Макдоналдс": { - "count": 309, - "tags": { - "name:en": "McDonald's" - } - }, - "Робин Сдобин": { - "count": 72 - }, - "Русский Аппетит": { - "count": 65 - }, - "Теремок": { - "count": 63 - }, - "すき家": { - "count": 245, - "tags": { - "name:en": "SUKIYA" - } - }, - "なか卯": { - "count": 52 - }, - "ケンタッキーフライドチキン": { - "count": 158, - "tags": { - "name:en": "KFC", - "cuisine": "chicken" - } - }, - "マクドナルド": { - "count": 632, - "tags": { - "name:en": "McDonald's", - "cuisine": "burger" - } - }, - "モスバーガー": { - "count": 237, - "tags": { - "name:en": "MOS BURGER" - } - }, - "吉野家": { - "count": 172 - }, - "松屋": { - "count": 224, - "tags": { - "name:en": "Matsuya" - } - }, - "肯德基": { - "count": 81 - }, - "麥當勞": { - "count": 51 - } - }, - "fuel": { - "76": { - "count": 282 - }, - "1-2-3": { - "count": 71 - }, - "7-Eleven": { - "count": 422 - }, - "ABC": { - "count": 80 - }, - "Agip": { - "count": 2654 - }, - "ANP": { - "count": 65 - }, - "ARAL": { - "count": 371 - }, - "Avia": { - "count": 871 - }, - "Afriquia": { - "count": 90 - }, - "Agrola": { - "count": 72 - }, - "Api": { - "count": 313 - }, - "Aral": { - "count": 1334 - }, - "Arco": { - "count": 153 - }, - "Auchan": { - "count": 52 - }, - "Avanti": { - "count": 92 - }, - "BFT": { - "count": 88 - }, - "BP": { - "count": 2330 - }, - "BR": { - "count": 81 - }, - "Benzina": { - "count": 70 - }, - "Bliska": { - "count": 149 - }, - "C. C. E. Leclerc": { - "count": 84 - }, - "CAMPSA": { - "count": 630 - }, - "CARREFOUR": { - "count": 75 - }, - "CEPSA": { - "count": 1020 - }, - "COSMO": { - "count": 65 - }, - "Caltex": { - "count": 948 - }, - "Canadian Tire": { - "count": 63 - }, - "Carrefour": { - "count": 196 - }, - "Casey's General Store": { - "count": 162 - }, - "Cenex": { - "count": 106 - }, - "Cepsa": { - "count": 75 - }, - "Chevron": { - "count": 825 - }, - "Circle K": { - "count": 149 - }, - "Citgo": { - "count": 246 - }, - "Coles Express": { - "count": 99 - }, - "Conoco": { - "count": 169 - }, - "Coop": { - "count": 55 - }, - "Copec": { - "count": 496 - }, - "E.Leclerc": { - "count": 250 - }, - "EKO": { - "count": 61 - }, - "ENEOS": { - "count": 644 - }, - "ERG": { - "count": 74 - }, - "Esso": { - "count": 3566 - }, - "Eko": { - "count": 58 - }, - "Elan": { - "count": 114 - }, - "Elf": { - "count": 138 - }, - "Eneos": { - "count": 97 - }, - "Engen": { - "count": 224 - }, - "Eni": { - "count": 199 - }, - "Erg": { - "count": 609 - }, - "Esso Express": { - "count": 81 - }, - "Exxon": { - "count": 435 - }, - "Flying V": { - "count": 130 - }, - "Freie Tankstelle": { - "count": 210 - }, - "GALP": { - "count": 582 - }, - "Gulf": { - "count": 184 - }, - "HEM": { - "count": 216 - }, - "HP": { - "count": 59 - }, - "Hess": { - "count": 110 - }, - "Holiday": { - "count": 96 - }, - "Husky": { - "count": 115 - }, - "IDEMITSU": { - "count": 79 - }, - "IES": { - "count": 62 - }, - "INA": { - "count": 118 - }, - "IP": { - "count": 830 - }, - "Indian Oil": { - "count": 134 - }, - "Indipend.": { - "count": 178 - }, - "Intermarché": { - "count": 417 - }, - "Ipiranga": { - "count": 79 - }, - "Irving": { - "count": 79 - }, - "JET": { - "count": 177 - }, - "JOMO": { - "count": 65 - }, - "Jet": { - "count": 439 - }, - "Kum & Go": { - "count": 76 - }, - "Kwik Trip": { - "count": 100 - }, - "LPG": { - "count": 151 - }, - "Lotos": { - "count": 168 - }, - "Lukoil": { - "count": 667 - }, - "MEROIL": { - "count": 80 - }, - "MOL": { - "count": 216 - }, - "Marathon": { - "count": 154 - }, - "Metano": { - "count": 205 - }, - "Migrol": { - "count": 66 - }, - "Mobil": { - "count": 564 - }, - "Mol": { - "count": 58 - }, - "Morrisons": { - "count": 104 - }, - "Neste": { - "count": 197 - }, - "Neste A24": { - "count": 58 - }, - "OIL!": { - "count": 57 - }, - "OK": { - "count": 159 - }, - "OKKO": { - "count": 56 - }, - "OKQ8": { - "count": 186 - }, - "OMV": { - "count": 718 - }, - "Oilibya": { - "count": 65 - }, - "Orlen": { - "count": 541 - }, - "Pemex": { - "count": 357 - }, - "PETRONOR": { - "count": 209 - }, - "PTT": { - "count": 175 - }, - "Pertamina": { - "count": 176 - }, - "Petro-Canada": { - "count": 466 - }, - "Petrobras": { - "count": 256 - }, - "Petrom": { - "count": 253 - }, - "Petron": { - "count": 824 - }, - "Petronas": { - "count": 143 - }, - "Phillips 66": { - "count": 193 - }, - "Phoenix": { - "count": 138 - }, - "Q8": { - "count": 1137 - }, - "QuikTrip": { - "count": 84 - }, - "REPSOL": { - "count": 1610 - }, - "Raiffeisenbank": { - "count": 118 - }, - "Repsol": { - "count": 390 - }, - "Rompetrol": { - "count": 161 - }, - "Shell": { - "count": 7936 - }, - "Sainsbury's": { - "count": 55 - }, - "Sasol": { - "count": 55 - }, - "Sheetz": { - "count": 95 - }, - "Shell Express": { - "count": 133 - }, - "Sinclair": { - "count": 78 - }, - "Slovnaft": { - "count": 217 - }, - "Sokimex": { - "count": 59 - }, - "Speedway": { - "count": 124 - }, - "St1": { - "count": 100 - }, - "Stacja paliw": { - "count": 84 - }, - "Star": { - "count": 316 - }, - "Total": { - "count": 2498 - }, - "Statoil": { - "count": 588 - }, - "Stewart's": { - "count": 62 - }, - "Sunoco": { - "count": 307 - }, - "Super U": { - "count": 122 - }, - "Tamoil": { - "count": 864 - }, - "Tango": { - "count": 119 - }, - "Tankstelle": { - "count": 114 - }, - "Teboil": { - "count": 119 - }, - "Tela": { - "count": 113 - }, - "Terpel": { - "count": 255 - }, - "Tesco": { - "count": 192 - }, - "Texaco": { - "count": 645 - }, - "Tinq": { - "count": 218 - }, - "Topaz": { - "count": 78 - }, - "TotalErg": { - "count": 71 - }, - "Turmöl": { - "count": 57 - }, - "Ultramar": { - "count": 119 - }, - "United": { - "count": 83 - }, - "Valero": { - "count": 328 - }, - "WOG": { - "count": 139 - }, - "Wawa": { - "count": 78 - }, - "Westfalen": { - "count": 97 - }, - "YPF": { - "count": 141 - }, - "Z": { - "count": 76 - }, - "bft": { - "count": 168 - }, - "ÖMV": { - "count": 100 - }, - "АГЗС": { - "count": 471 - }, - "АЗС": { - "count": 1012 - }, - "Башнефть": { - "count": 52 - }, - "Белоруснефть": { - "count": 55 - }, - "Газпромнефть": { - "count": 727 - }, - "Лукойл": { - "count": 1472 - }, - "Макпетрол": { - "count": 110 - }, - "НК Альянс": { - "count": 89 - }, - "ОККО": { - "count": 112 - }, - "ОМВ": { - "count": 57 - }, - "ПТК": { - "count": 82 - }, - "Петрол": { - "count": 82 - }, - "Роснефть": { - "count": 594 - }, - "Славнефть": { - "count": 53 - }, - "Сургутнефтегаз": { - "count": 60 - }, - "ТНК": { - "count": 503 - }, - "Татнефтепродукт": { - "count": 55 - }, - "Татнефть": { - "count": 250 - }, - "บางจาก": { - "count": 60 - }, - "ป ต ท": { - "count": 154 - }, - "ปตท": { - "count": 89 - }, - "コスモ石油 (COSMO)": { - "count": 132 - }, - "出光": { - "count": 205, - "tags": { - "name:en": "IDEMITSU" - } - }, - "昭和シェル (Showa-shell)": { - "count": 93 - } - }, - "pharmacy": { - "Аптека 36,6": { - "count": 220 - }, - "Adler Apotheke": { - "count": 302 - }, - "Alte Apotheke": { - "count": 85 - }, - "Apotheke": { - "count": 167 - }, - "Apotheke am Markt": { - "count": 62 - }, - "Apteka": { - "count": 335 - }, - "Bahnhof-Apotheke": { - "count": 64 - }, - "Boots": { - "count": 809 - }, - "Brunnen-Apotheke": { - "count": 52 - }, - "Burg-Apotheke": { - "count": 56 - }, - "Bären-Apotheke": { - "count": 72 - }, - "CVS": { - "count": 1400 - }, - "Clicks": { - "count": 110 - }, - "Cruz Verde": { - "count": 96 - }, - "Engel-Apotheke": { - "count": 126 - }, - "Eurovaistinė": { - "count": 60 - }, - "Farmacia Comunale": { - "count": 103 - }, - "Farmacias Ahumada": { - "count": 101 - }, - "Farmacias Cruz Verde": { - "count": 84 - }, - "Farmacias SalcoBrand": { - "count": 133 - }, - "Farmacity": { - "count": 62 - }, - "Farmahorro": { - "count": 61 - }, - "Farmatodo": { - "count": 133 - }, - "Gintarinė vaistinė": { - "count": 100 - }, - "Hirsch-Apotheke": { - "count": 80 - }, - "Hubertus Apotheke": { - "count": 103 - }, - "Jean Coutu": { - "count": 56 - }, - "Kinney Drugs": { - "count": 67 - }, - "Linden-Apotheke": { - "count": 210 - }, - "Ljekarna": { - "count": 55 - }, - "Lloyds Pharmacy": { - "count": 286 - }, - "Löwen-Apotheke": { - "count": 354 - }, - "Marien-Apotheke": { - "count": 315 - }, - "Markt-Apotheke": { - "count": 161 - }, - "Mercury Drug": { - "count": 401 - }, - "Neue Apotheke": { - "count": 111 - }, - "Pharmacie Centrale": { - "count": 60 - }, - "Pharmaprix": { - "count": 57 - }, - "Pharmasave": { - "count": 63 - }, - "Rathaus-Apotheke": { - "count": 130 - }, - "Rats-Apotheke": { - "count": 85 - }, - "Rite Aid": { - "count": 659 - }, - "Rosen-Apotheke": { - "count": 208 - }, - "Rowlands Pharmacy": { - "count": 68 - }, - "SalcoBrand": { - "count": 88 - }, - "Shoppers Drug Mart": { - "count": 396 - }, - "Sonnen-Apotheke": { - "count": 306 - }, - "Stadt-Apotheke": { - "count": 300 - }, - "Stern-Apotheke": { - "count": 67 - }, - "Superdrug": { - "count": 108 - }, - "The Generics Pharmacy": { - "count": 82 - }, - "Walgreens": { - "count": 1447 - }, - "Айболит": { - "count": 51 - }, - "Аптека": { - "count": 1879 - }, - "Аптечный пункт": { - "count": 136 - }, - "Вита": { - "count": 107 - }, - "Имплозия": { - "count": 59 - }, - "Классика": { - "count": 66 - }, - "Невис": { - "count": 58 - }, - "Первая помощь": { - "count": 73 - }, - "Радуга": { - "count": 69 - }, - "Ригла": { - "count": 109 - }, - "Фармакор": { - "count": 71 - }, - "Фармация": { - "count": 118 - }, - "Фармленд": { - "count": 80 - }, - "аптека": { - "count": 100 - }, - "ავერსი (Aversi)": { - "count": 63 - }, - "サンドラッグ": { - "count": 52 - }, - "スギ薬局": { - "count": 76 - }, - "トモズ (Tomod's)": { - "count": 82 - }, - "ドラッグてらしま (Drug Terashima)": { - "count": 96 - }, - "マツモトキヨシ": { - "count": 107 - } - }, - "pub": { - "Cross Keys": { - "count": 59 - }, - "Irish Pub": { - "count": 82 - }, - "Kings Arms": { - "count": 68 - }, - "Kings Head": { - "count": 56 - }, - "New Inn": { - "count": 89 - }, - "Prince of Wales": { - "count": 76 - }, - "Red Lion": { - "count": 201 - }, - "Rose & Crown": { - "count": 51 - }, - "Rose and Crown": { - "count": 77 - }, - "Royal Hotel": { - "count": 52 - }, - "Royal Oak": { - "count": 149 - }, - "The Anchor": { - "count": 64 - }, - "The Angel": { - "count": 55 - }, - "The Bell": { - "count": 121 - }, - "The Black Horse": { - "count": 94 - }, - "The Bull": { - "count": 67 - }, - "The Castle": { - "count": 56 - }, - "The Chequers": { - "count": 65 - }, - "The Cross Keys": { - "count": 55 - }, - "The Crown": { - "count": 239 - }, - "The Crown Inn": { - "count": 69 - }, - "The Fox": { - "count": 78 - }, - "The George": { - "count": 109 - }, - "The Green Man": { - "count": 52 - }, - "The Greyhound": { - "count": 97 - }, - "The Kings Arms": { - "count": 59 - }, - "The Kings Head": { - "count": 54 - }, - "The New Inn": { - "count": 105 - }, - "The Plough": { - "count": 173 - }, - "The Prince of Wales": { - "count": 51 - }, - "The Queens Head": { - "count": 51 - }, - "The Railway": { - "count": 100 - }, - "The Red Lion": { - "count": 230 - }, - "The Rising Sun": { - "count": 70 - }, - "The Royal Oak": { - "count": 207 - }, - "The Ship": { - "count": 89 - }, - "The Ship Inn": { - "count": 80 - }, - "The Star": { - "count": 74 - }, - "The Swan": { - "count": 148 - }, - "The Victoria": { - "count": 68 - }, - "The Wheatsheaf": { - "count": 120 - }, - "The White Hart": { - "count": 223 - }, - "The White Horse": { - "count": 201 - }, - "The White Lion": { - "count": 117 - } - }, - "recycling": { - "Altglas": { - "count": 98 - }, - "Déchèterie": { - "count": 244 - }, - "Glas": { - "count": 106 - }, - "Glascontainer": { - "count": 144 - }, - "Recyclinghof": { - "count": 131 - }, - "Wertstoffhof": { - "count": 262 - } - }, - "restaurant": { - "Adler": { - "count": 154 - }, - "Akropolis": { - "count": 149 - }, - "Alte Post": { - "count": 62 - }, - "Applebee's": { - "count": 467 - }, - "Athen": { - "count": 65 - }, - "Bella Italia": { - "count": 125 - }, - "Bob Evans": { - "count": 99 - }, - "Boston Market": { - "count": 57 - }, - "Boston Pizza": { - "count": 148 - }, - "Buffalo Grill": { - "count": 192 - }, - "Buffalo Wild Wings": { - "count": 147 - }, - "Bären": { - "count": 58 - }, - "California Pizza Kitchen": { - "count": 56 - }, - "Chili's": { - "count": 294 - }, - "China Garden": { - "count": 64 - }, - "China Town": { - "count": 70 - }, - "Courtepaille": { - "count": 95 - }, - "Cracker Barrel": { - "count": 162 - }, - "Da Vinci": { - "count": 53 - }, - "Delphi": { - "count": 86 - }, - "Denny's": { - "count": 395 - }, - "Deutsches Haus": { - "count": 88 - }, - "Dionysos": { - "count": 68 - }, - "Dolce Vita": { - "count": 74 - }, - "El Greco": { - "count": 80 - }, - "Flunch": { - "count": 71 - }, - "Frankie & Benny's": { - "count": 58 - }, - "Friendly's": { - "count": 72 - }, - "Gasthaus Adler": { - "count": 51 - }, - "Gasthaus Krone": { - "count": 54 - }, - "Gasthof zur Post": { - "count": 72 - }, - "Golden Corral": { - "count": 91 - }, - "Grüner Baum": { - "count": 116 - }, - "Hard Rock Cafe": { - "count": 66 - }, - "Hellas": { - "count": 54 - }, - "Hippopotamus": { - "count": 91 - }, - "Hirsch": { - "count": 77 - }, - "Hirschen": { - "count": 83 - }, - "Hong Kong": { - "count": 81 - }, - "Hooters": { - "count": 94 - }, - "IHOP": { - "count": 286 - }, - "Kantine": { - "count": 52 - }, - "Kelsey's": { - "count": 56 - }, - "Kirchenwirt": { - "count": 79 - }, - "Kreuz": { - "count": 75 - }, - "Krone": { - "count": 173 - }, - "La Cantina": { - "count": 54 - }, - "La Dolce Vita": { - "count": 68 - }, - "La Perla": { - "count": 66 - }, - "La Piazza": { - "count": 67 - }, - "Lamm": { - "count": 67 - }, - "Linde": { + "Кофе Хауз": { "count": 102 }, - "Lindenhof": { - "count": 82 - }, - "Little Chef": { - "count": 68 - }, - "Longhorn Steakhouse": { - "count": 56 - }, - "Lotus": { - "count": 64 - }, - "Löwen": { - "count": 114 - }, - "Mamma Mia": { - "count": 61 - }, - "Mandarin": { - "count": 64 - }, - "Mang Inasal": { - "count": 81 - }, - "Mensa": { - "count": 87 - }, - "Milano": { - "count": 52 - }, - "Mykonos": { - "count": 59 - }, - "Nando's": { - "count": 219 - }, - "Ochsen": { - "count": 93 - }, - "Olive Garden": { - "count": 241 - }, - "Olympia": { - "count": 78 - }, - "Outback Steakhouse": { - "count": 189 - }, - "Panera Bread": { - "count": 171 - }, - "Panorama": { - "count": 60 - }, - "Peking": { - "count": 54 - }, - "Perkins": { - "count": 96 - }, - "Pizza Express": { - "count": 241 - }, - "Pizza Hut": { - "count": 1038 - }, - "Poseidon": { - "count": 111 - }, - "Prezzo": { - "count": 68 - }, - "Ratskeller": { - "count": 148 - }, - "Red Lobster": { - "count": 205 - }, - "Red Robin": { - "count": 169 - }, - "Rhodos": { - "count": 80 - }, - "Roma": { - "count": 60 - }, - "Ruby Tuesday": { - "count": 137 - }, - "Rössli": { - "count": 68 - }, - "Sakura": { - "count": 69 - }, - "San Marco": { - "count": 66 - }, - "Schwarzer Adler": { - "count": 58 - }, - "Schützenhaus": { - "count": 129 - }, - "Seeblick": { - "count": 51 - }, - "Shanghai": { - "count": 79 - }, - "Shari's": { - "count": 63 - }, - "Sonne": { - "count": 123 - }, - "Sportheim": { - "count": 57 - }, - "Spur": { - "count": 60 - }, - "Sternen": { - "count": 78 - }, - "Swiss Chalet": { - "count": 101 - }, - "TGI Friday's": { - "count": 138 - }, - "Taj Mahal": { - "count": 101 - }, - "Texas Roadhouse": { - "count": 96 - }, - "The Keg": { - "count": 52 - }, - "Traube": { - "count": 65 - }, - "Vapiano": { - "count": 81 - }, - "Village Inn": { - "count": 88 - }, - "Vips": { - "count": 51 - }, - "Waffle House": { - "count": 182 - }, - "Wagamama": { - "count": 58 - }, - "Waldschänke": { - "count": 55 - }, - "Zizzi": { - "count": 62 - }, - "Zum Löwen": { - "count": 82 - }, - "Zur Krone": { - "count": 92 - }, - "Zur Linde": { - "count": 200 - }, - "Zur Post": { - "count": 117 - }, - "Zur Sonne": { - "count": 73 - }, - "Евразия": { + "Caribou Coffee": { "count": 98 }, - "Якитория": { - "count": 74 + "Уют": { + "count": 51 }, - "ガスト": { - "count": 204, + "Шашлычная": { + "count": 57 + }, + "คาเฟ่ อเมซอน": { + "count": 62 + }, + "Traveler's Coffee": { + "count": 60 + }, + "カフェ・ド・クリエ": { + "count": 67, "tags": { - "name:en": "Gusto" + "name:en": "Cafe de CRIE" } }, - "サイゼリヤ": { - "count": 81 - }, - "ジョナサン": { - "count": 56 - }, - "デニーズ": { - "count": 73 - }, - "바다횟집 (Bada Fish Restaurant)": { - "count": 55 + "Cafe Amazon": { + "count": 54 } } }, "shop": { - "alcohol": { - "Alko": { - "count": 141 - }, - "BWS": { - "count": 58 - }, - "Bargain Booze": { - "count": 59 - }, - "Botilleria": { - "count": 75 - }, - "Gall & Gall": { - "count": 514 - }, - "LCBO": { - "count": 214 - }, - "Nicolas": { - "count": 109 - }, - "SAQ": { - "count": 66 - }, - "Systembolaget": { - "count": 199 - }, - "The Beer Store": { - "count": 141 - }, - "Ароматный мир": { - "count": 56 - }, - "Живое пиво": { - "count": 62 - } - }, - "bakery": { - "Anker": { - "count": 65 - }, - "Backwerk": { - "count": 94 - }, - "Boulangerie": { - "count": 232 - }, - "Boulangerie Patisserie": { - "count": 76 - }, - "Bäcker": { - "count": 65 - }, - "Bäckerei": { - "count": 163 - }, - "Bäckerei Schmidt": { - "count": 56 - }, - "Dat Backhus": { - "count": 62 - }, - "Der Beck": { - "count": 97 - }, - "Goeken backen": { - "count": 52 - }, - "Goldilocks": { - "count": 55 - }, - "Greggs": { - "count": 255 - }, - "Hofpfisterei": { - "count": 108 - }, - "Ihle": { - "count": 76 - }, - "K&U": { - "count": 54 - }, - "Kamps": { - "count": 252 - }, - "Oebel": { - "count": 57 - }, - "Panaderia": { - "count": 154 - }, - "Panificio": { - "count": 63 - }, - "Paul": { - "count": 74 - }, - "Piekarnia": { - "count": 52 - }, - "Stadtbäckerei": { - "count": 58 - }, - "Stadtbäckerei Junge": { - "count": 53 - }, - "Steinecke": { - "count": 135 - }, - "Thürmann": { - "count": 57 - }, - "Хлеб": { - "count": 81 - } - }, - "books": { - "Barnes & Noble": { - "count": 239 - }, - "Bruna": { - "count": 55 - }, - "Libro": { - "count": 59 - }, - "Thalia": { - "count": 122 - }, - "Waterstones": { - "count": 85 - }, - "Weltbild": { - "count": 72 - }, - "Книги": { - "count": 110 - } - }, - "car_repair": { - "ATU": { - "count": 257 - }, - "AutoZone": { - "count": 51 - }, - "Carglass": { - "count": 99 - }, - "Euromaster": { - "count": 80 - }, - "Feu Vert": { - "count": 104 - }, - "Firestone": { - "count": 77 - }, - "Jiffy Lube": { - "count": 178 - }, - "Kwik Fit": { - "count": 73 - }, - "Midas": { - "count": 171 - }, - "Norauto": { - "count": 141 - }, - "O'Reilly Auto Parts": { - "count": 62 - }, - "Peugeot": { - "count": 80 - }, - "Pit Stop": { - "count": 55 - }, - "Renault": { - "count": 158 - }, - "Roady": { - "count": 52 - }, - "Speedy": { - "count": 104 - }, - "ÖAMTC": { - "count": 51 - }, - "Автозапчасти": { - "count": 172 - }, - "Автосервис": { - "count": 314 - }, - "СТО": { - "count": 338 - }, - "Шиномонтаж": { - "count": 995 - } - }, - "car": { - "Audi": { - "count": 101 - }, - "BMW": { - "count": 139 - }, - "Chevrolet": { - "count": 75 - }, - "Citroen": { - "count": 259 - }, - "Fiat": { - "count": 83 - }, - "Ford": { - "count": 216 - }, - "Honda": { - "count": 134 - }, - "Hyundai": { - "count": 146 - }, - "Mazda": { - "count": 96 - }, - "Mercedes-Benz": { - "count": 218 - }, - "Mitsubishi": { - "count": 66 - }, - "Nissan": { - "count": 173 - }, - "Opel": { - "count": 161 - }, - "Peugeot": { - "count": 291 - }, - "Renault": { - "count": 356 - }, - "Skoda": { - "count": 92 - }, - "Suzuki": { - "count": 73 - }, - "Toyota": { - "count": 238 - }, - "Volkswagen": { - "count": 200 - }, - "Volvo": { - "count": 82 - }, - "Автозапчасти": { - "count": 290 - }, - "Автомагазин": { - "count": 64 - }, - "Шиномонтаж": { - "count": 263 - } - }, - "chemist": { - "Bipa": { - "count": 276 - }, - "dm": { - "count": 873 - }, - "Douglas": { - "count": 62 - }, - "Etos": { - "count": 465 - }, - "Ihr Platz": { - "count": 76 - }, - "Kruidvat": { - "count": 114 - }, - "Müller": { - "count": 195 - }, - "Rossmann": { - "count": 1623 - }, - "Schlecker": { - "count": 201 - } - }, - "clothes": { - "AWG": { - "count": 62 - }, - "Ackermans": { - "count": 91 - }, - "Adidas": { - "count": 81 - }, - "Adler": { - "count": 53 - }, - "American Apparel": { - "count": 53 - }, - "Benetton": { - "count": 96 - }, - "Bonita": { - "count": 143 - }, - "C&A": { - "count": 484 - }, - "Calzedonia": { - "count": 56 - }, - "Cecil": { - "count": 51 - }, - "Celio": { - "count": 71 - }, - "Charles Vögele": { - "count": 63 - }, - "Deichmann": { - "count": 61 - }, - "Dorothy Perkins": { - "count": 51 - }, - "Edgars": { - "count": 111 - }, - "Ernsting's family": { - "count": 286 - }, - "Esprit": { - "count": 209 - }, - "Etam": { - "count": 51 - }, - "Gap": { - "count": 74 - }, - "Gerry Weber": { - "count": 68 - }, - "H&M": { - "count": 607 - }, - "Jack & Jones": { - "count": 51 - }, - "Jack Wolfskin": { - "count": 55 - }, - "Jet": { - "count": 62 - }, - "Jules": { - "count": 61 - }, - "KiK": { - "count": 1148 - }, - "Kiabi": { - "count": 139 - }, - "Lacoste": { - "count": 66 - }, - "Levi's": { - "count": 58 - }, - "Lindex": { - "count": 70 - }, - "Mango": { - "count": 115 - }, - "Matalan": { - "count": 83 - }, - "Mexx": { - "count": 65 - }, - "Mr Price": { + "supermarket": { + "Budgens": { "count": 86 }, - "NKD": { - "count": 444 + "Morrisons": { + "count": 408 }, - "New Look": { - "count": 115 + "Interspar": { + "count": 141 }, - "New Yorker": { - "count": 173 + "Merkur": { + "count": 107 }, - "Next": { - "count": 163 + "Sainsbury's": { + "count": 540 }, - "Old Navy": { - "count": 154 + "Lidl": { + "count": 6128 }, - "Orsay": { - "count": 71 + "EDEKA": { + "count": 494 }, - "Peacocks": { - "count": 86 + "Coles": { + "count": 392 }, - "Pep": { - "count": 136 + "Iceland": { + "count": 301 }, - "Pimkie": { - "count": 72 + "Coop": { + "count": 1883 }, - "Primark": { - "count": 87 - }, - "Promod": { - "count": 71 - }, - "River Island": { - "count": 56 - }, - "Ross": { - "count": 77 - }, - "Street One": { - "count": 74 - }, - "TK Maxx": { - "count": 73 - }, - "Takko": { - "count": 476 - }, - "Tally Weijl": { - "count": 67 - }, - "Tommy Hilfiger": { - "count": 65 - }, - "Truworths": { - "count": 64 - }, - "Ulla Popken": { - "count": 59 - }, - "United Colors of Benetton": { - "count": 90 - }, - "Urban Outfitters": { - "count": 61 - }, - "Vero Moda": { - "count": 89 - }, - "Vögele": { - "count": 129 - }, - "Winners": { - "count": 59 + "Tesco": { + "count": 1292 }, "Woolworths": { - "count": 116 + "count": 530 }, - "Zara": { - "count": 199 + "Zielpunkt": { + "count": 236 }, - "Zeeman": { - "count": 108 + "Nahkauf": { + "count": 167 }, - "s.Oliver": { - "count": 53 + "Billa": { + "count": 1415 }, - "Одежда": { - "count": 68 + "Kaufland": { + "count": 989 }, - "洋服の青山": { - "count": 86 - } - }, - "computer": { - "DNS": { + "Plus": { + "count": 125 + }, + "ALDI": { + "count": 5132 + }, + "Checkers": { + "count": 126 + }, + "Tesco Metro": { + "count": 124 + }, + "NP": { + "count": 149 + }, + "Penny": { + "count": 1758 + }, + "Norma": { + "count": 1062 + }, + "Asda": { + "count": 226 + }, + "Netto": { + "count": 4331 + }, + "REWE": { + "count": 1467 + }, + "Rewe": { + "count": 1169 + }, + "Aldi Süd": { + "count": 590 + }, + "Real": { + "count": 248 + }, + "Tesco Express": { + "count": 388 + }, + "King Soopers": { + "count": 70 + }, + "Kiwi": { + "count": 164 + }, + "Edeka": { + "count": 1799 + }, + "Pick n Pay": { + "count": 238 + }, + "ICA": { + "count": 192 + }, + "Tengelmann": { + "count": 190 + }, + "Carrefour": { + "count": 1614 + }, + "Waitrose": { + "count": 258 + }, + "Spar": { + "count": 2063 + }, + "Hofer": { + "count": 439 + }, + "M-Preis": { + "count": 79 + }, + "LIDL": { + "count": 915 + }, + "tegut": { + "count": 209 + }, + "Sainsbury's Local": { + "count": 109 + }, + "E-Center": { + "count": 66 + }, + "Aldi Nord": { + "count": 197 + }, + "nahkauf": { + "count": 81 + }, + "Meijer": { + "count": 73 + }, + "Safeway": { + "count": 398 + }, + "Costco": { + "count": 145 + }, + "Albert": { + "count": 183 + }, + "Jumbo": { + "count": 190 + }, + "Shoprite": { + "count": 239 + }, + "MPreis": { + "count": 52 + }, + "Penny Market": { + "count": 409 + }, + "Tesco Extra": { "count": 119 }, - "PC World": { + "Albert Heijn": { + "count": 464 + }, + "IGA": { + "count": 347 + }, + "Super U": { + "count": 476 + }, + "Metro": { + "count": 256 + }, + "Neukauf": { + "count": 77 + }, + "Migros": { + "count": 442 + }, + "Marktkauf": { + "count": 126 + }, + "Delikatesy Centrum": { + "count": 57 + }, + "C1000": { + "count": 314 + }, + "Hoogvliet": { + "count": 52 + }, + "COOP": { + "count": 192 + }, + "Food Basics": { + "count": 74 + }, + "Casino": { + "count": 259 + }, + "Penny Markt": { + "count": 462 + }, + "Giant": { + "count": 194 + }, + "COOP Jednota": { + "count": 69 + }, + "Rema 1000": { + "count": 364 + }, + "Kaufpark": { + "count": 96 + }, + "ALDI SÜD": { + "count": 114 + }, + "Simply Market": { + "count": 320 + }, + "Konzum": { + "count": 228 + }, + "Carrefour Express": { + "count": 330 + }, + "Eurospar": { + "count": 265 + }, + "Mercator": { + "count": 123 + }, + "Mercadona": { + "count": 734 + }, + "Famila": { + "count": 129 + }, + "Hemköp": { + "count": 83 + }, + "real,-": { + "count": 80 + }, + "Markant": { + "count": 87 + }, + "Volg": { + "count": 128 + }, + "Leader Price": { + "count": 257 + }, + "Treff 3000": { + "count": 95 + }, + "SuperBrugsen": { + "count": 67 + }, + "Kaiser's": { + "count": 253 + }, + "K+K": { + "count": 104 + }, + "Unimarkt": { + "count": 81 + }, + "Sobeys": { + "count": 120 + }, + "S-Market": { + "count": 107 + }, + "Combi": { + "count": 55 + }, + "Denner": { + "count": 267 + }, + "Konsum": { + "count": 134 + }, + "Franprix": { + "count": 308 + }, + "Monoprix": { + "count": 195 + }, + "Diska": { + "count": 68 + }, + "PENNY": { + "count": 79 + }, + "Dia": { + "count": 798 + }, + "Giant Eagle": { + "count": 82 + }, + "NORMA": { + "count": 115 + }, + "AD Delhaize": { + "count": 62 + }, + "Auchan": { + "count": 147 + }, + "Consum": { + "count": 125 + }, + "Carrefour Market": { + "count": 80 + }, + "Carrefour City": { + "count": 117 + }, + "Pam": { + "count": 54 + }, + "Despar": { + "count": 147 + }, + "Eroski": { + "count": 204 + }, + "Costcutter": { + "count": 61 + }, + "Maxi": { + "count": 103 + }, + "Colruyt": { + "count": 181 + }, + "The Co-operative": { + "count": 64 + }, + "sky": { + "count": 101 + }, + "Intermarché": { + "count": 1183 + }, + "Delhaize": { + "count": 207 + }, + "CBA": { + "count": 165 + }, + "Shopi": { + "count": 57 + }, + "Walmart": { + "count": 611 + }, + "Kroger": { + "count": 298 + }, + "Albertsons": { + "count": 236 + }, + "Trader Joe's": { + "count": 190 + }, + "Feneberg": { "count": 58 + }, + "dm": { + "count": 108 + }, + "Kvickly": { + "count": 54 + }, + "Makro": { + "count": 137 + }, + "Nah & Frisch": { + "count": 72 + }, + "Champion": { + "count": 59 + }, + "Fakta": { + "count": 227 + }, + "Магнит": { + "count": 1697 + }, + "Caprabo": { + "count": 101 + }, + "Famiglia Cooperativa": { + "count": 64 + }, + "Народная 7Я семьЯ": { + "count": 150 + }, + "Esselunga": { + "count": 87 + }, + "Maxima": { + "count": 103 + }, + "Petit Casino": { + "count": 104 + }, + "Wasgau": { + "count": 60 + }, + "Pingo Doce": { + "count": 250 + }, + "Match": { + "count": 142 + }, + "Profi": { + "count": 58 + }, + "Lider": { + "count": 64 + }, + "Unimarc": { + "count": 174 + }, + "Co-operative Food": { + "count": 51 + }, + "Santa Isabel": { + "count": 128 + }, + "Седьмой континент": { + "count": 79 + }, + "HIT": { + "count": 61 + }, + "Rimi": { + "count": 104 + }, + "Conad": { + "count": 302 + }, + "Фуршет": { + "count": 74 + }, + "Willys": { + "count": 55 + }, + "Farmfoods": { + "count": 62 + }, + "Фора": { + "count": 52 + }, + "Dunnes Stores": { + "count": 72 + }, + "Сільпо": { + "count": 119 + }, + "マルエツ": { + "count": 59 + }, + "Piggly Wiggly": { + "count": 52 + }, + "Crai": { + "count": 52 + }, + "Biedronka": { + "count": 1290 + }, + "El Árbol": { + "count": 72 + }, + "Centre Commercial E. Leclerc": { + "count": 553 + }, + "Foodland": { + "count": 98 + }, + "Super Brugsen": { + "count": 64 + }, + "Дикси": { + "count": 610 + }, + "Пятёрочка": { + "count": 1293 + }, + "Publix": { + "count": 321 + }, + "Whole Foods": { + "count": 196 + }, + "Føtex": { + "count": 66 + }, + "coop": { + "count": 74 + }, + "Fressnapf": { + "count": 64 + }, + "Coop Konsum": { + "count": 79 + }, + "Carrefour Contact": { + "count": 77 + }, + "SPAR": { + "count": 280 + }, + "No Frills": { + "count": 102 + }, + "The Co-operative Food": { + "count": 120 + }, + "Plodine": { + "count": 51 + }, + "ADEG": { + "count": 63 + }, + "Minipreço": { + "count": 103 + }, + "Eurospin": { + "count": 153 + }, + "Семья": { + "count": 62 + }, + "Евроопт": { + "count": 58 + }, + "Centra": { + "count": 51 + }, + "Квартал": { + "count": 88 + }, + "New World": { + "count": 65 + }, + "Countdown": { + "count": 92 + }, + "Reliance Fresh": { + "count": 62 + }, + "Stokrotka": { + "count": 98 + }, + "Coop Jednota": { + "count": 73 + }, + "Fred Meyer": { + "count": 62 + }, + "Irma": { + "count": 59 + }, + "Continente": { + "count": 73 + }, + "Price Chopper": { + "count": 98 + }, + "Wegmans": { + "count": 53 + }, + "Game": { + "count": 53 + }, + "Soriana": { + "count": 92 + }, + "Alimerka": { + "count": 61 + }, + "Piotr i Paweł": { + "count": 52 + }, + "Перекресток": { + "count": 309 + }, + "Maxima X": { + "count": 113 + }, + "Карусель": { + "count": 55 + }, + "Tesco Lotus": { + "count": 69 + }, + "Condis": { + "count": 64 + }, + "Sam's Club": { + "count": 131 + }, + "Копейка": { + "count": 91 + }, + "Géant Casino": { + "count": 54 + }, + "ASDA": { + "count": 177 + }, + "Intermarche": { + "count": 111 + }, + "Stop & Shop": { + "count": 56 + }, + "Food Lion": { + "count": 192 + }, + "Harris Teeter": { + "count": 88 + }, + "H-E-B": { + "count": 122 + }, + "Foodworks": { + "count": 59 + }, + "Polo Market": { + "count": 84 + }, + "西友 (SEIYU)": { + "count": 58 + }, + "Полушка": { + "count": 135 + }, + "Extra": { + "count": 76 + }, + "Lewiatan": { + "count": 91 + }, + "АТБ": { + "count": 305 + }, + "Społem": { + "count": 55 + }, + "Bodega Aurrera": { + "count": 78 + }, + "Мария-Ра": { + "count": 95 + }, + "Магнолия": { + "count": 71 + }, + "Магазин": { + "count": 113 + }, + "Монетка": { + "count": 170 + }, + "Hy-Vee": { + "count": 72 + }, + "Walmart Supercenter": { + "count": 112 + }, + "Hannaford": { + "count": 55 + }, + "業務スーパー": { + "count": 55 + }, + "Norfa XL": { + "count": 53 + }, + "ヨークマート (YorkMart)": { + "count": 64 + }, + "Leclerc Drive": { + "count": 75 + } + }, + "electronics": { + "Media Markt": { + "count": 277 + }, + "Maplin": { + "count": 63 + }, + "Best Buy": { + "count": 325 + }, + "Future Shop": { + "count": 69 + }, + "Saturn": { + "count": 130 + }, + "Currys": { + "count": 81 + }, + "Radio Shack": { + "count": 249 + }, + "Comet": { + "count": 52 + }, + "Euronics": { + "count": 112 + }, + "Expert": { + "count": 119 + }, + "Эльдорадо": { + "count": 180 + }, + "Darty": { + "count": 72 + }, + "М.Видео": { + "count": 75 } }, "convenience": { - "24 часа": { - "count": 56 - }, - "7-Eleven": { - "count": 3898 - }, - "8 à Huit": { - "count": 57 - }, - "ABC": { - "count": 138 - }, - "Alepa": { - "count": 63 - }, - "Alfamart": { - "count": 74 - }, - "Almacen": { - "count": 201 - }, - "BP": { - "count": 157 - }, - "Biedronka": { - "count": 67 - }, - "Boutique": { - "count": 59 - }, - "CBA": { - "count": 122 - }, - "COOP": { - "count": 122 - }, - "COOP Jednota": { - "count": 160 - }, - "Carrefour City": { - "count": 54 - }, - "Carrefour Express": { - "count": 73 - }, - "Casey's General Store": { - "count": 80 - }, - "Casino": { - "count": 85 - }, - "Centra": { - "count": 112 - }, - "Central Convenience Store": { - "count": 52 - }, - "Chevron": { - "count": 57 - }, - "Circle K": { - "count": 269 - }, - "Citgo": { - "count": 63 - }, - "Coop": { - "count": 505 - }, - "Coop Jednota": { - "count": 58 - }, - "Costcutter": { - "count": 272 - }, - "Cumberland Farms": { - "count": 62 - }, - "Delikatesy": { - "count": 77 - }, - "Dollar General": { - "count": 101 - }, - "Dorfladen": { - "count": 76 - }, - "Epicerie": { - "count": 64 - }, - "Esso": { - "count": 64 - }, - "FamilyMart": { - "count": 489 - }, - "Food Mart": { - "count": 88 - }, - "Four Square": { - "count": 51 - }, - "Franprix": { - "count": 64 - }, - "Groszek": { - "count": 57 - }, - "Hasty Market": { - "count": 53 - }, - "Indomaret": { - "count": 126 - }, - "Jednota": { - "count": 56 - }, - "K-Market": { - "count": 57 - }, - "Kiosk": { - "count": 57 - }, - "Konzum": { - "count": 164 - }, - "Kum & Go": { - "count": 55 - }, - "Kwik Trip": { - "count": 69 - }, - "LAWSON": { - "count": 397 - }, - "Lewiatan": { - "count": 111 - }, - "Londis": { - "count": 341 - }, - "Mac's": { - "count": 147 - }, - "Mace": { - "count": 111 - }, - "McColl's": { - "count": 97 - }, - "Mercator": { - "count": 59 - }, - "Mini Market": { - "count": 190 - }, - "Mini Stop": { - "count": 210 - }, - "Mobil": { - "count": 63 - }, - "Nisa": { - "count": 52 - }, - "Nisa Local": { - "count": 71 - }, - "Oxxo": { - "count": 614 - }, - "One Stop": { - "count": 142 - }, - "Petit Casino": { - "count": 227 - }, - "Picard": { - "count": 53 - }, - "Potraviny": { - "count": 243 - }, - "Premier": { - "count": 123 - }, - "Proxi": { - "count": 114 - }, - "QuikTrip": { - "count": 59 - }, - "SPAR": { - "count": 185 - }, - "Sainsbury's Local": { - "count": 96 - }, - "Sale": { - "count": 80 - }, - "Select": { - "count": 58 - }, "Shell": { - "count": 241 - }, - "Siwa": { - "count": 212 - }, - "Sklep spożywczy": { - "count": 235 + "count": 251 }, "Spar": { - "count": 888 + "count": 913 }, - "Społem": { - "count": 84 - }, - "Spożywczy": { - "count": 67 - }, - "Statoil": { - "count": 69 - }, - "Stewart's": { - "count": 254 - }, - "Stores": { - "count": 61 - }, - "Studenac": { - "count": 74 - }, - "Sunkus": { - "count": 63 - }, - "Tchibo": { - "count": 54 - }, - "Tesco": { - "count": 55 + "McColl's": { + "count": 96 }, "Tesco Express": { - "count": 415 + "count": 417 + }, + "Sainsbury's Local": { + "count": 98 + }, + "One Stop": { + "count": 143 }, "The Co-operative Food": { "count": 109 }, - "Valintatalo": { + "Londis": { + "count": 349 + }, + "7-Eleven": { + "count": 4138 + }, + "CBA": { + "count": 128 + }, + "Sale": { + "count": 79 + }, + "Statoil": { + "count": 69 + }, + "Konzum": { + "count": 171 + }, + "Siwa": { + "count": 211 + }, + "Mercator": { + "count": 58 + }, + "Esso": { + "count": 66 + }, + "COOP Jednota": { + "count": 172 + }, + "Mac's": { + "count": 151 + }, + "Alepa": { "count": 62 }, - "Vival": { - "count": 182 + "Hasty Market": { + "count": 54 }, - "Volg": { - "count": 110 + "K-Market": { + "count": 55 }, - "Wawa": { - "count": 129 + "Coop": { + "count": 520 }, - "abc": { + "Costcutter": { + "count": 285 + }, + "Valintatalo": { "count": 61 }, - "Żabka": { - "count": 497 + "SPAR": { + "count": 188 }, - "Авоська": { - "count": 53 + "COOP": { + "count": 134 }, - "Березка": { - "count": 71 + "Casino": { + "count": 87 }, - "Весна": { + "Franprix": { + "count": 62 + }, + "Circle K": { + "count": 277 + }, + "セブンイレブン": { + "count": 2893, + "tags": { + "name:en": "7-Eleven" + } + }, + "ローソン": { + "count": 1514, + "tags": { + "name:en": "LAWSON" + } + }, + "BP": { + "count": 160 + }, + "Tesco": { + "count": 55 + }, + "Petit Casino": { + "count": 231 + }, + "Volg": { + "count": 113 + }, + "Mace": { + "count": 112 + }, + "Mini Market": { + "count": 223 + }, + "Nisa Local": { + "count": 74 + }, + "Dorfladen": { + "count": 74 + }, + "Продукты": { + "count": 4085 + }, + "Mini Stop": { + "count": 222 + }, + "LAWSON": { + "count": 414 + }, + "デイリーヤマザキ": { + "count": 134 + }, + "Надежда": { "count": 56 }, + "Mobil": { + "count": 64 + }, + "Nisa": { + "count": 51 + }, + "Premier": { + "count": 126 + }, + "ABC": { + "count": 147 + }, + "Edeka": { + "count": 51 + }, + "ミニストップ": { + "count": 299, + "tags": { + "name:en": "MINISTOP" + } + }, + "サンクス": { + "count": 537, + "tags": { + "name:en": "sunkus" + } + }, + "スリーエフ": { + "count": 87 + }, + "8 à Huit": { + "count": 59 + }, + "Tchibo": { + "count": 55 + }, + "Żabka": { + "count": 520 + }, + "Almacen": { + "count": 211 + }, + "Vival": { + "count": 191 + }, + "FamilyMart": { + "count": 518 + }, + "ファミリーマート": { + "count": 1512, + "tags": { + "name:en": "FamilyMart" + } + }, + "Carrefour City": { + "count": 54 + }, + "Sunkus": { + "count": 61 + }, + "Casey's General Store": { + "count": 88 + }, + "セブンイレブン(Seven-Eleven)": { + "count": 58 + }, + "Jednota": { + "count": 55 + }, + "Гастроном": { + "count": 148 + }, + "Sklep spożywczy": { + "count": 276 + }, + "Centra": { + "count": 110 + }, + "Магнит": { + "count": 684 + }, + "サークルK": { + "count": 495, + "tags": { + "name:en": "Circle K" + } + }, + "Wawa": { + "count": 130 + }, + "Proxi": { + "count": 120 + }, + "Универсам": { + "count": 79 + }, + "Groszek": { + "count": 59 + }, + "Select": { + "count": 58 + }, + "Potraviny": { + "count": 246 + }, + "Смак": { + "count": 72 + }, + "Эконом": { + "count": 53 + }, + "Магазин": { + "count": 875 + }, + "Березка": { + "count": 75 + }, + "Społem": { + "count": 89 + }, + "Carrefour Express": { + "count": 81 + }, + "Biedronka": { + "count": 77 + }, + "Cumberland Farms": { + "count": 63 + }, + "Chevron": { + "count": 56 + }, + "Coop Jednota": { + "count": 63 + }, + "Tesco Lotus Express": { + "count": 64 + }, + "Kiosk": { + "count": 55 + }, + "24 часа": { + "count": 58 + }, + "Минимаркет": { + "count": 97 + }, + "Oxxo": { + "count": 632 + }, + "Пятёрочка": { + "count": 383 + }, + "abc": { + "count": 64 + }, + "Stewart's": { + "count": 255 + }, + "Продукти": { + "count": 162 + }, + "ローソンストア100 (LAWSON STORE 100)": { + "count": 84 + }, + "Дикси": { + "count": 121 + }, + "Радуга": { + "count": 85 + }, + "ローソンストア100": { + "count": 71 + }, + "เซเว่นอีเลฟเว่น": { + "count": 191 + }, + "Spożywczy": { + "count": 75 + }, + "Delikatesy Centrum": { + "count": 51 + }, + "Citgo": { + "count": 63 + }, + "Фортуна": { + "count": 52 + }, + "Kum & Go": { + "count": 59 + }, + "Мария-Ра": { + "count": 75 + }, + "Picard": { + "count": 55 + }, + "Four Square": { + "count": 51 + }, "Визит": { + "count": 57 + }, + "Авоська": { + "count": 52 + }, + "Dollar General": { + "count": 109 + }, + "Studenac": { + "count": 75 + }, + "Central Convenience Store": { + "count": 54 + }, + "Монетка": { + "count": 61 + }, + "продукты": { + "count": 118 + }, + "Теремок": { + "count": 54 + }, + "Kwik Trip": { + "count": 68 + }, + "Кулинария": { + "count": 53 + }, + "全家": { + "count": 71 + }, + "Мечта": { + "count": 54 + }, + "Epicerie": { + "count": 70 + }, + "Кировский": { + "count": 67 + }, + "Food Mart": { + "count": 101 + }, + "Delikatesy": { + "count": 79 + }, + "ポプラ": { + "count": 52 + }, + "Lewiatan": { + "count": 123 + }, + "Продуктовый магазин": { + "count": 94 + }, + "Продуктовый": { + "count": 67 + }, + "セイコーマート (Seicomart)": { "count": 55 }, "Виктория": { "count": 67 }, - "Гастроном": { - "count": 136 - }, - "Дикси": { - "count": 118 - }, - "Кировский": { - "count": 69 - }, - "Копеечка": { + "Весна": { "count": 56 }, - "Кулинария": { + "Mini Market Non-Stop": { + "count": 58 + }, + "QuikTrip": { + "count": 70 + }, + "Копеечка": { "count": 53 }, - "Магазин": { - "count": 760 + "Royal Farms": { + "count": 51 }, - "Магнит": { - "count": 645 - }, - "Мария-Ра": { + "Alfamart": { "count": 76 }, - "Мечта": { - "count": 53 - }, - "Минимаркет": { - "count": 97 - }, - "Монетка": { - "count": 59 - }, - "Надежда": { - "count": 54 - }, - "Перекресток": { - "count": 51 - }, - "Продукти": { - "count": 153 - }, - "Продуктовый": { - "count": 65 - }, - "Продуктовый магазин": { - "count": 87 - }, - "Продукты": { - "count": 3813 - }, - "Пятёрочка": { - "count": 377 - }, - "Радуга": { - "count": 80 - }, - "Смак": { - "count": 70 - }, - "Теремок": { - "count": 53 - }, - "Универсам": { - "count": 75 - }, - "магазин": { - "count": 102 - }, - "продукты": { - "count": 113 - }, - "เซเว่นอีเลฟเว่น": { - "count": 193 - }, - "მარკეტი (Market)": { - "count": 145 - }, - "サンクス": { - "count": 517, - "tags": { - "name:en": "sunkus" - } - }, - "サークルK": { - "count": 450, - "tags": { - "name:en": "Circle K" - } - }, - "スリーエフ": { - "count": 84 - }, - "セイコーマート (Seicomart)": { - "count": 52 - }, - "セブンイレブン": { - "count": 2742, - "tags": { - "name:en": "7-Eleven" - } - }, - "デイリーヤマザキ": { - "count": 124 - }, - "ファミリーマート": { - "count": 1352, - "tags": { - "name:en": "FamilyMart" - } - }, - "ミニストップ": { - "count": 282, - "tags": { - "name:en": "MINISTOP" - } - }, - "ローソン": { - "count": 1399, - "tags": { - "name:en": "LAWSON" - } - }, - "ローソンストア100": { - "count": 65 - }, - "ローソンストア100 (LAWSON STORE 100)": { - "count": 84 - }, - "全家": { - "count": 60 - }, - "全家便利商店": { - "count": 104 - } - }, - "department_store": { - "Big W": { - "count": 51 - }, - "Canadian Tire": { - "count": 69 - }, - "Debenhams": { - "count": 65 - }, - "Galeria Kaufhof": { - "count": 57 - }, - "Karstadt": { - "count": 62 - }, - "Kmart": { - "count": 120 - }, - "Kohl's": { - "count": 123 - }, - "Macy's": { - "count": 119 - }, - "Marks & Spencer": { - "count": 59 - }, - "Sears": { - "count": 208 - }, - "Target": { - "count": 468 - }, - "Walmart": { - "count": 456 - }, - "Walmart Supercenter": { - "count": 67 - }, - "Woolworth": { - "count": 74 - }, - "Универмаг": { - "count": 57 - } - }, - "doityourself": { - "Ace Hardware": { + "Indomaret": { "count": 130 }, - "B&Q": { - "count": 222 + "магазин": { + "count": 118 }, - "Bauhaus": { - "count": 178 + "全家便利商店": { + "count": 111 }, - "Baumax": { - "count": 94 + "Boutique": { + "count": 58 }, - "Brico": { - "count": 99 + "მარკეტი (Market)": { + "count": 144 }, - "Bricomarché": { - "count": 213 - }, - "Bricorama": { - "count": 59 - }, - "Bunnings Warehouse": { - "count": 87 - }, - "Canadian Tire": { - "count": 92 - }, - "Castorama": { - "count": 160 - }, - "Gamma": { - "count": 105 - }, - "Hagebau": { - "count": 61 - }, - "Hagebaumarkt": { - "count": 109 - }, - "Hellweg": { - "count": 62 - }, - "Home Depot": { - "count": 789 - }, - "Home Hardware": { - "count": 66 - }, - "Homebase": { - "count": 224 - }, - "Hornbach": { - "count": 124 - }, - "Hubo": { - "count": 72 - }, - "Lagerhaus": { - "count": 71 - }, - "Leroy Merlin": { - "count": 197 - }, - "Lowes": { - "count": 1131 - }, - "Max Bahr": { - "count": 86 - }, - "Menards": { - "count": 62 - }, - "Mr Bricolage": { - "count": 87 - }, - "OBI": { - "count": 418 - }, - "Praktiker": { - "count": 187 - }, - "Rona": { - "count": 57 - }, - "Toom": { - "count": 69 - }, - "Toom Baumarkt": { - "count": 65 - }, - "Weldom": { - "count": 70 - }, - "Wickes": { - "count": 120 - }, - "Стройматериалы": { - "count": 165 - }, - "Хозтовары": { - "count": 68 + "Stores": { + "count": 60 } }, - "electronics": { - "Best Buy": { - "count": 297 + "chemist": { + "dm": { + "count": 904 }, - "Comet": { - "count": 62 + "Müller": { + "count": 206 }, - "Currys": { - "count": 80 + "Schlecker": { + "count": 194 }, - "Darty": { - "count": 71 + "Etos": { + "count": 465 }, - "Euronics": { - "count": 109 + "Bipa": { + "count": 282 }, - "Expert": { - "count": 117 + "Rossmann": { + "count": 1652 }, - "Future Shop": { - "count": 69 - }, - "Maplin": { - "count": 63 - }, - "Media Markt": { - "count": 273 - }, - "Radio Shack": { - "count": 226 - }, - "Saturn": { - "count": 147 - }, - "М.Видео": { + "Ihr Platz": { "count": 74 }, - "Эльдорадо": { - "count": 171 + "Douglas": { + "count": 61 + }, + "Kruidvat": { + "count": 122 + } + }, + "car_repair": { + "Peugeot": { + "count": 82 + }, + "Kwik Fit": { + "count": 73 + }, + "ATU": { + "count": 259 + }, + "Kwik-Fit": { + "count": 51 + }, + "Midas": { + "count": 190 + }, + "Feu Vert": { + "count": 105 + }, + "Norauto": { + "count": 141 + }, + "Speedy": { + "count": 112 + }, + "Автозапчасти": { + "count": 186 + }, + "Renault": { + "count": 165 + }, + "Pit Stop": { + "count": 57 + }, + "Jiffy Lube": { + "count": 187 + }, + "Шиномонтаж": { + "count": 1097 + }, + "СТО": { + "count": 366 + }, + "O'Reilly Auto Parts": { + "count": 69 + }, + "Carglass": { + "count": 103 + }, + "шиномонтаж": { + "count": 56 + }, + "Euromaster": { + "count": 84 + }, + "Firestone": { + "count": 84 + }, + "AutoZone": { + "count": 63 + }, + "Автосервис": { + "count": 344 + }, + "Roady": { + "count": 55 } }, "furniture": { - "But": { - "count": 58 - }, - "Conforama": { - "count": 90 - }, - "Dänisches Bettenlager": { - "count": 290 - }, "IKEA": { - "count": 162 + "count": 165 }, "Jysk": { - "count": 92 + "count": 98 + }, + "Roller": { + "count": 76 + }, + "Dänisches Bettenlager": { + "count": 298 + }, + "Conforama": { + "count": 93 }, "Matratzen Concord": { "count": 51 }, - "Roller": { - "count": 77 - }, "Мебель": { - "count": 190 - } - }, - "hairdresser": { - "Coiffeur": { - "count": 60 + "count": 201 }, - "Franck Provost": { - "count": 64 - }, - "Friseur": { - "count": 127 - }, - "Great Clips": { - "count": 155 - }, - "Klier": { - "count": 105 - }, - "Peluqueria": { - "count": 56 - }, - "Supercuts": { - "count": 89 - }, - "Парикмахерская": { - "count": 485 - }, - "Салон красоты": { - "count": 65 - } - }, - "hardware": { - "1000 мелочей": { - "count": 53 - }, - "Хозтовары": { - "count": 143 - } - }, - "hifi": {}, - "jewelry": { - "Bijou Brigitte": { - "count": 53 - }, - "Christ": { - "count": 55 - }, - "Swarovski": { - "count": 70 - } - }, - "mobile_phone": { - "AT&T": { - "count": 95 - }, - "Bell": { - "count": 191 - }, - "Bitė": { - "count": 73 - }, - "Carphone Warehouse": { - "count": 109 - }, - "Movistar": { - "count": 55 - }, - "O2": { - "count": 180 - }, - "Orange": { - "count": 220 - }, - "SFR": { - "count": 70 - }, - "Sprint": { - "count": 91 - }, - "T-Mobile": { - "count": 158 - }, - "The Phone House": { - "count": 81 - }, - "Verizon Wireless": { - "count": 97 - }, - "Vodafone": { - "count": 311 - }, - "au": { - "count": 56 - }, - "Билайн": { - "count": 113 - }, - "Евросеть": { - "count": 466 - }, - "МТС": { - "count": 311 - }, - "Мегафон": { - "count": 227 - }, - "Связной": { - "count": 396 - }, - "ソフトバンクショップ (SoftBank shop)": { - "count": 256 - }, - "ドコモショップ (docomo shop)": { - "count": 113 - } - }, - "motorcycle": { - "Honda": { - "count": 56 - }, - "Yamaha": { + "But": { "count": 58 } }, - "optician": { - "Alain Afflelou": { - "count": 68 + "doityourself": { + "Hornbach": { + "count": 123 }, - "Apollo Optik": { - "count": 142 + "B&Q": { + "count": 223 }, - "Fielmann": { - "count": 219 + "Hubo": { + "count": 74 }, - "Krys": { - "count": 65 + "Mr Bricolage": { + "count": 88 }, - "Optic 2000": { + "Gamma": { + "count": 108 + }, + "OBI": { + "count": 409 + }, + "Lowes": { + "count": 1135 + }, + "Wickes": { + "count": 122 + }, + "Hagebau": { + "count": 59 + }, + "Max Bahr": { "count": 87 }, - "Specsavers": { + "Castorama": { + "count": 153 + }, + "Rona": { + "count": 58 + }, + "Home Depot": { + "count": 823 + }, + "Toom Baumarkt": { + "count": 66 + }, + "Homebase": { + "count": 223 + }, + "Baumax": { + "count": 94 + }, + "Lagerhaus": { + "count": 73 + }, + "Bauhaus": { + "count": 181 + }, + "Canadian Tire": { + "count": 93 + }, + "Leroy Merlin": { + "count": 203 + }, + "Hellweg": { + "count": 58 + }, + "Brico": { + "count": 97 + }, + "Bricomarché": { + "count": 217 + }, + "Toom": { + "count": 67 + }, + "Praktiker": { + "count": 143 + }, + "Hagebaumarkt": { + "count": 105 + }, + "Menards": { + "count": 66 + }, + "Weldom": { + "count": 70 + }, + "Bunnings Warehouse": { + "count": 90 + }, + "Ace Hardware": { + "count": 133 + }, + "Home Hardware": { + "count": 69 + }, + "Хозтовары": { + "count": 70 + }, + "Стройматериалы": { + "count": 180 + }, + "Bricorama": { + "count": 58 + }, + "Point P": { + "count": 56 + } + }, + "department_store": { + "Target": { + "count": 530 + }, + "Debenhams": { + "count": 66 + }, + "Canadian Tire": { + "count": 71 + }, + "Karstadt": { + "count": 64 + }, + "Walmart": { + "count": 496 + }, + "Kmart": { + "count": 133 + }, + "Galeria Kaufhof": { + "count": 58 + }, + "Marks & Spencer": { + "count": 62 + }, + "Big W": { + "count": 56 + }, + "Woolworth": { + "count": 76 + }, + "Универмаг": { + "count": 63 + }, + "Sears": { + "count": 218 + }, + "Walmart Supercenter": { + "count": 90 + }, + "Sam's Club": { + "count": 51 + }, + "Kohl's": { + "count": 139 + }, + "Macy's": { + "count": 129 + }, + "JCPenney": { + "count": 58 + } + }, + "stationery": { + "Staples": { + "count": 276 + }, + "McPaper": { + "count": 80 + }, + "Office Depot": { + "count": 88 + }, + "Канцтовары": { + "count": 56 + } + }, + "car": { + "Skoda": { + "count": 95 + }, + "BMW": { + "count": 146 + }, + "Citroen": { + "count": 271 + }, + "Renault": { + "count": 365 + }, + "Mercedes-Benz": { + "count": 226 + }, + "Volvo": { + "count": 91 + }, + "Ford": { + "count": 230 + }, + "Volkswagen": { + "count": 203 + }, + "Mazda": { + "count": 99 + }, + "Mitsubishi": { + "count": 72 + }, + "Fiat": { + "count": 87 + }, + "Автозапчасти": { + "count": 278 + }, + "Opel": { + "count": 162 + }, + "Audi": { "count": 109 }, - "Vision Express": { + "Toyota": { + "count": 256 + }, + "Nissan": { + "count": 180 + }, + "Suzuki": { + "count": 75 + }, + "Honda": { + "count": 148 + }, + "Peugeot": { + "count": 296 + }, + "Шиномонтаж": { + "count": 256 + }, + "Hyundai": { + "count": 155 + }, + "Subaru": { + "count": 53 + }, + "Chevrolet": { + "count": 81 + }, + "Автомагазин": { + "count": 62 + } + }, + "clothes": { + "Matalan": { + "count": 84 + }, + "KiK": { + "count": 1180 + }, + "H&M": { + "count": 641 + }, + "Urban Outfitters": { + "count": 62 + }, + "Vögele": { + "count": 131 + }, + "Zeeman": { + "count": 120 + }, + "Takko": { + "count": 508 + }, + "Adler": { + "count": 53 + }, + "C&A": { + "count": 498 + }, + "Zara": { + "count": 211 + }, + "Vero Moda": { + "count": 93 + }, + "NKD": { + "count": 476 + }, + "Ernsting's family": { + "count": 298 + }, + "Winners": { + "count": 62 + }, + "River Island": { + "count": 56 + }, + "Next": { + "count": 170 + }, + "Gap": { + "count": 77 + }, + "Adidas": { + "count": 86 + }, + "Woolworths": { + "count": 116 + }, + "Mr Price": { + "count": 87 + }, + "Jet": { + "count": 61 + }, + "Pep": { + "count": 134 + }, + "Edgars": { + "count": 110 + }, + "Ackermans": { + "count": 90 + }, + "Truworths": { + "count": 65 + }, + "Ross": { + "count": 85 + }, + "Dorothy Perkins": { + "count": 53 + }, + "Deichmann": { + "count": 58 + }, + "Lindex": { + "count": 72 + }, + "s.Oliver": { "count": 54 }, - "Оптика": { - "count": 165 + "Old Navy": { + "count": 163 + }, + "Jack & Jones": { + "count": 52 + }, + "Pimkie": { + "count": 72 + }, + "Esprit": { + "count": 221 + }, + "Primark": { + "count": 87 + }, + "Bonita": { + "count": 150 + }, + "Mexx": { + "count": 65 + }, + "Gerry Weber": { + "count": 70 + }, + "Tally Weijl": { + "count": 68 + }, + "Mango": { + "count": 128 + }, + "TK Maxx": { + "count": 77 + }, + "Benetton": { + "count": 99 + }, + "Ulla Popken": { + "count": 59 + }, + "AWG": { + "count": 66 + }, + "Tommy Hilfiger": { + "count": 69 + }, + "New Yorker": { + "count": 176 + }, + "Orsay": { + "count": 72 + }, + "Charles Vögele": { + "count": 68 + }, + "New Look": { + "count": 122 + }, + "Lacoste": { + "count": 73 + }, + "Etam": { + "count": 52 + }, + "Kiabi": { + "count": 145 + }, + "Jack Wolfskin": { + "count": 60 + }, + "American Apparel": { + "count": 55 + }, + "Men's Wearhouse": { + "count": 51 + }, + "Intimissimi": { + "count": 51 + }, + "United Colors of Benetton": { + "count": 93 + }, + "Jules": { + "count": 61 + }, + "AOKI": { + "count": 55 + }, + "Calzedonia": { + "count": 66 + }, + "洋服の青山": { + "count": 96 + }, + "Levi's": { + "count": 59 + }, + "Celio": { + "count": 73 + }, + "TJ Maxx": { + "count": 52 + }, + "Promod": { + "count": 77 + }, + "Street One": { + "count": 72 + }, + "ユニクロ": { + "count": 56 + }, + "Banana Republic": { + "count": 51 + }, + "Одежда": { + "count": 68 + }, + "La Halle": { + "count": 61 + }, + "Peacocks": { + "count": 87 + }, + "しまむら": { + "count": 53 + } + }, + "books": { + "Bruna": { + "count": 57 + }, + "Waterstones": { + "count": 86 + }, + "Libro": { + "count": 55 + }, + "Barnes & Noble": { + "count": 249 + }, + "Weltbild": { + "count": 73 + }, + "Thalia": { + "count": 120 + }, + "Книги": { + "count": 111 + } + }, + "alcohol": { + "Alko": { + "count": 142 + }, + "The Beer Store": { + "count": 144 + }, + "Systembolaget": { + "count": 207 + }, + "LCBO": { + "count": 226 + }, + "Ароматный мир": { + "count": 61 + }, + "Bargain Booze": { + "count": 61 + }, + "Nicolas": { + "count": 114 + }, + "Botilleria": { + "count": 76 + }, + "SAQ": { + "count": 70 + }, + "Gall & Gall": { + "count": 513 + }, + "BWS": { + "count": 66 + }, + "Живое пиво": { + "count": 61 + } + }, + "bakery": { + "Kamps": { + "count": 250 + }, + "Bäckerei Schmidt": { + "count": 56 + }, + "Anker": { + "count": 70 + }, + "Schäfer": { + "count": 51 + }, + "Hofpfisterei": { + "count": 110 + }, + "Greggs": { + "count": 265 + }, + "Oebel": { + "count": 58 + }, + "Boulangerie": { + "count": 248 + }, + "Stadtbäckerei": { + "count": 57 + }, + "Steinecke": { + "count": 139 + }, + "Ihle": { + "count": 75 + }, + "Goldilocks": { + "count": 56 + }, + "Dat Backhus": { + "count": 66 + }, + "K&U": { + "count": 55 + }, + "Der Beck": { + "count": 97 + }, + "Thürmann": { + "count": 54 + }, + "Backwerk": { + "count": 94 + }, + "Bäcker": { + "count": 66 + }, + "Schäfer's": { + "count": 51 + }, + "Panaderia": { + "count": 162 + }, + "Goeken backen": { + "count": 51 + }, + "Stadtbäckerei Junge": { + "count": 53 + }, + "Boulangerie Patisserie": { + "count": 93 + }, + "Paul": { + "count": 78 + }, + "Хлеб": { + "count": 84 + }, + "Piekarnia": { + "count": 55 + } + }, + "sports": { + "Sports Direct": { + "count": 53 + }, + "Decathlon": { + "count": 298 + }, + "Intersport": { + "count": 272 + }, + "Sports Authority": { + "count": 68 + }, + "Спортмастер": { + "count": 81 + }, + "Sport 2000": { + "count": 83 + }, + "Dick's Sporting Goods": { + "count": 69 + } + }, + "variety_store": { + "Tedi": { + "count": 148 + }, + "Dollarama": { + "count": 99 + }, + "Dollar Tree": { + "count": 91 + }, + "Dollar General": { + "count": 68 } }, "pet": { - "Das Futterhaus": { - "count": 61 - }, "Fressnapf": { - "count": 300 + "count": 309 }, "PetSmart": { - "count": 150 + "count": 163 }, - "Petco": { - "count": 79 + "Das Futterhaus": { + "count": 67 }, "Pets at Home": { - "count": 53 + "count": 56 + }, + "Petco": { + "count": 89 }, "Зоомагазин": { "count": 95 } }, "shoes": { - "Bata": { - "count": 88 - }, - "Brantano": { - "count": 67 - }, - "Clarks": { - "count": 97 - }, "Deichmann": { - "count": 574 - }, - "Ecco": { - "count": 53 - }, - "Foot Locker": { - "count": 74 - }, - "La Halle aux Chaussures": { - "count": 63 - }, - "Payless Shoe Source": { - "count": 52 - }, - "Quick Schuh": { - "count": 69 + "count": 607 }, "Reno": { - "count": 170 + "count": 178 + }, + "Ecco": { + "count": 54 + }, + "Clarks": { + "count": 100 + }, + "La Halle aux Chaussures": { + "count": 65 + }, + "Brantano": { + "count": 68 }, "Salamander": { "count": 52 }, "Обувь": { - "count": 93 - } - }, - "sports": { - "Decathlon": { - "count": 286 + "count": 97 }, - "Dick's Sporting Goods": { - "count": 58 - }, - "Intersport": { - "count": 265 - }, - "Sport 2000": { - "count": 83 - }, - "Sports Authority": { - "count": 63 - }, - "Спортмастер": { - "count": 80 - } - }, - "stationery": { - "McPaper": { - "count": 79 - }, - "Office Depot": { - "count": 83 - }, - "Staples": { - "count": 262 - }, - "Канцтовары": { - "count": 57 - } - }, - "supermarket": { - "AD Delhaize": { - "count": 66 - }, - "ADEG": { - "count": 64 - }, - "ALDI": { - "count": 5182 - }, - "Aldi Süd": { - "count": 589 - }, - "ASDA": { - "count": 178 - }, - "Albert": { - "count": 185 - }, - "Albert Heijn": { - "count": 445 - }, - "Albertsons": { - "count": 229 - }, - "Aldi Nord": { - "count": 194 - }, - "Alimerka": { - "count": 58 - }, - "Asda": { - "count": 221 - }, - "Auchan": { - "count": 144 - }, - "Billa": { - "count": 1417 - }, - "Biedronka": { - "count": 1227 - }, - "Bodega Aurrera": { - "count": 70 - }, - "Budgens": { - "count": 86 - }, - "C1000": { - "count": 332 - }, - "CBA": { - "count": 160 - }, - "COOP": { - "count": 187 - }, - "COOP Jednota": { - "count": 67 - }, - "Caprabo": { - "count": 96 - }, - "Carrefour": { - "count": 1575 - }, - "Carrefour City": { - "count": 109 - }, - "Carrefour Contact": { - "count": 73 - }, - "Carrefour Express": { - "count": 314 - }, - "Carrefour Market": { - "count": 79 - }, - "Casino": { - "count": 254 - }, - "Centra": { - "count": 51 - }, - "Champion": { - "count": 63 - }, - "Checkers": { - "count": 124 - }, - "Coop": { - "count": 1860 - }, - "Coles": { - "count": 381 - }, - "Colruyt": { - "count": 186 - }, - "Combi": { - "count": 56 - }, - "Conad": { - "count": 294 - }, - "Condis": { - "count": 65 - }, - "Consum": { - "count": 123 - }, - "Continente": { - "count": 66 - }, - "Coop Jednota": { - "count": 68 - }, - "Coop Konsum": { - "count": 78 - }, - "Costco": { - "count": 133 - }, - "Costcutter": { - "count": 62 - }, - "Countdown": { - "count": 90 - }, - "Dia": { - "count": 749 - }, - "dm": { - "count": 108 - }, - "Delhaize": { - "count": 219 - }, - "Delikatesy Centrum": { - "count": 56 - }, - "Denner": { - "count": 256 - }, - "Despar": { - "count": 143 - }, - "Diska": { - "count": 69 - }, - "Dunnes Stores": { - "count": 70 - }, - "E-Center": { - "count": 67 - }, - "E.Leclerc": { - "count": 341 - }, - "EDEKA": { - "count": 498 - }, - "Edeka": { - "count": 1811 - }, - "El Árbol": { - "count": 71 - }, - "Eroski": { - "count": 203 - }, - "Esselunga": { - "count": 82 - }, - "Eurospar": { - "count": 260 - }, - "Eurospin": { - "count": 153 - }, - "Extra": { - "count": 74 - }, - "Fakta": { - "count": 215 - }, - "Famiglia Cooperativa": { - "count": 62 - }, - "Famila": { - "count": 127 - }, - "Farmfoods": { - "count": 63 - }, - "Feneberg": { - "count": 61 - }, - "Food Basics": { - "count": 73 - }, - "Food Lion": { - "count": 175 - }, - "Foodland": { - "count": 92 - }, - "Foodworks": { - "count": 55 - }, - "Franprix": { - "count": 298 - }, - "Fred Meyer": { - "count": 63 - }, - "Fressnapf": { - "count": 66 - }, - "Føtex": { - "count": 67 - }, - "Game": { - "count": 53 - }, - "Giant": { - "count": 187 - }, - "Giant Eagle": { - "count": 69 - }, - "Géant Casino": { - "count": 53 - }, - "HEB": { - "count": 75 - }, - "HIT": { - "count": 62 - }, - "Hannaford": { - "count": 55 - }, - "Harris Teeter": { - "count": 84 - }, - "Hemköp": { - "count": 83 - }, - "Hofer": { - "count": 451 - }, - "Hoogvliet": { - "count": 52 - }, - "Hy-Vee": { - "count": 67 - }, - "ICA": { - "count": 195 - }, - "IGA": { - "count": 333 - }, - "Iceland": { - "count": 297 - }, - "Intermarche": { - "count": 107 - }, - "Intermarché": { - "count": 1155 - }, - "Interspar": { - "count": 142 - }, - "Irma": { - "count": 61 - }, - "Jumbo": { - "count": 175 - }, - "K+K": { - "count": 104 - }, - "Kaiser's": { - "count": 255 - }, - "Kaufland": { - "count": 996 - }, - "Kaufpark": { - "count": 100 - }, - "King Soopers": { - "count": 69 - }, - "Kiwi": { - "count": 164 - }, - "Konsum": { - "count": 139 - }, - "Konzum": { - "count": 225 - }, - "Kroger": { - "count": 280 - }, - "Kvickly": { - "count": 54 - }, - "LIDL": { - "count": 901 - }, - "Leader Price": { - "count": 242 - }, - "Leclerc": { - "count": 132 - }, - "Lewiatan": { - "count": 88 - }, - "Lider": { - "count": 65 - }, - "Lidl": { - "count": 6116 - }, - "M-Preis": { - "count": 81 - }, - "MPreis": { - "count": 54 - }, - "Makro": { - "count": 130 - }, - "Markant": { - "count": 91 - }, - "Marktkauf": { - "count": 133 - }, - "Match": { - "count": 146 - }, - "Maxi": { - "count": 100 - }, - "Maxima": { - "count": 107 - }, - "Maxima X": { - "count": 111 - }, - "Meijer": { - "count": 74 - }, - "Mercadona": { - "count": 707 - }, - "Mercator": { - "count": 119 - }, - "Merkur": { - "count": 113 - }, - "Metro": { - "count": 250 - }, - "Migros": { - "count": 433 - }, - "Minipreço": { - "count": 99 - }, - "Monoprix": { - "count": 194 - }, - "Morrisons": { - "count": 405 - }, - "Netto": { - "count": 4309 - }, - "NORMA": { - "count": 113 - }, - "NP": { - "count": 153 - }, - "Nah & Frisch": { - "count": 76 - }, - "Nahkauf": { - "count": 166 - }, - "Neukauf": { - "count": 81 - }, - "New World": { - "count": 67 - }, - "No Frills": { - "count": 101 - }, - "Norma": { - "count": 1054 - }, - "PENNY": { - "count": 78 - }, - "Pam": { - "count": 53 - }, - "Penny": { - "count": 1766 - }, - "Penny Market": { - "count": 397 - }, - "Penny Markt": { - "count": 464 - }, - "Petit Casino": { - "count": 106 - }, - "Pick n Pay": { - "count": 237 - }, - "Piggly Wiggly": { - "count": 53 - }, - "Pingo Doce": { - "count": 238 - }, - "Piotr i Paweł": { - "count": 52 - }, - "Plodine": { - "count": 52 - }, - "Plus": { - "count": 138 - }, - "Polo Market": { - "count": 81 - }, - "Price Chopper": { - "count": 96 - }, - "Profi": { - "count": 55 - }, - "Publix": { - "count": 312 - }, - "REWE": { - "count": 1440 - }, - "Real": { - "count": 257 - }, - "Reliance Fresh": { - "count": 63 - }, - "Rema 1000": { - "count": 360 - }, - "Rewe": { - "count": 1194 - }, - "Rimi": { - "count": 103 - }, - "S-Market": { - "count": 107 - }, - "SPAR": { - "count": 275 - }, - "Safeway": { - "count": 436 - }, - "Sainsbury's": { - "count": 538 - }, - "Sainsbury's Local": { - "count": 101 - }, - "Sam's Club": { - "count": 125 - }, - "Santa Isabel": { - "count": 123 - }, - "Shopi": { + "Payless Shoe Source": { "count": 57 }, - "Shoprite": { - "count": 235 - }, - "Simply Market": { - "count": 310 - }, - "Sobeys": { - "count": 117 - }, - "Soriana": { - "count": 91 - }, - "Spar": { - "count": 2028 - }, - "Społem": { + "Famous Footwear": { "count": 54 }, - "Stokrotka": { - "count": 84 + "Quick Schuh": { + "count": 72 }, - "Stop & Shop": { - "count": 55 - }, - "Super Brugsen": { - "count": 63 - }, - "Super U": { - "count": 462 - }, - "SuperBrugsen": { - "count": 68 - }, - "Tesco": { - "count": 1285 - }, - "tegut": { - "count": 220 - }, - "Tengelmann": { - "count": 191 - }, - "Tesco Express": { - "count": 373 - }, - "Tesco Extra": { - "count": 118 - }, - "Tesco Metro": { - "count": 125 - }, - "The Co-operative": { - "count": 60 - }, - "The Co-operative Food": { - "count": 113 - }, - "Trader Joe's": { - "count": 182 - }, - "Treff 3000": { - "count": 95 - }, - "Unimarc": { - "count": 169 - }, - "Unimarkt": { - "count": 80 - }, - "Volg": { - "count": 127 - }, - "Waitrose": { - "count": 252 - }, - "Walmart": { - "count": 600 - }, - "Walmart Supercenter": { - "count": 103 - }, - "Wasgau": { - "count": 60 - }, - "Whole Foods": { - "count": 191 - }, - "Willys": { - "count": 54 - }, - "Woolworths": { - "count": 519 - }, - "Zielpunkt": { - "count": 240 - }, - "coop": { - "count": 71 - }, - "nahkauf": { + "Foot Locker": { "count": 79 }, - "real,-": { - "count": 80 - }, - "sky": { - "count": 100 - }, - "АТБ": { - "count": 289 - }, - "Десяточка": { - "count": 51 - }, - "Дикси": { - "count": 562 - }, - "Евроопт": { - "count": 57 - }, - "Карусель": { - "count": 55 - }, - "Квартал": { - "count": 93 - }, - "Копейка": { - "count": 96 - }, - "Магазин": { - "count": 113 - }, - "Магнит": { - "count": 1635 - }, - "Магнолия": { - "count": 70 - }, - "Мария-Ра": { - "count": 94 - }, - "Монетка": { - "count": 163 - }, - "Народная 7Я семьЯ": { - "count": 147 - }, - "Перекресток": { - "count": 310 - }, - "Полушка": { - "count": 133 - }, - "Пятёрочка": { - "count": 1232 - }, - "Седьмой континент": { - "count": 81 - }, - "Семья": { - "count": 61 - }, - "Сільпо": { - "count": 118 - }, - "Фора": { - "count": 52 - }, - "Фуршет": { - "count": 76 - }, - "マルエツ": { - "count": 52 - }, - "ヨークマート (YorkMart)": { - "count": 62 - }, - "西友 (SEIYU)": { - "count": 55 + "Bata": { + "count": 97 } }, "toys": { @@ -113082,40 +116841,194 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "count": 55 }, "Toys R Us": { - "count": 135 + "count": 141, + "tags": { + "shop": "toys" + } }, "Детский мир": { - "count": 81 + "count": 82 + }, + "Intertoys": { + "count": 53 + }, + "Игрушки": { + "count": 57 } }, "travel_agency": { "Flight Centre": { - "count": 85 + "count": 91 }, "Thomas Cook": { - "count": 100 + "count": 111 } }, - "variety_store": { - "Dollar General": { - "count": 53 + "jewelry": { + "Bijou Brigitte": { + "count": 54 }, - "Dollar Tree": { - "count": 76 + "Christ": { + "count": 56 }, - "Dollarama": { + "Swarovski": { + "count": 73 + } + }, + "optician": { + "Fielmann": { + "count": 222 + }, + "Apollo Optik": { + "count": 147 + }, + "Vision Express": { + "count": 54 + }, + "Оптика": { + "count": 175 + }, + "Optic 2000": { "count": 90 }, - "Tedi": { - "count": 138 + "Alain Afflelou": { + "count": 71 + }, + "Specsavers": { + "count": 116 + }, + "Krys": { + "count": 70 + }, + "Atol": { + "count": 52 } }, "video": { "Blockbuster": { - "count": 197 + "count": 190 }, "World of Video": { - "count": 66 + "count": 65 + } + }, + "mobile_phone": { + "Билайн": { + "count": 120 + }, + "ソフトバンクショップ (SoftBank shop)": { + "count": 256 + }, + "Vodafone": { + "count": 335 + }, + "O2": { + "count": 190 + }, + "Carphone Warehouse": { + "count": 116 + }, + "Orange": { + "count": 236 + }, + "Verizon Wireless": { + "count": 104 + }, + "Sprint": { + "count": 97 + }, + "T-Mobile": { + "count": 169 + }, + "МТС": { + "count": 334 + }, + "Евросеть": { + "count": 489 + }, + "Bell": { + "count": 188 + }, + "The Phone House": { + "count": 83 + }, + "SFR": { + "count": 69 + }, + "Связной": { + "count": 419 + }, + "Мегафон": { + "count": 238 + }, + "AT&T": { + "count": 111 + }, + "ドコモショップ (docomo shop)": { + "count": 115 + }, + "au": { + "count": 61 + }, + "Movistar": { + "count": 69 + }, + "Bitė": { + "count": 72 + } + }, + "hifi": {}, + "computer": { + "PC World": { + "count": 55 + }, + "DNS": { + "count": 124 + } + }, + "hairdresser": { + "Klier": { + "count": 112 + }, + "Supercuts": { + "count": 96 + }, + "Hairkiller": { + "count": 52 + }, + "Great Clips": { + "count": 169 + }, + "Парикмахерская": { + "count": 502 + }, + "Fryzjer": { + "count": 53 + }, + "Franck Provost": { + "count": 67 + }, + "Салон красоты": { + "count": 67 + } + }, + "hardware": { + "1000 мелочей": { + "count": 57 + }, + "Хозтовары": { + "count": 149 + }, + "Стройматериалы": { + "count": 52 + } + }, + "motorcycle": { + "Yamaha": { + "count": 63 + }, + "Honda": { + "count": 57 } } } diff --git a/vendor/assets/iD/iD/locales/bs.json b/vendor/assets/iD/iD/locales/bs.json index 9392feda6..7b3489255 100644 --- a/vendor/assets/iD/iD/locales/bs.json +++ b/vendor/assets/iD/iD/locales/bs.json @@ -391,6 +391,9 @@ "category-building": { "name": "Građevina" }, + "category-golf": { + "name": "Golf" + }, "category-landuse": { "name": "Upotreba zemljišta" }, @@ -467,6 +470,33 @@ "admin_level": { "label": "Administrativni nivo" }, + "aerialway": { + "label": "Vrsta" + }, + "aerialway/access": { + "label": "Pristup" + }, + "aerialway/bubble": { + "label": "Balon" + }, + "aerialway/capacity": { + "label": "Kapacitet (po satu)", + "placeholder": "500, 2500, 5000..." + }, + "aerialway/duration": { + "label": "Trajanje (u minutama)", + "placeholder": "1, 2, 3..." + }, + "aerialway/heating": { + "label": "Zagrijano" + }, + "aerialway/occupancy": { + "label": "Zauzeće", + "placeholder": "2, 4, 8..." + }, + "aerialway/summer/access": { + "label": "Pristup (ljeto)" + }, "aeroway": { "label": "Vrsta" }, @@ -500,6 +530,9 @@ "building_area": { "label": "Građevina" }, + "cans": { + "label": "Prihvata konzerve" + }, "capacity": { "label": "Kapacitet", "placeholder": "50, 100, 200..." @@ -514,6 +547,9 @@ "anticlockwise": "U smjeru suprotnom od kazaljke na satu" } }, + "clothes": { + "label": "Prihvata odjeću" + }, "collection_times": { "label": "Vremena skupljanja" }, @@ -523,6 +559,9 @@ "country": { "label": "Zemlja" }, + "covered": { + "label": "Pokriveno" + }, "crossing": { "label": "Vrsta" }, @@ -569,6 +608,17 @@ "generator/type": { "label": "Vrsta" }, + "glass": { + "label": "Prihvata staklo" + }, + "golf_hole": { + "label": "Referenca", + "placeholder": "Rupa broj (1-18)" + }, + "handicap": { + "label": "Hendikep", + "placeholder": "1-18" + }, "highway": { "label": "Vrsta" }, @@ -584,6 +634,9 @@ "incline": { "label": "Nagib" }, + "information": { + "label": "Vrsta" + }, "internet_access": { "label": "Internet pristup", "options": { @@ -650,6 +703,13 @@ "operator": { "label": "Operator" }, + "paper": { + "label": "Prihvata papir" + }, + "par": { + "label": "Par", + "placeholder": "3, 4, 5..." + }, "park_ride": { "label": "Podsticaj parkiranja" }, @@ -660,6 +720,15 @@ "label": "Telefon", "placeholder": "+31 42 123 4567" }, + "piste/difficulty": { + "label": "Težina" + }, + "piste/grooming": { + "label": "Održavanje" + }, + "piste/type": { + "label": "Vrsta" + }, "place": { "label": "Vrsta" }, @@ -727,6 +796,9 @@ "cutting": "Usjek" } }, + "studio_type": { + "label": "Vrsta" + }, "supervised": { "label": "Pod nadzorom" }, @@ -751,6 +823,9 @@ "tree_type": { "label": "Vrsta" }, + "tunnel": { + "label": "Tunel" + }, "vending": { "label": "Vrsta dobara" }, @@ -782,6 +857,9 @@ "name": "Adresa", "terms": "adresa,prebivalište" }, + "aerialway/gondola": { + "name": "Gondola" + }, "aeroway": { "name": "Avio-put", "terms": "fizička infrastruktura aerodroma,zračni transport,avio-put" @@ -878,6 +956,9 @@ "name": "Kino", "terms": "kino,kino dvorana,multipleks" }, + "amenity/clinic": { + "name": "Klinika" + }, "amenity/college": { "name": "Koledž", "terms": "koledž,fakultet,faks" @@ -886,6 +967,14 @@ "name": "Sudnica", "terms": "sudnica,zgrada suda" }, + "amenity/dentist": { + "name": "Zubar", + "terms": "zubar,stomatolog" + }, + "amenity/doctor": { + "name": "Doktor", + "terms": "doktor,ljekar" + }, "amenity/drinking_water": { "name": "Voda za piće", "terms": "voda za piće,pitka voda" @@ -978,6 +1067,10 @@ "name": "Stanica rendžerske službe", "terms": "rendžerska služba,stanica rendžerske službe,rendžerska stanica" }, + "amenity/recycling": { + "name": "Recikliranje", + "terms": "recikliranje,ponovna obrada,reciklaža" + }, "amenity/restaurant": { "name": "Restoran", "terms": "restoran,gostionica" @@ -990,6 +1083,9 @@ "name": "Sklonište", "terms": "sklonište,zaklon" }, + "amenity/studio": { + "name": "Studio" + }, "amenity/swimming_pool": { "name": "Bazen", "terms": "bazen,bazen za plivanje,plivački bazen" @@ -1138,6 +1234,97 @@ "name": "Stambena zgrada", "terms": "stambena zgrada,zgrada za stanovanje" }, + "craft/beekeeper": { + "name": "Pčelar" + }, + "craft/blacksmith": { + "name": "Kovač" + }, + "craft/boatbuilder": { + "name": "Brodograditelj" + }, + "craft/bookbinder": { + "name": "Knjigovezac" + }, + "craft/brewery": { + "name": "Pivara" + }, + "craft/carpenter": { + "name": "Stolar" + }, + "craft/caterer": { + "name": "Ugostitelj" + }, + "craft/clockmaker": { + "name": "Proizvođač satova" + }, + "craft/dressmaker": { + "name": "Izrada haljina" + }, + "craft/electrician": { + "name": "Električar" + }, + "craft/gardener": { + "name": "Vrtlar" + }, + "craft/hvac": { + "name": "HVAC" + }, + "craft/insulator": { + "name": "Izolator" + }, + "craft/jeweler": { + "name": "Zlatar", + "terms": "zlatar,draguljar" + }, + "craft/key_cutter": { + "name": "Izrada ključeva" + }, + "craft/locksmith": { + "name": "Bravar" + }, + "craft/metal_construction": { + "name": "Metalne konstrukcije" + }, + "craft/optician": { + "name": "Optičar" + }, + "craft/painter": { + "name": "Slikar" + }, + "craft/photographer": { + "name": "Fotograf" + }, + "craft/photographic_labratory": { + "name": "Fotografska laboratorija" + }, + "craft/plumber": { + "name": "Vodoinstalater" + }, + "craft/pottery": { + "name": "Grnčarija" + }, + "craft/roofer": { + "name": "Krovopokrivač" + }, + "craft/saddler": { + "name": "Sedlar" + }, + "craft/sculpter": { + "name": "Skulptor" + }, + "craft/stonemason": { + "name": "Klesar" + }, + "craft/sweep": { + "name": "Čišćenje dimnjaka" + }, + "craft/tailor": { + "name": "Krojač" + }, + "craft/window_construction": { + "name": "Izrada prozora" + }, "embankment": { "name": "Nasip", "terms": "nasip" @@ -1166,6 +1353,38 @@ "name": "Trotoar", "terms": "trotoar" }, + "golf/bunker": { + "name": "Pješčana zamka", + "terms": "pješčana zamka,pješčana klopka,bunker" + }, + "golf/fairway": { + "name": "Fairway", + "terms": "osnovni dio golf terena, glavni teren za golf" + }, + "golf/green": { + "name": "Putting Green", + "terms": "područje golf terena najbliže rupi" + }, + "golf/hole": { + "name": "Rupa za golf", + "terms": "golf rupa,rupa za golf loptice" + }, + "golf/lateral_water_hazard": { + "name": "Vodena opasnost sa strane", + "terms": "opasnost of vode sa strane,voda sa strane" + }, + "golf/rough": { + "name": "Rough", + "terms": "područje \"divlje\" trave van igre,trava van golf terena" + }, + "golf/tee": { + "name": "Tee Box", + "terms": "\"Tee\" kutija,kutija područja na početku rupe" + }, + "golf/water_hazard": { + "name": "Vodena opasnost", + "terms": "opasnost od vode,vodena opasnost" + }, "highway": { "name": "Put", "terms": "cesta,put" diff --git a/vendor/assets/iD/iD/locales/ca.json b/vendor/assets/iD/iD/locales/ca.json index 22ef95237..e8278fb58 100644 --- a/vendor/assets/iD/iD/locales/ca.json +++ b/vendor/assets/iD/iD/locales/ca.json @@ -252,7 +252,11 @@ "incomplete": "", "feature_list": "Cerca característiques", "edit": "Editar la característica", - "none": "Cap" + "none": "Cap", + "node": "Node", + "way": "Via", + "relation": "Relació", + "location": "Ubicació" }, "background": { "title": "Fons", @@ -312,6 +316,7 @@ "untagged_area": "Àrea sense etiquetar", "many_deletions": "Esteu eliminant {n} objectes. Esteu segurs que voleu fer-ho? Això els eliminarà dels mapa que tothom veu a openstreetmap.org", "tag_suggests_area": "L'etiqueta {tag} suggereix que la línia hauria de ser una àrea, però no és una àrea", + "untagged_tooltip": "Seleccioneu un tipus de característica que descrigui el que és aquesta {geometry}.", "deprecated_tags": "Etiquetes obsoletes : {tags}" }, "zoom": { @@ -391,6 +396,9 @@ "category-building": { "name": "Edifici" }, + "category-golf": { + "name": "Golf" + }, "category-landuse": { "name": "Aprofitament del terreny" }, @@ -457,7 +465,7 @@ "address": { "label": "Adreça", "placeholders": { - "housename": "Número de carrer", + "housename": "Nom de l'edifici", "number": "123", "street": "Carrer", "city": "Ciutat ", @@ -467,6 +475,33 @@ "admin_level": { "label": "Nivell administratiu" }, + "aerialway": { + "label": "Tipus" + }, + "aerialway/access": { + "label": "Accés" + }, + "aerialway/bubble": { + "label": "Bombolla" + }, + "aerialway/capacity": { + "label": "Capacitat (per hora)", + "placeholder": "500, 2500, 5000..." + }, + "aerialway/duration": { + "label": "Duració (minuts)", + "placeholder": "1, 2, 3..." + }, + "aerialway/heating": { + "label": "Climatitzat" + }, + "aerialway/occupancy": { + "label": "Ocupació", + "placeholder": "2, 4, 8..." + }, + "aerialway/summer/access": { + "label": "Accés (estival)" + }, "aeroway": { "label": "Tipus" }, @@ -500,6 +535,9 @@ "building_area": { "label": "Edifici" }, + "cans": { + "label": "Accepta llaunes" + }, "capacity": { "label": "Capacitat", "placeholder": "50, 100, 200..." @@ -514,6 +552,9 @@ "anticlockwise": "en sentit contrari al de les agulles del rellotge" } }, + "clothes": { + "label": "Accepta roba" + }, "collection_times": { "label": "Horari de recollida" }, @@ -523,6 +564,9 @@ "country": { "label": "País" }, + "covered": { + "label": "Cobert" + }, "crossing": { "label": "Tipus" }, @@ -538,6 +582,9 @@ "description": { "label": "Descripció" }, + "electrified": { + "label": "Electrificació" + }, "elevation": { "label": "Elevació" }, @@ -560,6 +607,9 @@ "fixme": { "label": "Arregla'm" }, + "gauge": { + "label": "Ample" + }, "generator/method": { "label": "Mètode" }, @@ -569,6 +619,17 @@ "generator/type": { "label": "Tipus" }, + "glass": { + "label": "Accepta vidre" + }, + "golf_hole": { + "label": "Referència", + "placeholder": "Número de forat (1-18)" + }, + "handicap": { + "label": "Handicap", + "placeholder": "1-18" + }, "highway": { "label": "Tipus" }, @@ -584,6 +645,9 @@ "incline": { "label": "Pendent" }, + "information": { + "label": "Tipus" + }, "internet_access": { "label": "Accés a Internet", "options": { @@ -650,6 +714,13 @@ "operator": { "label": "Operador" }, + "paper": { + "label": "Accepta paper" + }, + "par": { + "label": "Par", + "placeholder": "3, 4, 5..." + }, "park_ride": { "label": "Aparca i viatja " }, @@ -660,6 +731,15 @@ "label": "Telèfon", "placeholder": "+31 42 123 4567" }, + "piste/difficulty": { + "label": "Dificultat" + }, + "piste/grooming": { + "label": "Adequació" + }, + "piste/type": { + "label": "Tipus" + }, "place": { "label": "Tipus" }, @@ -727,6 +807,9 @@ "cutting": "Trinxera" } }, + "studio_type": { + "label": "Tipus" + }, "supervised": { "label": "Supervisat" }, @@ -751,6 +834,9 @@ "tree_type": { "label": "Tipus" }, + "tunnel": { + "label": "Túnel" + }, "vending": { "label": "Tipus de mercaderies" }, @@ -782,6 +868,36 @@ "name": "Adreça", "terms": "Adreça, Direcció, Domicili" }, + "aerialway": { + "name": "Transport per cable" + }, + "aerialway/cable_car": { + "name": "Telefèric" + }, + "aerialway/chair_lift": { + "name": "Telecadira" + }, + "aerialway/gondola": { + "name": "Telecabina" + }, + "aerialway/magic_carpet": { + "name": "Cinta remuntadora" + }, + "aerialway/platter": { + "name": "Teleesquí individual" + }, + "aerialway/pylon": { + "name": "Piló d'estructura de transport per cable" + }, + "aerialway/rope_tow": { + "name": "Corda remuntadora" + }, + "aerialway/station": { + "name": "Estació de transport per cable" + }, + "aerialway/t-bar": { + "name": "Teleesquí doble" + }, "aeroway": { "name": "Infraestructura aeroportuària", "terms": "Infraestructura aeroportuària, Instal·lacions aeroportuàries, Àrea aeroportuària" @@ -876,6 +992,9 @@ "name": "Cinema", "terms": "Cinema, Cine, Local de projeccions cinematogràfiques, Local d'esbarjo" }, + "amenity/clinic": { + "name": "Clínica" + }, "amenity/college": { "name": "Campus universitari", "terms": "Col·legi, Campus universitàri, universitat, facultat" @@ -884,6 +1003,12 @@ "name": "Jutjat", "terms": "Jutjats, Palau de justícia" }, + "amenity/dentist": { + "name": "Dentista" + }, + "amenity/doctor": { + "name": "Doctor" + }, "amenity/drinking_water": { "name": "Aigua apte per al consum", "terms": "Aigua potable, Aigua apte per al consum humà, Aigua per beure" @@ -974,6 +1099,9 @@ "amenity/ranger_station": { "name": "Base d'Agents Rurals" }, + "amenity/recycling": { + "name": "Reciclatge" + }, "amenity/restaurant": { "name": "Restaurant", "terms": "Restaurant, Lloc per menjar, Bistro, Wok, Trattoria, Pizzeria" @@ -985,6 +1113,9 @@ "amenity/shelter": { "name": "Refugi" }, + "amenity/studio": { + "name": "Estudi" + }, "amenity/swimming_pool": { "name": "Piscina", "terms": "Piscina, Instal·lació aquàtica" @@ -1016,6 +1147,9 @@ "amenity/vending_machine": { "name": "Màquina de vending" }, + "amenity/veterinary": { + "name": "Veterinari" + }, "amenity/waste_basket": { "name": "Paperera", "terms": "Paperera, Basura, Paperera pública, Contenidor, deixalles, brossa" @@ -1122,6 +1256,81 @@ "building/residential": { "name": "Edifici residencial" }, + "craft/basket_maker": { + "name": "Cistellaire" + }, + "craft/beekeeper": { + "name": "Apicultor" + }, + "craft/blacksmith": { + "name": "Ferrer" + }, + "craft/boatbuilder": { + "name": "Constructor d'embarcacions" + }, + "craft/bookbinder": { + "name": "Enquadernador" + }, + "craft/brewery": { + "name": "Cerveseria" + }, + "craft/carpenter": { + "name": "Fuster" + }, + "craft/carpet_layer": { + "name": "Moquetista" + }, + "craft/caterer": { + "name": "Servei de càtering" + }, + "craft/clockmaker": { + "name": "Rellotger" + }, + "craft/dressmaker": { + "name": "Sastreria" + }, + "craft/electrician": { + "name": "Electricista" + }, + "craft/gardener": { + "name": "Jardiner" + }, + "craft/hvac": { + "name": "Empresa d'instal·lacions climàtiques" + }, + "craft/jeweler": { + "name": "Joieria" + }, + "craft/metal_construction": { + "name": "Construccions metàliques" + }, + "craft/optician": { + "name": "Òptica" + }, + "craft/painter": { + "name": "pintor" + }, + "craft/photographer": { + "name": "Fotògraf" + }, + "craft/photographic_labratory": { + "name": "Laboratori fotogràfic" + }, + "craft/plumber": { + "name": "Llauner" + }, + "craft/sculpter": { + "name": "Escultor" + }, + "craft/watchmaker": { + "name": "Fabricant de rellotges" + }, + "craft/window_construction": { + "name": "Fabricant de finestres" + }, + "embankment": { + "name": "Terraplè " + }, "emergency/ambulance_station": { "name": "Parada d'ambulàncies" }, @@ -1141,6 +1350,30 @@ "footway/sidewalk": { "name": "Vorera" }, + "golf/bunker": { + "name": "Bunker" + }, + "golf/fairway": { + "name": "Fairway" + }, + "golf/green": { + "name": "Green" + }, + "golf/hole": { + "name": "Forat" + }, + "golf/lateral_water_hazard": { + "name": "Obstacle d'aigua lateral" + }, + "golf/rough": { + "name": "Rough" + }, + "golf/tee": { + "name": "Àrea inicial" + }, + "golf/water_hazard": { + "name": "Obstacle d'aigua" + }, "highway": { "name": "Via" }, @@ -1190,6 +1423,9 @@ "highway/residential": { "name": "Carrer" }, + "highway/rest_area": { + "name": "Àrea de descans" + }, "highway/road": { "name": "Carretera sense classificació" }, @@ -1218,6 +1454,9 @@ "name": "Carrer d'aparcament", "terms": "Passadís de pàrquing, pàrquing, parking, aparcament, carrer interior d'aparcament, carrer per aparcar, carrer de pàrqquing, carrer de parking" }, + "highway/services": { + "name": "Àrea de servei" + }, "highway/steps": { "name": "Escales" }, @@ -1404,6 +1643,12 @@ "man_made/cutline": { "name": "Línia de tall" }, + "man_made/embankment": { + "name": "Terraplè " + }, + "man_made/flagpole": { + "name": "Màstil" + }, "man_made/lighthouse": { "name": "Far" }, @@ -1434,6 +1679,18 @@ "man_made/water_works": { "name": "Planta potabilitzadora" }, + "military/airfield": { + "name": "Aeròdrom militar" + }, + "military/barracks": { + "name": "Caserna militar" + }, + "military/bunker": { + "name": "Búnquer" + }, + "military/range": { + "name": "Terreny per a usos militars" + }, "natural": { "name": "Natural" }, @@ -1557,6 +1814,9 @@ "office/travel_agent": { "name": "Agència de viatges" }, + "piste": { + "name": "Pista d'esquí" + }, "place": { "name": "Lloc" }, @@ -1608,6 +1868,12 @@ "power/transformer": { "name": "Transformador" }, + "public_transport/platform": { + "name": "Plataforma" + }, + "public_transport/stop_position": { + "name": "Posició d'aturada" + }, "railway": { "name": "Ferrocarril" }, @@ -1617,6 +1883,9 @@ "railway/disused": { "name": "Vià de tren fora d'ús" }, + "railway/funicular": { + "name": "Funicular" + }, "railway/halt": { "name": "Parada de Ferrocarril" }, @@ -1626,6 +1895,9 @@ "railway/monorail": { "name": "Monocarril" }, + "railway/narrow_gauge": { + "name": "Ferrocarril de via estreta" + }, "railway/platform": { "name": "Andana " }, diff --git a/vendor/assets/iD/iD/locales/cs.json b/vendor/assets/iD/iD/locales/cs.json index 50e8dec0e..0815f84c9 100644 --- a/vendor/assets/iD/iD/locales/cs.json +++ b/vendor/assets/iD/iD/locales/cs.json @@ -252,7 +252,11 @@ "incomplete": "", "feature_list": "Hledat objekty", "edit": "Editovat objekt", - "none": "Žádné" + "none": "Žádné", + "node": "Uzel", + "way": "Cesta", + "relation": "Relace", + "location": "Poloha" }, "background": { "title": "Pozadí", @@ -312,6 +316,7 @@ "untagged_area": "Neoznačená plocha", "many_deletions": "Pokoušíte se smazat {n} objektů. Opravdu to chcete provést? Odstranilo by je z globální mapy na openstreetmap.org.", "tag_suggests_area": "Vlastnost {tag} obvykle označuje plochu - ale zvolený objekt není plocha", + "untagged_tooltip": "Zvolte typ objektu - co je tato {geometry} zač.", "deprecated_tags": "Zastaralé vlastnosti: {tag}" }, "zoom": { @@ -388,6 +393,12 @@ }, "presets": { "categories": { + "category-building": { + "name": "Budova" + }, + "category-golf": { + "name": "Golf" + }, "category-landuse": { "name": "Využití krajiny" }, @@ -402,6 +413,12 @@ }, "category-route": { "name": "Trasa" + }, + "category-water-area": { + "name": "Voda" + }, + "category-water-line": { + "name": "Voda" } }, "fields": { @@ -442,6 +459,9 @@ } } }, + "access_simple": { + "label": "Přístup" + }, "address": { "label": "Adresa", "placeholders": { @@ -455,6 +475,33 @@ "admin_level": { "label": "Administrativní úroveň" }, + "aerialway": { + "label": "Typ" + }, + "aerialway/access": { + "label": "Přístup" + }, + "aerialway/bubble": { + "label": "Stříška" + }, + "aerialway/capacity": { + "label": "Odbaví lidí (za hodinu)", + "placeholder": "500, 2500, 5000..." + }, + "aerialway/duration": { + "label": "Délka cesty (v minutách)", + "placeholder": "1, 2, 3..." + }, + "aerialway/heating": { + "label": "Vytápěno" + }, + "aerialway/occupancy": { + "label": "Kapacita (počet cestujících)", + "placeholder": "2, 4, 8..." + }, + "aerialway/summer/access": { + "label": "Přístup v létě" + }, "aeroway": { "label": "Typ" }, @@ -488,6 +535,9 @@ "building_area": { "label": "Budova" }, + "cans": { + "label": "Pro plechovky" + }, "capacity": { "label": "Kapacita", "placeholder": "50, 100, 200..." @@ -502,6 +552,9 @@ "anticlockwise": "Proti směru hod. ručiček" } }, + "clothes": { + "label": "Pro textil" + }, "collection_times": { "label": "Čas výběru" }, @@ -511,6 +564,9 @@ "country": { "label": "Stát" }, + "covered": { + "label": "Zastřešeno" + }, "crossing": { "label": "Typ" }, @@ -526,6 +582,9 @@ "description": { "label": "Popis" }, + "electrified": { + "label": "Elektrifikace" + }, "elevation": { "label": "Nadmořská výška" }, @@ -548,6 +607,9 @@ "fixme": { "label": "Opravit" }, + "gauge": { + "label": "Rozchod" + }, "generator/method": { "label": "Princip" }, @@ -557,6 +619,17 @@ "generator/type": { "label": "Typ" }, + "glass": { + "label": "Pro sklo" + }, + "golf_hole": { + "label": "Číslo", + "placeholder": "Číslo jamky (1-18)" + }, + "handicap": { + "label": "Handicap", + "placeholder": "1-18" + }, "highway": { "label": "Typ" }, @@ -572,6 +645,9 @@ "incline": { "label": "Sklon" }, + "information": { + "label": "Typ" + }, "internet_access": { "label": "Přístup k internetu", "options": { @@ -638,6 +714,13 @@ "operator": { "label": "Provozovatel" }, + "paper": { + "label": "Pro papír" + }, + "par": { + "label": "Par", + "placeholder": "3, 4, 5..." + }, "park_ride": { "label": "Parkoviště P+R" }, @@ -648,6 +731,15 @@ "label": "Telefon", "placeholder": "+31 42 123 4567" }, + "piste/difficulty": { + "label": "Obtížnost" + }, + "piste/grooming": { + "label": "Úprava" + }, + "piste/type": { + "label": "Typ" + }, "place": { "label": "Typ" }, @@ -693,6 +785,9 @@ "shelter": { "label": "Přístřešek" }, + "shelter_type": { + "label": "Typ" + }, "shop": { "label": "Typ" }, @@ -708,10 +803,13 @@ "options": { "bridge": "Most", "tunnel": "Tunel", - "embankment": "Násep", + "embankment": "Násyp", "cutting": "Zářez" } }, + "studio_type": { + "label": "Typ" + }, "supervised": { "label": "Hlídané" }, @@ -733,6 +831,12 @@ "trail_visibility": { "label": "Viditelnost stezky" }, + "tree_type": { + "label": "Typ" + }, + "tunnel": { + "label": "Tunel" + }, "vending": { "label": "Druh zboží" }, @@ -764,6 +868,46 @@ "name": "Adresa", "terms": "adresa,PSČ,ulice" }, + "aerialway": { + "name": "Lanovka/vlek", + "terms": "lanovka,vlek,lanová dráha,sedačková lanovka,kabinková lanovka,kabinová lanovka,pozemní lanovka,lyžařský vlek,výtah,ozubnicová dráha" + }, + "aerialway/cable_car": { + "name": "Kabinová lanovka", + "terms": "kabinková lanovka,kabinová lanovka,kabinková lanová dráha,kabinová lanová dráha" + }, + "aerialway/chair_lift": { + "name": "Sedačková lanovka", + "terms": "sedačková lanovka,sedačková lanová dráha,lyžařská lanovka,visutý vlek" + }, + "aerialway/gondola": { + "name": "Kabinková lanovka", + "terms": "gondola,gondolová lanovka,kabinková lanovka,kabinová lanovka,kabinová lanová dráha,kabinková lanová dráha" + }, + "aerialway/magic_carpet": { + "name": "Pásový dopravník", + "terms": "pásový dopravník,lyžařský vlek,vlek,lanovka na pásu,pohybivý pás,eskalátor" + }, + "aerialway/platter": { + "name": "Vlek - talíř (poma)", + "terms": "talířový vlek,talířový teleskopický vlek,poma,lyžařský vlek" + }, + "aerialway/pylon": { + "name": "Sloup", + "terms": "sloup lanovky,stožár lanovky" + }, + "aerialway/rope_tow": { + "name": "Vlek - kotvičkový", + "terms": "lyžařský vlek,vlek,kotvička,lanový vlek" + }, + "aerialway/station": { + "name": "Stanice lanovky", + "terms": "stanice lanovky,stanice lanové dráhy,zastávka lanovky,zastávka lanové dráhy" + }, + "aerialway/t-bar": { + "name": "Vlek - dvojmístná kotva", + "terms": "vlek,lyžařský vlek,kotva,dvojmístná kotva,dvoumístná kotva" + }, "aeroway": { "name": "Přistávací dráha", "terms": "letitiště,přistávací dráha,letadlo,terminál" @@ -773,7 +917,7 @@ "terms": "letadlo,letiště,přistávací dráha" }, "aeroway/apron": { - "name": "Parkovací plocha", + "name": "Odbavovací plocha", "terms": "apron" }, "aeroway/gate": { @@ -860,6 +1004,14 @@ "name": "Kino", "terms": "kino,film,cinema,multikino,bio,biograf,kinematograf" }, + "amenity/clinic": { + "name": "Poliklinika", + "terms": "poliklinika,klinika,nemocnice,ambulance,špitál" + }, + "amenity/clock": { + "name": "Hodiny", + "terms": "hodiny,orloj,hodinky,chronometr,ciferník,čas,ukazatel času" + }, "amenity/college": { "name": "College", "terms": "Vysoká škola,univerzita,akademie" @@ -868,6 +1020,14 @@ "name": "Soud", "terms": "soud,soudní budova,soudní dvůr" }, + "amenity/dentist": { + "name": "Zubař", + "terms": "zubař,dentista,zubařská ordinace,ordinace" + }, + "amenity/doctor": { + "name": "Lékař", + "terms": "lékař,doktor,praktický lékař,ordinace,medik" + }, "amenity/drinking_water": { "name": "Pitná voda", "terms": "pítko,fontána,fontánka" @@ -912,6 +1072,10 @@ "name": "Trhoviště", "terms": "tržiště,trh" }, + "amenity/parking": { + "name": "Parkoviště", + "terms": "parkoviště,parking,parkování,stání,garáž,garáže" + }, "amenity/pharmacy": { "name": "Lékárna", "terms": "lékárna,apatyka" @@ -956,6 +1120,10 @@ "name": "Návštěvnické centrum", "terms": "návštěvnické centrum, návštěvní centrum" }, + "amenity/recycling": { + "name": "Recyklace", + "terms": "recyklace,kontejner,recyklační centrum,sběr,sběrna,sběrné suroviny,sběr odpadu,odpad,odpadky,popelnice" + }, "amenity/restaurant": { "name": "Restaurace", "terms": "bar,jídelna,kantýna,bistro,bufet,rychlé občerstvení,fast food,hamburger,restaurace,restaurant,hostinec,pohostinství,krčma,gastronomie,občerstvení,stánek,jídlo,obědy,gril,pizzeria,čína,kebab" @@ -964,6 +1132,14 @@ "name": "Škola", "terms": "univerzita,universita,fakulta,vysoká škola,univerzitní,universitní,katedra,ústav,college" }, + "amenity/shelter": { + "name": "Přístřešek", + "terms": "přístřešek,střecha,budka,bouda,čekárna" + }, + "amenity/studio": { + "name": "Studio", + "terms": "studio,nahrávací studio,rozhlasové studio,rádiové studio,radiové studio,televizní studio,filmové studio,trikové studio,dabingové studio" + }, "amenity/swimming_pool": { "name": "Plavecký bazén", "terms": "koupaliště,bazén,plovárna" @@ -996,6 +1172,10 @@ "name": "Prodejní automat", "terms": "automat,prodejní automat" }, + "amenity/veterinary": { + "name": "Veterina", + "terms": "veterina,veterinář,zvíře" + }, "amenity/waste_basket": { "name": "Odpadkový koš", "terms": "popelnice,kontejner,odpadkový koš,odpadky" @@ -1112,6 +1292,190 @@ "name": "Obytná budova", "terms": "obytná budova,ubytování,bývání,byt" }, + "craft/basket_maker": { + "name": "Košíkář", + "terms": "košíkář,košíkářství,proutěný,pletení" + }, + "craft/beekeeper": { + "name": "Včelař", + "terms": "včelař,včely,úl,med,prodej medu,včelařství" + }, + "craft/blacksmith": { + "name": "Kovář", + "terms": "kovář,kovářství" + }, + "craft/boatbuilder": { + "name": "Loďař", + "terms": "loďařství,loďař,stavba lodí,stavba člunů" + }, + "craft/bookbinder": { + "name": "Knihař", + "terms": "knihařství,knihař,vazba knih,vazač,vazačství" + }, + "craft/brewery": { + "name": "Pivovar", + "terms": "pivovar,pivo,minipivovar" + }, + "craft/carpenter": { + "name": "Tesař", + "terms": "tesařství,tesař,dřevo" + }, + "craft/carpet_layer": { + "name": "Pokladač koberců", + "terms": "pokladač koberců,pokladačství koberců,koberce" + }, + "craft/caterer": { + "name": "Catering", + "terms": "catering,dodavatel občerstvení,dodavatelství občerstvení" + }, + "craft/clockmaker": { + "name": "Hodinář (ne hodinky)", + "terms": "hodinářství,hodinář,hodiny" + }, + "craft/confectionary": { + "name": "Cukrář", + "terms": "cukrářství,cukrář,cukrovinky,sladkost" + }, + "craft/dressmaker": { + "name": "Švadlena", + "terms": "švadlena,krejčí,krejčová,šaty,dámská krejčová" + }, + "craft/electrician": { + "name": "Elektrikář", + "terms": "elektrikář,elektrikářství" + }, + "craft/gardener": { + "name": "Zahradník", + "terms": "zahradník,zahradnictví,zahradní architekt" + }, + "craft/glaziery": { + "name": "Práce se sklem", + "terms": "sklenář,sklenářství,sklo,práce se sklem" + }, + "craft/handicraft": { + "name": "Řemeslník", + "terms": "řemeslník,řemeslo,řemeslná výroba,ruční výroba,rukodělný,rukodělná" + }, + "craft/hvac": { + "name": "Topenář, vzduchotechnik", + "terms": "topenář,topení,klimatizace,vzduchotechnika" + }, + "craft/insulator": { + "name": "Firma na izolace", + "terms": "zateplovlování,zateplení,izolace" + }, + "craft/jeweler": { + "name": "Klenotník", + "terms": "klenotnictví,klenotník,zlatnictví,zlatník" + }, + "craft/key_cutter": { + "name": "Výroba klíčů", + "terms": "klíče,klíčník,výroba klíčů,zámečník,zámečnictví" + }, + "craft/locksmith": { + "name": "Zámečník", + "terms": "zámečník,zámečnictví" + }, + "craft/metal_construction": { + "name": "Kovovýroba", + "terms": "kovovýroba,výroba z kovu,práce s kovem" + }, + "craft/optician": { + "name": "Optika", + "terms": "optik,optika,brýle,zrak" + }, + "craft/painter": { + "name": "Malíř", + "terms": "malíř,malířství" + }, + "craft/photographer": { + "name": "Fotograf", + "terms": "fotograf,fotografie,ateliér" + }, + "craft/photographic_labratory": { + "name": "Fotolaboratoř", + "terms": "fotolaboratoř,fotografická laboratoř,vyvolání,film" + }, + "craft/plasterer": { + "name": "Štukatér", + "terms": "štukatér,škukatérství,štuky" + }, + "craft/plumber": { + "name": "Instalatér", + "terms": "instalatér,instalatérství,vodoinstalatér" + }, + "craft/pottery": { + "name": "Hrnčíř", + "terms": "hrnčíř,hrnčířství,keramika" + }, + "craft/rigger": { + "name": "Výroba takeláže", + "terms": "výroba takeláže,takeláž,plachtoví,ráhnoví,lanoví,stěžně" + }, + "craft/roofer": { + "name": "Pokrývač", + "terms": "pokrývač,pokrývačství" + }, + "craft/saddler": { + "name": "Sedlář", + "terms": "sedlář,sedlářství" + }, + "craft/sailmaker": { + "name": "Výroba plachet", + "terms": "plachty,plachetář,výroba plachet" + }, + "craft/sawmill": { + "name": "Pila", + "terms": "pila,pilař,dřevař,dřevařský,pilařský" + }, + "craft/scaffolder": { + "name": "Lešenář", + "terms": "lešenář,lešenářství,lešení" + }, + "craft/sculpter": { + "name": "Sochař", + "terms": "sochař,sochařství,socha" + }, + "craft/shoemaker": { + "name": "Švec", + "terms": "švec,ševcovství,obuvník,obuvnictví" + }, + "craft/stonemason": { + "name": "Kameník", + "terms": "kameník,kamenictví" + }, + "craft/sweep": { + "name": "Kominík", + "terms": "kominík,kominictví" + }, + "craft/tailor": { + "name": "Krejčí", + "terms": "krejčí,krejčovství,švadlena,dámská krejčová,krejčová" + }, + "craft/tiler": { + "name": "Obkladač", + "terms": "obkladač,obkladačství,pokladač,pokladačství,dlaždič,dlaždičství" + }, + "craft/tinsmith": { + "name": "Klempíř", + "terms": "klempíř,klempířství,plech" + }, + "craft/upholsterer": { + "name": "Čalouník", + "terms": "čalouník,čalounictví" + }, + "craft/watchmaker": { + "name": "Hodinář", + "terms": "hodinářství,hodinky" + }, + "craft/window_construction": { + "name": "Výroba oken", + "terms": "sklenář,sklenářství,výroba oken,okenářství" + }, + "embankment": { + "name": "Násyp", + "terms": "násyp,násep,hráz,bariéra" + }, "emergency/ambulance_station": { "name": "Stanice záchranné služby", "terms": "ambulance,pohotovost,zdravotní pohotovost,pohotovostní stanice,záchranná služba,služba" @@ -1128,6 +1492,46 @@ "name": "Vchod", "terms": "vchod,východ,únikový východ,brána,dveře,vrata" }, + "footway/crossing": { + "name": "Přechod pro chodce", + "terms": "přechod pro chodce,zebra,přechod,přechod pro pěší" + }, + "footway/sidewalk": { + "name": "Chodník po straně silnice", + "terms": "chodník,obrubník" + }, + "golf/bunker": { + "name": "Pískový bunker", + "terms": "pískový bunker,písková překážka,písečná překážka,bunker,hazard" + }, + "golf/fairway": { + "name": "Fairway", + "terms": "fairway,nízká tráva" + }, + "golf/green": { + "name": "Jamkoviště", + "terms": "jamkoviště,green" + }, + "golf/hole": { + "name": "Dráha do jamky", + "terms": "jamka,dráha od odpaliště,dráha do jamkoviště,dráha" + }, + "golf/lateral_water_hazard": { + "name": "Vodní překážka po straně", + "terms": "vodní překážka,hazard,jezírko" + }, + "golf/rough": { + "name": "Rough", + "terms": "rough,vysoká tráva" + }, + "golf/tee": { + "name": "Odpaliště", + "terms": "odpaliště,tee,týčko,tee box" + }, + "golf/water_hazard": { + "name": "Vodní překážka", + "terms": "vodní překážka,jezírko,hazard" + }, "highway": { "name": "Pozemní komunikace", "terms": "komunikace" @@ -1192,6 +1596,10 @@ "name": "Ulice", "terms": "obytná zóna" }, + "highway/rest_area": { + "name": "Odpočívadlo", + "terms": "odpočívadlo,místo k zastavení,dálniční odpočívadlo" + }, "highway/road": { "name": "Silnice neznámého typu", "terms": "neznámá komunikace" @@ -1228,6 +1636,10 @@ "name": "Parkovací ulička", "terms": "jízdní pruh na parkovišti" }, + "highway/services": { + "name": "Odpočívadlo se službami", + "terms": "odpočívadlo,odpočívadlo se službami,čerpací stanice,dálniční odpočívadlo" + }, "highway/steps": { "name": "Schody", "terms": "schody,schodiště" @@ -1332,10 +1744,14 @@ "name": "Zemědělská půda", "terms": "pole,farma,dobytek,zahrady,pěstitelská plocha" }, - "landuse/farmyard": { - "name": "Farma", + "landuse/farmland": { + "name": "Zemědělská půda", "terms": "pole,farma,dobytek,zahrady,pěstitelská plocha" }, + "landuse/farmyard": { + "name": "Statek", + "terms": "statek,farma,zemědělství,usedlost,JZD,družstvo" + }, "landuse/forest": { "name": "Les", "terms": "les,hospodářský les" @@ -1472,6 +1888,14 @@ "name": "Průsek", "terms": "lesní průsek,holina" }, + "man_made/embankment": { + "name": "Násyp", + "terms": "násyp,násep,hráz,bariéra" + }, + "man_made/flagpole": { + "name": "Vlajka", + "terms": "prapor,vlajka,stožár,vlajkový stožár" + }, "man_made/lighthouse": { "name": "Maják", "terms": "maják,světlo" @@ -1512,6 +1936,22 @@ "name": "Vodárna", "terms": "vodárna,úpravna vody" }, + "military/airfield": { + "name": "Vojenské letiště", + "terms": "vojenské letiště,letiště,letecká základna" + }, + "military/barracks": { + "name": "Kasárny", + "terms": "kasárny,kasárna,armáda" + }, + "military/bunker": { + "name": "Opevnění", + "terms": "bunkr,opevnění,fortifikace,šance,řopík" + }, + "military/range": { + "name": "Vojenská střelnice", + "terms": "střelnice,vojenská střelnice" + }, "natural": { "name": "Přírodní objekt", "terms": "příroda,přírodní,naturální,přirozený" @@ -1596,6 +2036,90 @@ "name": "Kanceláře", "terms": "kancelář,kancelářský,úřad,úřadovna,administrativa,office,sídlo" }, + "office/accountant": { + "name": "Finanční poradce", + "terms": "finanční poradce,účetní,daňový poradce" + }, + "office/administrative": { + "name": "Místní úřad", + "terms": "místní úřad,městský úřad,krajský úřad,kancelář,administrativa,samospráva" + }, + "office/architect": { + "name": "Architekt", + "terms": "architekt,stavební,architektonické studio" + }, + "office/company": { + "name": "Kancelář", + "terms": "kancelář,firma,společnost,soukromá firma,soukromá společnost,sídlo,s.r.o." + }, + "office/educational_institution": { + "name": "Vzdělávací instituce", + "terms": "škola,kancelář,vzdělání,výuka,univerzita" + }, + "office/employment_agency": { + "name": "Úřad práce", + "terms": "úřad práce,pracovní úřad,zaměstnání,nezaměstnaní,nabídka práce" + }, + "office/estate_agent": { + "name": "Realitní kancelář", + "terms": "realitní kancelář,realitka,nemovitost" + }, + "office/financial": { + "name": "Finanční úřad", + "terms": "finanční úřad,daňový úřad,berní úřad,celní správa" + }, + "office/government": { + "name": "Státní úřad", + "terms": "státní úřad,státní instituce,ministerstvo" + }, + "office/insurance": { + "name": "Pojišťovna", + "terms": "pojišťovna,pojištění,zajišťovna" + }, + "office/it": { + "name": "IT specialista", + "terms": "IT specialista,počítačový specialista" + }, + "office/lawyer": { + "name": "Právní kancelář", + "terms": "právní kancelář,právník,právní zástupce,advokátní kancelář,advokát" + }, + "office/newspaper": { + "name": "Noviny", + "terms": "noviny,deník,časopis,vydavatelství" + }, + "office/ngo": { + "name": "Nezisková organizace", + "terms": "nezisková organizace,neziskovka,nevládní organizace" + }, + "office/physician": { + "name": "Praktický lékař", + "terms": "lékař,praktický lékař,medik,ordinace,doktor,praktický doktor" + }, + "office/political_party": { + "name": "Politická strana", + "terms": "politická strana,strana,politická organizace" + }, + "office/research": { + "name": "Výzkumný ústav", + "terms": "výzkumný ústav,akademie věd,akademie,ústav,vědecký ústav,vědecká instituce,věda,výzkum,vývoj,vědecké pracoviště,výzkumné pracoviště" + }, + "office/telecommunication": { + "name": "Telekomunikační společnost", + "terms": "telekomunikační společnost,telekomunikace,spoje,mobilní operátor,mobil,radiotelekomunikace" + }, + "office/therapist": { + "name": "Fyzioterapeut", + "terms": "fyzioterapeut,terapeut,rekonvalescence,masér" + }, + "office/travel_agent": { + "name": "Cestovní kancelář", + "terms": "cestovní kancelář,cestovka,cestovní agentura,zájezd,dovolená" + }, + "piste": { + "name": "Lyžařská stopa", + "terms": "stopa,lyžařská stopa,běžkařská stopa,běžky" + }, "place": { "name": "Místo", "terms": "obec,místo,lokace,město,vesnice" @@ -1664,6 +2188,14 @@ "name": "Transformátor", "terms": "transformátor,transformátorová stanice,elektrická stanice,adaptér" }, + "public_transport/platform": { + "name": "Nástupiště", + "terms": "nástupiště,nástupní plocha,platforma,nástupní ostrůvek,zastávkový mys,molo" + }, + "public_transport/stop_position": { + "name": "Místo zastavení", + "terms": "stání,zastávka,stanice,pozice,pozice stání,poloha,poloha stání" + }, "railway": { "name": "Železnice", "terms": "železnice, železniční dráha" @@ -1676,6 +2208,10 @@ "name": "Nepoužívaná železnice", "terms": "nepoužívaná železnice, nepoužívaná železniční dráha" }, + "railway/funicular": { + "name": "Lanová dráha", + "terms": "lanovka" + }, "railway/halt": { "name": "Železniční zastávka", "terms": "železniční zastávka, železniční stanice, vlaková zastávka, vlaková stanice, nádraží, železniční nástupiště, vlakové nástupiště" @@ -1688,8 +2224,12 @@ "name": "Jednokolejka", "terms": "jednokolejka,monorail,jednokolejná trať" }, + "railway/narrow_gauge": { + "name": "Úzkorozchodná dráha", + "terms": "úzkorozchodná dráha,úzkokolejná dráha,úzkokolejka" + }, "railway/platform": { - "name": "Nástupiště", + "name": "Železniční nástupiště", "terms": "železniční nástupiště, nástupiště" }, "railway/rail": { diff --git a/vendor/assets/iD/iD/locales/da.json b/vendor/assets/iD/iD/locales/da.json index be9f8e58e..ae6165068 100644 --- a/vendor/assets/iD/iD/locales/da.json +++ b/vendor/assets/iD/iD/locales/da.json @@ -252,7 +252,11 @@ "incomplete": "", "feature_list": "Søgefunktioner", "edit": "Ret objekt", - "none": "Ingen" + "none": "Ingen", + "node": "Punkt", + "way": "Vej", + "relation": "Relation", + "location": "Lokalitet" }, "background": { "title": "Baggrund", @@ -312,6 +316,7 @@ "untagged_area": "Område uden tags", "many_deletions": "Du er ved at slette {n} objekter. Er du sikker på du ønsker at gøre dette? Det vil slette dem fra det kort som alle andre ser på openstreetmap.org.", "tag_suggests_area": "Tagget {tag} antyder at linjen er et område, selvom det ikke er et område", + "untagged_tooltip": "Vælg en objekttype der beskriver hvad det {geometritype} er.", "deprecated_tags": "Forældede tags: {tags}" }, "zoom": { @@ -391,6 +396,9 @@ "category-building": { "name": "Bygning" }, + "category-golf": { + "name": "Golf" + }, "category-landuse": { "name": "Brug af land" }, @@ -467,6 +475,33 @@ "admin_level": { "label": "Administrativt niveau" }, + "aerialway": { + "label": "Type" + }, + "aerialway/access": { + "label": "Adgang" + }, + "aerialway/bubble": { + "label": "Skikabine" + }, + "aerialway/capacity": { + "label": "Kapacitet (per time)", + "placeholder": "500, 2500, 5000..." + }, + "aerialway/duration": { + "label": "Varighed (minutter)", + "placeholder": "1, 2, 3..." + }, + "aerialway/heating": { + "label": "Opvarmet" + }, + "aerialway/occupancy": { + "label": "Belægning", + "placeholder": "2, 4, 8..." + }, + "aerialway/summer/access": { + "label": "Adgang (sommer)" + }, "aeroway": { "label": "Type" }, @@ -500,6 +535,9 @@ "building_area": { "label": "Bygning" }, + "cans": { + "label": "Accepterer dåser" + }, "capacity": { "label": "Kapacitet", "placeholder": "50, 100, 200..." @@ -514,6 +552,9 @@ "anticlockwise": "Mod uret" } }, + "clothes": { + "label": "Acceptere tøj" + }, "collection_times": { "label": "Indsamlingstidspunkt" }, @@ -523,6 +564,9 @@ "country": { "label": "Land" }, + "covered": { + "label": "Overdækket" + }, "crossing": { "label": "Type" }, @@ -538,6 +582,9 @@ "description": { "label": "Beskrivelse" }, + "electrified": { + "label": "Elektrificering" + }, "elevation": { "label": "Højde over havet" }, @@ -560,6 +607,9 @@ "fixme": { "label": "Ret mig" }, + "gauge": { + "label": "Sporvidde" + }, "generator/method": { "label": "Metode" }, @@ -569,6 +619,17 @@ "generator/type": { "label": "Type" }, + "glass": { + "label": "Acceptere glas" + }, + "golf_hole": { + "label": "Reference", + "placeholder": "Hul nummer (1-18)" + }, + "handicap": { + "label": "Handikap", + "placeholder": "1-18" + }, "highway": { "label": "Type" }, @@ -584,6 +645,9 @@ "incline": { "label": "Stigning" }, + "information": { + "label": "Type" + }, "internet_access": { "label": "Internetadgang", "options": { @@ -650,6 +714,13 @@ "operator": { "label": "Operatør" }, + "paper": { + "label": "Accepterer papir" + }, + "par": { + "label": "Par", + "placeholder": "3, 4, 5..." + }, "park_ride": { "label": "Park and ride-anlæg" }, @@ -660,6 +731,15 @@ "label": "Telefon", "placeholder": "+31 42 123 4567" }, + "piste/difficulty": { + "label": "Vanskelighedsniveau" + }, + "piste/grooming": { + "label": "Sikkerhed" + }, + "piste/type": { + "label": "Type" + }, "place": { "label": "Type" }, @@ -727,6 +807,9 @@ "cutting": "Forsænkning" } }, + "studio_type": { + "label": "Type" + }, "supervised": { "label": "Supervision" }, @@ -751,6 +834,9 @@ "tree_type": { "label": "Type" }, + "tunnel": { + "label": "Tunnel" + }, "vending": { "label": "Gods type" }, @@ -782,6 +868,46 @@ "name": "Adresse", "terms": "adresse, adresser" }, + "aerialway": { + "name": "Skiliftbane", + "terms": "Skiliftbane, Skilift" + }, + "aerialway/cable_car": { + "name": "Svævebane", + "terms": "Svævebane, Gongolbane" + }, + "aerialway/chair_lift": { + "name": "Skilift", + "terms": "Skilift, Stolelift" + }, + "aerialway/gondola": { + "name": "Gondol", + "terms": "Gondol" + }, + "aerialway/magic_carpet": { + "name": "Rullebane", + "terms": "Rullebane, Skirullebane" + }, + "aerialway/platter": { + "name": "Knaplift", + "terms": "Knaplift" + }, + "aerialway/pylon": { + "name": "Skilifttårn", + "terms": "Skilifttårn" + }, + "aerialway/rope_tow": { + "name": "Tovlift", + "terms": "Tovlift" + }, + "aerialway/station": { + "name": "Skiliftstation", + "terms": "Skiliftstation" + }, + "aerialway/t-bar": { + "name": "Træklift", + "terms": "Træklift" + }, "aeroway": { "name": "Lufthavnsvej", "terms": "Lufthavnsveje" @@ -878,6 +1004,14 @@ "name": "Biograf", "terms": "Biograf, Bio" }, + "amenity/clinic": { + "name": "Klinik", + "terms": "Klinik" + }, + "amenity/clock": { + "name": "Ur", + "terms": "Ur" + }, "amenity/college": { "name": "Gymnasie", "terms": "Gymnasie, Handelsgymnasie" @@ -886,6 +1020,14 @@ "name": "Domstolsbygning", "terms": "Domstolsbygning, Domstol" }, + "amenity/dentist": { + "name": "Tandlæge", + "terms": "Tandlæge" + }, + "amenity/doctor": { + "name": "Læge", + "terms": "Læge, Doktor" + }, "amenity/drinking_water": { "name": "Drikkevand", "terms": "" @@ -978,6 +1120,10 @@ "name": "Rangerstation", "terms": "Rangerstation" }, + "amenity/recycling": { + "name": "Genbrug", + "terms": "Genbrug" + }, "amenity/restaurant": { "name": "Restaurant", "terms": "Restaurant, Spisested, Spisehus" @@ -990,6 +1136,10 @@ "name": "Shelter", "terms": "Shelter, læskur" }, + "amenity/studio": { + "name": "Studie", + "terms": "Studie" + }, "amenity/swimming_pool": { "name": "Svømmebassin", "terms": "Svømmebassin, Swimming Pool, Pool" @@ -1022,6 +1172,10 @@ "name": "Automat", "terms": "Automat" }, + "amenity/veterinary": { + "name": "Dyrelæge", + "terms": "Dyrelæge, Veterinærdyrelæge" + }, "amenity/waste_basket": { "name": "Skraldespand", "terms": "" @@ -1138,6 +1292,186 @@ "name": "Beboelsesbygning", "terms": "Beboelsesbygning, Parcelhus" }, + "craft/basket_maker": { + "name": "Kurvemager", + "terms": "Kurvemager" + }, + "craft/beekeeper": { + "name": "Biavler", + "terms": "Biavler" + }, + "craft/blacksmith": { + "name": "Smed", + "terms": "Smed, Grovsmed" + }, + "craft/boatbuilder": { + "name": "Bådbygger", + "terms": "Bådbygger, Skibsbygger" + }, + "craft/bookbinder": { + "name": "Bogbinder", + "terms": "Bogbinder" + }, + "craft/brewery": { + "name": "Bryggeri", + "terms": "Bryggeri, Minibryggeri" + }, + "craft/carpenter": { + "name": "Tæppelægger", + "terms": "Tæppelægger" + }, + "craft/carpet_layer": { + "name": "Tæppelægger", + "terms": "Tæppelægger" + }, + "craft/caterer": { + "name": "Catering", + "terms": "Catering" + }, + "craft/clockmaker": { + "name": "Urmager", + "terms": "Urmager" + }, + "craft/confectionary": { + "name": "Slikbutik", + "terms": "Slikbutik, Konfekturebutik" + }, + "craft/dressmaker": { + "name": "Skrædder", + "terms": "Skrædder" + }, + "craft/electrician": { + "name": "Elektriker", + "terms": "Elektriker, Elektrikerfirma" + }, + "craft/gardener": { + "name": "Gartner", + "terms": "Gartner" + }, + "craft/glaziery": { + "name": "Vinduemager", + "terms": "Vinduemager" + }, + "craft/handicraft": { + "name": "Håndværker", + "terms": "Håndværker" + }, + "craft/hvac": { + "name": "Ventilationsfirma", + "terms": "Ventilationsfirma" + }, + "craft/insulator": { + "name": "Isolationsfirma", + "terms": "Isolationsfirma, isolatør" + }, + "craft/jeweler": { + "name": "Juvelér", + "terms": "Juvelér, Guldsmed" + }, + "craft/key_cutter": { + "name": "Hælebar", + "terms": "Hælebar" + }, + "craft/locksmith": { + "name": "Låsesmed", + "terms": "Låsesmed" + }, + "craft/metal_construction": { + "name": "Metalskærer", + "terms": "Metalskærer" + }, + "craft/optician": { + "name": "Optiker", + "terms": "Optiker, Brillebutik" + }, + "craft/painter": { + "name": "maler", + "terms": "Maler" + }, + "craft/photographer": { + "name": "Fotograf", + "terms": "Fotograf" + }, + "craft/photographic_labratory": { + "name": "Fotolaboratorie", + "terms": "Fotolaboratorie" + }, + "craft/plasterer": { + "name": "Oppudser", + "terms": "Oppudser" + }, + "craft/plumber": { + "name": "Blikkenslager", + "terms": "Blikkenslager" + }, + "craft/pottery": { + "name": "Pottemager", + "terms": "Pottemager" + }, + "craft/rigger": { + "name": "Rebslager", + "terms": "Rebslager" + }, + "craft/roofer": { + "name": "Tagdækker", + "terms": "Tagdækker, Tagdækningsfirma" + }, + "craft/saddler": { + "name": "Sadelmager", + "terms": "Sadelmager" + }, + "craft/sailmaker": { + "name": "sejlmager", + "terms": "Sejlmager" + }, + "craft/sawmill": { + "name": "Savmølle", + "terms": "Savmølle, Savværk" + }, + "craft/scaffolder": { + "name": "Stilladsfirma", + "terms": "Stilladsfirma" + }, + "craft/sculpter": { + "name": "Skulpturmager", + "terms": "Skulpturmager" + }, + "craft/shoemaker": { + "name": "Skomager", + "terms": "Skomager" + }, + "craft/stonemason": { + "name": "Stenhugger", + "terms": "Stenhugger" + }, + "craft/sweep": { + "name": "Skorstensfejer", + "terms": "Skorstensfejer" + }, + "craft/tailor": { + "name": "Skrædder", + "terms": "Skrædder" + }, + "craft/tiler": { + "name": "Brolægger", + "terms": "Brolægger" + }, + "craft/tinsmith": { + "name": "Sølvsmed", + "terms": "Sølvsmed" + }, + "craft/upholsterer": { + "name": "Møbelpolstrer", + "terms": "Møbelpolstrer" + }, + "craft/watchmaker": { + "name": "Urmager", + "terms": "Urmager" + }, + "craft/window_construction": { + "name": "Vinduebygger", + "terms": "Vinduebygger" + }, "embankment": { "name": "Forhøjning til tog, vej", "terms": "Forhøjning" @@ -1166,6 +1500,38 @@ "name": "Fortov", "terms": "Fortov" }, + "golf/bunker": { + "name": "Sandbunker", + "terms": "Sandbunker" + }, + "golf/fairway": { + "name": "Fairway", + "terms": "Fairway" + }, + "golf/green": { + "name": "Putting Green", + "terms": "Putting Green" + }, + "golf/hole": { + "name": "Golfhul", + "terms": "Golfhul" + }, + "golf/lateral_water_hazard": { + "name": "Vandgrav", + "terms": "Vandgrav" + }, + "golf/rough": { + "name": "Rough", + "terms": "Rough, Højt gras" + }, + "golf/tee": { + "name": "Tee Box", + "terms": "Tee Box" + }, + "golf/water_hazard": { + "name": "Vandgrav", + "terms": "Vandgrav" + }, "highway": { "name": "Vej", "terms": "Veje, Gader" @@ -1230,6 +1596,10 @@ "name": "Villavej", "terms": "Villavej" }, + "highway/rest_area": { + "name": "Rasteplads", + "terms": "Rasteplads" + }, "highway/road": { "name": "Ukendt vejtype", "terms": "Ukendt vejtype" @@ -1266,6 +1636,10 @@ "name": "Vej mellem parkeringspladser", "terms": "Parkeringsvej" }, + "highway/services": { + "name": "Serviceområde", + "terms": "Serviceområde" + }, "highway/steps": { "name": "Trappe", "terms": "Trapper" @@ -1742,6 +2116,10 @@ "name": "Rejsebureau", "terms": "Rejseselskab, Rejsebureau" }, + "piste": { + "name": "Skiløjper/Skispor", + "terms": "Skiløjper/Skispor" + }, "place": { "name": "Lokalitet", "terms": "Lokalitet, Sted" @@ -1830,6 +2208,10 @@ "name": "Ej brugt jernbanespor", "terms": "Ej brugt jernbanespor" }, + "railway/funicular": { + "name": "Kabelsporvej", + "terms": "Kabelsporvej" + }, "railway/halt": { "name": "Togstation lille ubemandet", "terms": "Togstation lille ubemandet" @@ -1842,6 +2224,10 @@ "name": "Monorail", "terms": "Monorail" }, + "railway/narrow_gauge": { + "name": "Smalspor", + "terms": "Smalspor, Smalsporbane, Smalsportogbane" + }, "railway/platform": { "name": "Jernbaneperron", "terms": "Jernbaneperron, Perron " diff --git a/vendor/assets/iD/iD/locales/de.json b/vendor/assets/iD/iD/locales/de.json index 52c847643..4644c9d4b 100644 --- a/vendor/assets/iD/iD/locales/de.json +++ b/vendor/assets/iD/iD/locales/de.json @@ -138,7 +138,7 @@ }, "move": { "title": "Verschieben", - "description": "Verschiebe dieses Objekt an einen anderen Ort.", + "description": "Verschiebe dieses Objekt an einen anderen Standort.", "key": "M", "annotation": { "point": "Punkt verschoben.", @@ -229,7 +229,7 @@ "no_results_worldwide": "Keine Ergebnisse gefunden" }, "geolocate": { - "title": "Zeige meine Position" + "title": "Zeige meinen Standort" }, "inspector": { "no_documentation_combination": "Für dieses Attribut-Kombination ist keine Dokumentation verfügbar.", @@ -252,7 +252,11 @@ "incomplete": "", "feature_list": "Objekte suchen", "edit": "Eigenschaft bearbeiten", - "none": "Nichts" + "none": "Nichts", + "node": "Punkt", + "way": "Weg", + "relation": "Relation", + "location": "Standort" }, "background": { "title": "Hintergrund", @@ -312,6 +316,7 @@ "untagged_area": "Fläche ohne Attribute", "many_deletions": "Du löscht gerade {n} Elemente. Willst Du das wirklich? Damit werden diese Elemente von der Karte gelöscht die alle auf openstreetmap.org sehen können.", "tag_suggests_area": "Das Attribut {tag} legt nahe, dass die Linie eine Fläche sein sollte, es ist aber keine Fläche", + "untagged_tooltip": "Wähle einen Eigenschaftentyp der das {geometry} beschreibt.", "deprecated_tags": "Veraltete Attribute: {tags}" }, "zoom": { @@ -347,7 +352,7 @@ }, "points": { "title": "Punkte", - "add": "Punkte können verwendet werden, um Objekte wie Läden, Restaurants oder Denkmäler darzustellen. Sie markieren eine bestimmte Stelle und beschreiben, was sich dort befindet. **Klicke den Punkt-Knopf an, um einen neuen Punkt hinzuzufügen**", + "add": "Punkte können verwendet werden, um Objekte wie Läden, Restaurants oder Denkmäler darzustellen. Sie markieren einen bestimmten Standort und beschreiben, was sich dort befindet. **Klicke den Punkt-Knopf an, um einen neuen Punkt hinzuzufügen**", "place": "Punkte können durch Klicken auf die Karte platziert werden. **Platziere einen Punkt auf dem Gebäude**", "search": "Es gibt viele verschiedene Objekte, die ein Punkt repräsentieren kann. Der Punkt, den du gerade hinzugefügt hast, ist ein Café. **Suche nach '{name}'**", "choose": "**Wähle \"Café\" aus der Liste aus.**", @@ -391,6 +396,9 @@ "category-building": { "name": "Gebäude" }, + "category-golf": { + "name": "Golf" + }, "category-landuse": { "name": "Landnutzung" }, @@ -467,6 +475,33 @@ "admin_level": { "label": "Verwaltungsebene" }, + "aerialway": { + "label": "Typ" + }, + "aerialway/access": { + "label": "Zugang" + }, + "aerialway/bubble": { + "label": "Blase" + }, + "aerialway/capacity": { + "label": "Kapazität (pro Stunde)", + "placeholder": "500, 2500, 5000..." + }, + "aerialway/duration": { + "label": "Dauer (Minuten)", + "placeholder": "1, 2, 3..." + }, + "aerialway/heating": { + "label": "beheizt" + }, + "aerialway/occupancy": { + "label": "Belegung", + "placeholder": "2, 4, 8..." + }, + "aerialway/summer/access": { + "label": "Zugang (Sommer)" + }, "aeroway": { "label": "Typ" }, @@ -500,6 +535,9 @@ "building_area": { "label": "Gebäude" }, + "cans": { + "label": "Dosen" + }, "capacity": { "label": "Kapazität", "placeholder": "50, 100, 200..." @@ -514,6 +552,9 @@ "anticlockwise": "gegen den Uhrzeigersinn" } }, + "clothes": { + "label": "Kleidung" + }, "collection_times": { "label": "Leerungszeiten" }, @@ -523,6 +564,9 @@ "country": { "label": "Land" }, + "covered": { + "label": "Überdacht / Verdeckt" + }, "crossing": { "label": "Typ" }, @@ -538,6 +582,9 @@ "description": { "label": "Beschreibung" }, + "electrified": { + "label": "Elektrifizierung" + }, "elevation": { "label": "Höhe ü. d. Meeresspiegel" }, @@ -560,6 +607,9 @@ "fixme": { "label": "Korrigiere mich" }, + "gauge": { + "label": "Spurbreite" + }, "generator/method": { "label": "Methode" }, @@ -569,6 +619,17 @@ "generator/type": { "label": "Typ" }, + "glass": { + "label": "Glas" + }, + "golf_hole": { + "label": "Loch-Nummer", + "placeholder": "1-18" + }, + "handicap": { + "label": "Handicap", + "placeholder": "1-18" + }, "highway": { "label": "Art" }, @@ -584,6 +645,9 @@ "incline": { "label": "Steigung" }, + "information": { + "label": "Typ" + }, "internet_access": { "label": "Internetzugang", "options": { @@ -650,6 +714,13 @@ "operator": { "label": "Betreiber" }, + "paper": { + "label": "Papier" + }, + "par": { + "label": "Par", + "placeholder": "3, 4, 5…" + }, "park_ride": { "label": "Park and Ride" }, @@ -660,6 +731,15 @@ "label": "Telefon", "placeholder": "+31 42 123 4567" }, + "piste/difficulty": { + "label": "Schwierigkeit" + }, + "piste/grooming": { + "label": "Grooming" + }, + "piste/type": { + "label": "Typ" + }, "place": { "label": "Art" }, @@ -727,6 +807,9 @@ "cutting": "Senke" } }, + "studio_type": { + "label": "Typ" + }, "supervised": { "label": "überwacht" }, @@ -751,6 +834,9 @@ "tree_type": { "label": "Typ" }, + "tunnel": { + "label": "Tunnel" + }, "vending": { "label": "Dienstleistung" }, @@ -782,6 +868,46 @@ "name": "Adresse", "terms": "Adresse" }, + "aerialway": { + "name": "Seilbahn", + "terms": "Seilbahn, Gondelbahn, Sessellift, Schlepplift, Materialseilbahn" + }, + "aerialway/cable_car": { + "name": "Seilbahn", + "terms": "Seilbahn, Gondelbahn, Straßenbahn, Kabelbahn, Drahtseilbahn" + }, + "aerialway/chair_lift": { + "name": "Sessellift", + "terms": "Sessellift, Sesselbahn" + }, + "aerialway/gondola": { + "name": "Gondel", + "terms": "Gondel, Seilbahngondel" + }, + "aerialway/magic_carpet": { + "name": "KInderskilift", + "terms": "Kinderschilift, Zauberteppichlift, Babylift" + }, + "aerialway/platter": { + "name": "Tellerlift", + "terms": "Tellerlift, Teller-Skilift" + }, + "aerialway/pylon": { + "name": "Seilbahnmast", + "terms": "Seilbahnmast, Liftmast, Liftstütze" + }, + "aerialway/rope_tow": { + "name": "Schlepplift", + "terms": "Schlepplift, Seilschlepplift, Übungslift" + }, + "aerialway/station": { + "name": "Seilbahnstation", + "terms": "Seilbahnstation, Liftstation" + }, + "aerialway/t-bar": { + "name": "Bügelschlepplift", + "terms": "Schlepplift, Seilschlepplift, Bügellift, Bügelschlepplift" + }, "aeroway": { "name": "Luftfahrt", "terms": "Flugplatz, Flughafen" @@ -878,6 +1004,14 @@ "name": "Kino", "terms": "Großbildleinwand,Kino,Autokino,Filmtheater,Filmpalast" }, + "amenity/clinic": { + "name": "Klinik", + "terms": "Klinik, Krankenhaus" + }, + "amenity/clock": { + "name": "Uhr", + "terms": "Uhr, Turmuhr, Kirchenuhr" + }, "amenity/college": { "name": "Hochschule", "terms": "Hochschule, Kolleg" @@ -886,9 +1020,17 @@ "name": "Gericht", "terms": "Gericht, Amtsgericht" }, + "amenity/dentist": { + "name": "Zahnarzt", + "terms": "Zahnarzt, Dentist" + }, + "amenity/doctor": { + "name": "Arzt", + "terms": "Arzt, Mediziner" + }, "amenity/drinking_water": { "name": "Trinkwasserstelle", - "terms": "Brunnen,Trinkwasser,Trinkwasserbrunnen,Wasserhahn" + "terms": "Brunnen,Trinkwasser,Trinkwasserbrunnen,Wasserhahn,Trinkbrunnen" }, "amenity/embassy": { "name": "Botschaft", @@ -916,7 +1058,7 @@ }, "amenity/hospital": { "name": "Krankenhaus", - "terms": "Klinik,Notaufnahme,Gesundheitswesen,Hospiz,Krankenhaus,Pflegeheim,Altersheim,Nervenheilanstalt,Sanatorium,Lazarett,Chirurgie,Krankenstation" + "terms": "Klinik,Notaufnahme,Gesundheitswesen,Hospiz,Krankenhaus,Pflegeheim,Altersheim,Nervenheilanstalt,Sanatorium,Lazarett,Chirurgie,Krankenstation,Spital" }, "amenity/kindergarten": { "name": "Kindergarten", @@ -978,6 +1120,10 @@ "name": "Ranger-Station", "terms": "Ranger-Station" }, + "amenity/recycling": { + "name": "Recycling", + "terms": "Recyclingcontainer, Abfallwiederverwertung, Container, Abfall, Müll" + }, "amenity/restaurant": { "name": "Restaurant", "terms": "Bar,Cafeteria,Café,Kantine,Speisehaus,Coffee-Shop,Kaffeehaus,Imbiss,Speisesaal,Kneipe,Donut Shop,Drive-In,Restaurant,Speiserestaurant,Wirtschaft,Fast-Food-Restaurant,Grill,Hamburgerstand,Hotdogstand,Gasthaus,Gasthof,Wirtshaus,Imbissstube,Imbiss,Pizzeria,Lokal" @@ -990,6 +1136,10 @@ "name": "Unterstand", "terms": "Unterstand, Schutzdach, Schutzraum, Schuppen" }, + "amenity/studio": { + "name": "Atelier", + "terms": "Atelier, Werkstatt, Studio" + }, "amenity/swimming_pool": { "name": "Schwimmbecken", "terms": "Pool,Schwimmbecken" @@ -1022,6 +1172,10 @@ "name": "Automat", "terms": "Warenautomat,Münzautomat,Verkaufsautomat, Selbstbedienungsautomat,Getränkeautomat,Süßigkeitenautomat,Fahrkartenautomat,Parkscheinautomat," }, + "amenity/veterinary": { + "name": "Tierarzt", + "terms": "Tierarzt, Tierärztin, Verterinär" + }, "amenity/waste_basket": { "name": "Abfalleimer", "terms": "Abfalleimer,Abfallkübel,Abfallbehälter,Mistkübel,Mülleimer" @@ -1138,6 +1292,186 @@ "name": "Wohngebäude", "terms": "Wohnhaus,Einfamilienhaus,Mehrfamilienhaus" }, + "craft/basket_maker": { + "name": "Korbflechter", + "terms": "Korbflecher, Korbmacher, Korbhersteller" + }, + "craft/beekeeper": { + "name": "Imker", + "terms": "Imker, Bienenzüchter" + }, + "craft/blacksmith": { + "name": "Schmied", + "terms": "Schmied, Hufschmied, Schmiedewerkstatt" + }, + "craft/boatbuilder": { + "name": "Schiffsbauer", + "terms": "Schiffsbauer" + }, + "craft/bookbinder": { + "name": "Buchbinder", + "terms": "Buchbinder" + }, + "craft/brewery": { + "name": "Brauerei", + "terms": "Brauerei, Bierbrauerei, Bierhersteller" + }, + "craft/carpenter": { + "name": "Tischler", + "terms": "Tischler, Schreiner, Zimmerer" + }, + "craft/carpet_layer": { + "name": "Teppichleger", + "terms": "Teppichleger, Teppichbodenleger" + }, + "craft/caterer": { + "name": "Partyservice", + "terms": "Partyservice, Speiselieferant, Lebensmittellieferant, Brötchenservice, Gastronom" + }, + "craft/clockmaker": { + "name": "Uhrmacher", + "terms": "Uhrmacher" + }, + "craft/confectionary": { + "name": "Süßwarengeschäft", + "terms": "Süßwarengeschäfts, Konditorei, Konfektladen" + }, + "craft/dressmaker": { + "name": "Schneiderei", + "terms": "Schneiderei, Damenschneiderei" + }, + "craft/electrician": { + "name": "Elektriker", + "terms": "Elektriker" + }, + "craft/gardener": { + "name": "Gärtner", + "terms": "Gärtner, Landschaftsgärtner" + }, + "craft/glaziery": { + "name": "Glaserei", + "terms": "Glaserei, Fensterglaserei, Autoglaserei" + }, + "craft/handicraft": { + "name": "Kunsthandwerk", + "terms": "Kunsthandwerk, Handwerkskunst, Handwerk, Handarbeit, Bastelarbeit" + }, + "craft/hvac": { + "name": "Heizung-Lüftung-Klimatechnik", + "terms": "Heizung, Lüftung, Klimatechnik" + }, + "craft/insulator": { + "name": "Dämmstoff", + "terms": "Dämmstoff, Isolierung, Isolierstoff" + }, + "craft/jeweler": { + "name": "Juwelier", + "terms": "Juwelier, Schmuckladen, Schmuckgeschäft, Edelsteinverkäufer" + }, + "craft/key_cutter": { + "name": "Schlüsselschneider", + "terms": "Schlüsselschneider, Schlüsselgeschäft" + }, + "craft/locksmith": { + "name": "Schlüsseldienst", + "terms": "Schlüsseldienst, Schlossermeister, Schlosser" + }, + "craft/metal_construction": { + "name": "Metallbau", + "terms": "Metallbau, Anlagenbau" + }, + "craft/optician": { + "name": "Optiker", + "terms": "Optiker, Brillengeschäft, Kontaktlinsengeschäft" + }, + "craft/painter": { + "name": "Maler", + "terms": "Maler, Anstreicher, Lackierer" + }, + "craft/photographer": { + "name": "Fotograf", + "terms": "Fotograf, Fotostudio, Fotoatelier" + }, + "craft/photographic_labratory": { + "name": "Fotolabor", + "terms": "Fotolabor" + }, + "craft/plasterer": { + "name": "Stuckateur", + "terms": "Stuckateur, Kaschierer, Gipser, Verputzer" + }, + "craft/plumber": { + "name": "Installateur", + "terms": "Installateur" + }, + "craft/pottery": { + "name": "Töpferei", + "terms": "Töpferei" + }, + "craft/rigger": { + "name": "Bühnenarbeiter", + "terms": "Bühnenarbeiter, Höhenarbeiter" + }, + "craft/roofer": { + "name": "Dachdecker", + "terms": "Dachdecker" + }, + "craft/saddler": { + "name": "Sattler", + "terms": "Sattler" + }, + "craft/sailmaker": { + "name": "Segelmacher", + "terms": "Segelmacher" + }, + "craft/sawmill": { + "name": "Sägewerk", + "terms": "Sägewerk, Sägerei, Sägemühle" + }, + "craft/scaffolder": { + "name": "Gerüstbauer", + "terms": "Gerüstbauer" + }, + "craft/sculpter": { + "name": "Bildhauer", + "terms": "Bildhauer" + }, + "craft/shoemaker": { + "name": "Schuster", + "terms": "Schuster, Schuhmacher" + }, + "craft/stonemason": { + "name": "Steinmetz", + "terms": "Steinmetz" + }, + "craft/sweep": { + "name": "Kaminkehrer", + "terms": "Kaminkehrer, Schornsteinfeger" + }, + "craft/tailor": { + "name": "Herrenschneider", + "terms": "Herrenschneider, Schneider" + }, + "craft/tiler": { + "name": "Fliesenleger", + "terms": "Fliesenleger, Dachdecker" + }, + "craft/tinsmith": { + "name": "Klempner", + "terms": "Klempner, Spengler, Blechschmied" + }, + "craft/upholsterer": { + "name": "Polsterer", + "terms": "Polsterer, Möbeltapezierer" + }, + "craft/watchmaker": { + "name": "Uhrmacher", + "terms": "Uhrmacher" + }, + "craft/window_construction": { + "name": "Fensterbauer", + "terms": "Fensterbauer, Fensterhersteller, Fenstererzeuger" + }, "embankment": { "name": "Fahrdamm", "terms": "Damm" @@ -1166,6 +1500,38 @@ "name": "Bürgersteig", "terms": "Gehsteig, Fußgängerweg, Gehweg, Fußweg, Gangsteig, Trottoir" }, + "golf/bunker": { + "name": "Bunker (Golf)", + "terms": "Bunker, Sandbunker, Sand-Hindernis, Golfbunker" + }, + "golf/fairway": { + "name": "Fairway", + "terms": "Golf-Fairway" + }, + "golf/green": { + "name": "Grün", + "terms": "Grün, Green, Putting-Grün, Putting-Green" + }, + "golf/hole": { + "name": "Loch", + "terms": "Loch" + }, + "golf/lateral_water_hazard": { + "name": "Seitliches Wasserhindernis", + "terms": "Seitliches Wasserhindernis, Wasserhindernis" + }, + "golf/rough": { + "name": "Rough", + "terms": "Rough" + }, + "golf/tee": { + "name": "Abschlag", + "terms": "Abschlag" + }, + "golf/water_hazard": { + "name": "Wasserhindernis", + "terms": "Wasserhindernis" + }, "highway": { "name": "Straße/Weg", "terms": "Autobahn" @@ -1230,6 +1596,10 @@ "name": "Wohngebietsstraße", "terms": "Siedlungsstraße" }, + "highway/rest_area": { + "name": "Rastplatz", + "terms": "Rastplatz, Autobahnrastplatz, Pausenplatz, Autobahnpauseplatz, Raststelle, Autobahnraststelle, Rastanlage, Autobahnrastanlage" + }, "highway/road": { "name": "Unbekannter Straßentyp", "terms": "Unbekannte Straße" @@ -1266,6 +1636,10 @@ "name": "Parkplatzweg", "terms": "Fahrweg auf Parkplatz" }, + "highway/services": { + "name": "Raststätte", + "terms": "Raststätte, Autobahnraststätte, Rasthof, Autobahnrasthof, Raststation, Autobahnraststation" + }, "highway/steps": { "name": "Treppen", "terms": "Treppe,Stufen" @@ -1432,7 +1806,7 @@ }, "leisure/golf_course": { "name": "Golfplatz", - "terms": "Golfplatz" + "terms": "Golfplatz, Golfkurs, Golfclub" }, "leisure/marina": { "name": "Yachthafen", @@ -1742,6 +2116,10 @@ "name": "Reisebüro", "terms": "Reiseagentur" }, + "piste": { + "name": "Piste/Skipiste", + "terms": "Piste, Skipiste, Skiwanderweg" + }, "place": { "name": "Ort", "terms": "Platz, Ort, Stelle, Gegend" @@ -1830,6 +2208,10 @@ "name": "Ungenutzte Eisenbahnstrecke", "terms": "Ungenutzte Eisenbahn, Eingestellte Eisenbahnstrecke" }, + "railway/funicular": { + "name": "Standseilbahn", + "terms": "Standseilbahn, Seilbahn, Drahtseilbahn, Kettenbahn" + }, "railway/halt": { "name": "Bahn-Haltestelle", "terms": "Bahn-Haltestelle, Zug-Haltestelle, Haltestelle" @@ -1842,6 +2224,10 @@ "name": "Einschienenbahn", "terms": "Einschienenbahn" }, + "railway/narrow_gauge": { + "name": "Schmalspureisenbahn", + "terms": "Schmalspureisenbahn, Schmalspurbahn, schmalspurige Eisenbahn" + }, "railway/platform": { "name": "Bahnsteig", "terms": "Bahnsteig" @@ -2100,7 +2486,7 @@ }, "tourism/alpine_hut": { "name": "Berghütte", - "terms": "Berghütte, Almhütte" + "terms": "Berghütte,Almhütte,Alm,Schutzhütte,Schutzhaus,Hospiz,Winterraum" }, "tourism/artwork": { "name": "Kunst", diff --git a/vendor/assets/iD/iD/locales/el.json b/vendor/assets/iD/iD/locales/el.json index bed61ddd4..ea9c6545d 100644 --- a/vendor/assets/iD/iD/locales/el.json +++ b/vendor/assets/iD/iD/locales/el.json @@ -52,7 +52,7 @@ "annotation": "Αλλάχτηκε ο ρόλος ενός μέλους σχέσης." }, "change_tags": { - "annotation": "Αλάχτικαν ετικέτες." + "annotation": "Αλλάχτηκαν χαρακτηριστικά." }, "circularize": { "title": "Σχηματισμός κύκλου", @@ -211,11 +211,11 @@ "title": "Εμφάνισε την Τοποθεσία μου" }, "inspector": { - "no_documentation_combination": "Δεν υπάρχει διαθέσιμη τεκμηρίωση για αυτό το συνδυασμό ετικετών", + "no_documentation_combination": "Δεν υπάρχει διαθέσιμη τεκμηρίωση για αυτόν τον συνδυασμό χαρακτηριστικών", "no_documentation_key": "Δεν υπάρχει διαθέσιμη τεκμηρίωση για αυτό το κλειδί", "show_more": "Εμφάνιση Περισσότερων", "view_on_osm": "Προβολή στο openstreetmap.org", - "all_tags": "Όλες οι ετικέτες", + "all_tags": "Όλα τα χαρακτηριστικά", "all_members": "Όλα τα μέλη", "all_relations": "Όλες οι σχέσεις", "new_relation": "Νέα σχέση", @@ -280,12 +280,12 @@ "used_with": "χρησιμοποιείται με {type}" }, "validations": { - "untagged_point": "Σημείο χωρίς ετικέτα", - "untagged_line": "Γραμμή χωρίς ετικέτα", - "untagged_area": "Περιοχή χωρίς ετικέτα", + "untagged_point": "Σημείο χωρίς χαρακτηριστικά", + "untagged_line": "Γραμμή χωρίς χαρακτηριστικά", + "untagged_area": "Περιοχή χωρίς χαρακτηριστικά", "many_deletions": "Διαγράφετε {n} αντικείμενα. Είστε σίγουρος ότι θέλετε να το κάνετε αυτό; Αυτό θα τα διαγράψει από το χάρτη πού όλοι οι άλλοι βλέπουν στο openstreetmap.org.", - "tag_suggests_area": "Η ετικέτα {tag} προτείνει η γραμμή πρέπει να είναι περιοχή, αλλά δεν είναι περιοχή", - "deprecated_tags": "Παρωχημένες ετικέτες: {tags}" + "tag_suggests_area": "Το χαρακτηριστικό {tag} προτείνει η γραμμή πρέπει να είναι περιοχή, αλλά δεν είναι περιοχή", + "deprecated_tags": "Παρωχημένα χαρακτηριστικά: {tags}" }, "zoom": { "in": "Μεγέθυνση", @@ -670,7 +670,7 @@ "label": "Είδος" }, "wheelchair": { - "label": "Πρόσβαση Σε Αναπηρικό Καροτσάκι" + "label": "Πρόσβαση Με Αναπηρικό Καροτσάκι" }, "wikipedia": { "label": "Wikipedia" diff --git a/vendor/assets/iD/iD/locales/en.json b/vendor/assets/iD/iD/locales/en.json index 554f01c8e..5cb257b77 100644 --- a/vendor/assets/iD/iD/locales/en.json +++ b/vendor/assets/iD/iD/locales/en.json @@ -256,7 +256,11 @@ "yes": "Yes", "no": "No" }, - "none": "None" + "none": "None", + "node": "Node", + "way": "Way", + "relation": "Relation", + "location": "Location" }, "background": { "title": "Background", @@ -316,8 +320,8 @@ "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", - "deprecated_tags": "Deprecated tags: {tags}", - "untagged_tooltip": "Select a feature type that describes what this {geometry} is." + "untagged_tooltip": "Select a feature type that describes what this {geometry} is.", + "deprecated_tags": "Deprecated tags: {tags}" }, "zoom": { "in": "Zoom In", @@ -475,6 +479,33 @@ "admin_level": { "label": "Admin Level" }, + "aerialway": { + "label": "Type" + }, + "aerialway/access": { + "label": "Access" + }, + "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)" + }, "aeroway": { "label": "Type" }, @@ -555,6 +586,9 @@ "description": { "label": "Description" }, + "electrified": { + "label": "Electrification" + }, "elevation": { "label": "Elevation" }, @@ -577,6 +611,9 @@ "fixme": { "label": "Fix Me" }, + "gauge": { + "label": "Gauge" + }, "generator/method": { "label": "Method" }, @@ -700,6 +737,15 @@ "label": "Phone", "placeholder": "+31 42 123 4567" }, + "piste/difficulty": { + "label": "Difficulty" + }, + "piste/grooming": { + "label": "Grooming" + }, + "piste/type": { + "label": "Type" + }, "place": { "label": "Type" }, @@ -767,6 +813,9 @@ "cutting": "Cutting" } }, + "studio_type": { + "label": "Type" + }, "supervised": { "label": "Supervised" }, @@ -791,6 +840,9 @@ "tree_type": { "label": "Type" }, + "tunnel": { + "label": "Tunnel" + }, "vending": { "label": "Type of Goods" }, @@ -822,6 +874,46 @@ "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": "" @@ -918,6 +1010,14 @@ "name": "Cinema", "terms": "big screen,bijou,cine,drive-in,film,flicks,motion pictures,movie house,movie theater,moving pictures,nabes,photoplay,picture show,pictures,playhouse,show,silver screen" }, + "amenity/clinic": { + "name": "Clinic", + "terms": "clinic,medical clinic" + }, + "amenity/clock": { + "name": "Clock", + "terms": "" + }, "amenity/college": { "name": "College", "terms": "" @@ -926,6 +1026,14 @@ "name": "Courthouse", "terms": "" }, + "amenity/dentist": { + "name": "Dentist", + "terms": "dentist,dentist's office" + }, + "amenity/doctor": { + "name": "Doctor", + "terms": "doctor,doctor's office" + }, "amenity/drinking_water": { "name": "Drinking Water", "terms": "water fountain,potable water" @@ -1034,6 +1142,10 @@ "name": "Shelter", "terms": "lean-to" }, + "amenity/studio": { + "name": "Studio", + "terms": "recording studio,studio,radio,radio studio,television,television studio" + }, "amenity/swimming_pool": { "name": "Swimming Pool", "terms": "" @@ -1066,6 +1178,10 @@ "name": "Vending Machine", "terms": "" }, + "amenity/veterinary": { + "name": "Veterinary", + "terms": "pet clinic,veterinarian,animal hospital,pet doctor" + }, "amenity/waste_basket": { "name": "Waste Basket", "terms": "rubbish bin,litter bin,trash can,garbage can" @@ -1182,6 +1298,186 @@ "name": "Residential Building", "terms": "" }, + "craft/basket_maker": { + "name": "Basket Maker", + "terms": "basket,basketry,basket maker,basket weaver" + }, + "craft/beekeeper": { + "name": "Beekeeper", + "terms": "bees,beekeeper,bee box" + }, + "craft/blacksmith": { + "name": "Blacksmith", + "terms": "blacksmith" + }, + "craft/boatbuilder": { + "name": "Boat Builder", + "terms": "boat builder" + }, + "craft/bookbinder": { + "name": "Bookbinder", + "terms": "bookbinder,book repair" + }, + "craft/brewery": { + "name": "Brewery", + "terms": "brewery" + }, + "craft/carpenter": { + "name": "Carpenter", + "terms": "carpenter,woodworker" + }, + "craft/carpet_layer": { + "name": "Carpet Layer", + "terms": "carpet layer" + }, + "craft/caterer": { + "name": "Caterer", + "terms": "Caterer,Catering" + }, + "craft/clockmaker": { + "name": "Clockmaker", + "terms": "clock,clockmaker,clock repair" + }, + "craft/confectionary": { + "name": "Confectionary", + "terms": "confectionary,sweets,candy" + }, + "craft/dressmaker": { + "name": "Dressmaker", + "terms": "dress,dressmaker" + }, + "craft/electrician": { + "name": "Electrician", + "terms": "electrician" + }, + "craft/gardener": { + "name": "Gardener", + "terms": "gardener,landscaper,grounds keeper" + }, + "craft/glaziery": { + "name": "Glaziery", + "terms": "glass,glass foundry,stained-glass,window" + }, + "craft/handicraft": { + "name": "Handicraft", + "terms": "handicraft" + }, + "craft/hvac": { + "name": "HVAC", + "terms": "heating,ventilating,air-conditioning,air conditioning" + }, + "craft/insulator": { + "name": "Insulator", + "terms": "insulation,insulator" + }, + "craft/jeweler": { + "name": "Jeweler", + "terms": "jeweler,gem,diamond" + }, + "craft/key_cutter": { + "name": "Key Cutter", + "terms": "key,key cutter" + }, + "craft/locksmith": { + "name": "Locksmith", + "terms": "locksmith,lock" + }, + "craft/metal_construction": { + "name": "Metal Construction", + "terms": "metal construction" + }, + "craft/optician": { + "name": "Optician", + "terms": "glasses,optician" + }, + "craft/painter": { + "name": "painter", + "terms": "painter" + }, + "craft/photographer": { + "name": "Photographer", + "terms": "photographer" + }, + "craft/photographic_labratory": { + "name": "Photographic Labratory", + "terms": "photographic labratory,film developer" + }, + "craft/plasterer": { + "name": "Plasterer", + "terms": "plasterer" + }, + "craft/plumber": { + "name": "Plumber", + "terms": "pumber" + }, + "craft/pottery": { + "name": "Pottery", + "terms": "pottery,potter" + }, + "craft/rigger": { + "name": "Rigger", + "terms": "rigger" + }, + "craft/roofer": { + "name": "Roofer", + "terms": "roofer" + }, + "craft/saddler": { + "name": "Saddler", + "terms": "saddler" + }, + "craft/sailmaker": { + "name": "Sailmaker", + "terms": "sailmaker" + }, + "craft/sawmill": { + "name": "Sawmill", + "terms": "sawmill,lumber" + }, + "craft/scaffolder": { + "name": "Scaffolder", + "terms": "scaffolder" + }, + "craft/sculpter": { + "name": "Sculpter", + "terms": "sculpter" + }, + "craft/shoemaker": { + "name": "Shoemaker", + "terms": "shoe repair,shoemaker" + }, + "craft/stonemason": { + "name": "Stonemason", + "terms": "stonemason,masonry" + }, + "craft/sweep": { + "name": "Chimney Sweep", + "terms": "sweep,chimney sweep" + }, + "craft/tailor": { + "name": "Tailor", + "terms": "tailor,clothes" + }, + "craft/tiler": { + "name": "Tiler", + "terms": "tiler" + }, + "craft/tinsmith": { + "name": "Tinsmith", + "terms": "tinsmith" + }, + "craft/upholsterer": { + "name": "Upholsterer", + "terms": "upholsterer" + }, + "craft/watchmaker": { + "name": "Watchmaker", + "terms": "watch,watchmaker,watch repair" + }, + "craft/window_construction": { + "name": "Window Construction", + "terms": "window,window maker,window construction" + }, "embankment": { "name": "Embankment", "terms": "" @@ -1306,6 +1602,10 @@ "name": "Residential Road", "terms": "" }, + "highway/rest_area": { + "name": "Rest Area", + "terms": "rest stop,turnout,lay-by" + }, "highway/road": { "name": "Unknown Road", "terms": "" @@ -1342,6 +1642,10 @@ "name": "Parking Aisle", "terms": "" }, + "highway/services": { + "name": "Service Area", + "terms": "services,travel plaza,service station" + }, "highway/steps": { "name": "Steps", "terms": "stairs,staircase" @@ -1818,6 +2122,10 @@ "name": "Travel Agency", "terms": "" }, + "piste": { + "name": "Piste/Ski Trail", + "terms": "ski,sled,sleigh,snowboard,nordic,downhill,snowmobile" + }, "place": { "name": "Place", "terms": "" @@ -1906,6 +2214,10 @@ "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" @@ -1918,6 +2230,10 @@ "name": "Monorail", "terms": "" }, + "railway/narrow_gauge": { + "name": "Narrow Gauge Rail", + "terms": "narrow gauge railway,narrow gauge railroad" + }, "railway/platform": { "name": "Railway Platform", "terms": "" diff --git a/vendor/assets/iD/iD/locales/es.json b/vendor/assets/iD/iD/locales/es.json index 53ec82134..398d2c1ef 100644 --- a/vendor/assets/iD/iD/locales/es.json +++ b/vendor/assets/iD/iD/locales/es.json @@ -252,7 +252,11 @@ "incomplete": "", "feature_list": "Buscar elementos", "edit": "Editar elemento", - "none": "Ninguno" + "none": "Ninguno", + "node": "Nodo", + "way": "Vía", + "relation": "Relación", + "location": "Localización" }, "background": { "title": "Fondo", @@ -312,6 +316,7 @@ "untagged_area": "Área sin etiquetar", "many_deletions": "Está eliminando {n} objetos ¿Está seguro de que quieres hacer esto? Esta acción los eliminará del mapa que todos ven en openstreetmap.org.", "tag_suggests_area": "La etiqueta {tag} sugiere que esta línea debería ser una área, pero no lo es.", + "untagged_tooltip": "Seleccione un tipo de característica que describa lo que es esta {geometry}.", "deprecated_tags": "Etiquetas obsoletas: {tags}" }, "zoom": { @@ -391,6 +396,9 @@ "category-building": { "name": "Edificio" }, + "category-golf": { + "name": "Golf" + }, "category-landuse": { "name": "Uso del suelo" }, @@ -467,6 +475,17 @@ "admin_level": { "label": "Nivel administrativo" }, + "aerialway/access": { + "label": "Acceso" + }, + "aerialway/capacity": { + "label": "Capacidad (por hora)", + "placeholder": "500, 2500, 5000..." + }, + "aerialway/duration": { + "label": "Duración (minutos)", + "placeholder": "1, 2, 3..." + }, "aeroway": { "label": "Tipo" }, @@ -523,6 +542,9 @@ "country": { "label": "País" }, + "covered": { + "label": "Cubierto" + }, "crossing": { "label": "Tipo" }, @@ -569,6 +591,14 @@ "generator/type": { "label": "Tipo" }, + "golf_hole": { + "label": "Referencia", + "placeholder": "Número de hoyo (1-18)" + }, + "handicap": { + "label": "Handicap", + "placeholder": "1-18" + }, "highway": { "label": "Tipo" }, @@ -584,6 +614,9 @@ "incline": { "label": "Pendiente" }, + "information": { + "label": "Tipo" + }, "internet_access": { "label": "Acceso a Internet", "options": { @@ -650,6 +683,10 @@ "operator": { "label": "Operador" }, + "par": { + "label": "Par", + "placeholder": "3, 4, 5..." + }, "park_ride": { "label": "Aparcamiento disuasorio" }, @@ -751,6 +788,9 @@ "tree_type": { "label": "Tipo" }, + "tunnel": { + "label": "Túnel" + }, "vending": { "label": "Tipo de producto" }, @@ -974,6 +1014,9 @@ "amenity/ranger_station": { "name": "Puesto de guardaparques" }, + "amenity/recycling": { + "name": "Reciclaje" + }, "amenity/restaurant": { "name": "Restaurante", "terms": "restaurante,restorán, comedor, ambigú, bufé, mesón, taberna" @@ -1132,6 +1175,9 @@ "name": "Edificio residencial", "terms": "bloque" }, + "craft/upholsterer": { + "name": "Tapicero" + }, "embankment": { "name": "Terraplén" }, @@ -1207,7 +1253,7 @@ }, "highway/pedestrian": { "name": "Vía peatonal", - "terms": "Peatonal" + "terms": "Peatonal, plaza, calle" }, "highway/primary": { "name": "Carretera primaria", @@ -1547,7 +1593,8 @@ "terms": "Depósito de agua" }, "military/airfield": { - "name": "Aeródromo" + "name": "Aeródromo", + "terms": "Aerodromo, Aeropuerto, Pista" }, "military/barracks": { "name": "Cuartel" @@ -1832,7 +1879,8 @@ "terms": "Relación, Vínculo, Asociación" }, "route/ferry": { - "name": "Ruta de Ferry" + "name": "Ruta de Ferry", + "terms": "ruta, ferry, transbordador, lancha, embarcación" }, "shop": { "name": "Tienda", @@ -1871,10 +1919,12 @@ "terms": "carnicería, tablajería, casquería, tocinería, fiambrería, pollería, chacinería, charcutería, alimentación, carne, vacuno, caballo, vaca, pollo, embutido, jamón" }, "shop/car": { - "name": "Concesionario de automóviles" + "name": "Concesionario de automóviles", + "terms": "concesionario, coches, automóviles, carros, vehículos, venta" }, "shop/car_parts": { - "name": "Tienda de componente de vehículos" + "name": "Tienda de componente de vehículos", + "terms": "repuestos, tienda, automóvil, vehículo, carro, coche, piezas, almacén" }, "shop/car_repair": { "name": "Taller de reparación de vehículos", @@ -1901,17 +1951,20 @@ "terms": "tienda, almacén, colmado, abarrote, alimentación" }, "shop/deli": { - "name": "Delicatessen" + "name": "Delicatessen", + "terms": "delicatessen, tienda, comestibles, gourmet, exquisiteces, comida" }, "shop/department_store": { - "name": "Almacén" + "name": "Almacén", + "terms": "grandes almacenes, comercio, negocio, tienda, gran superficie" }, "shop/doityourself": { "name": "Tienda de bricolaje", "terms": "bricolaje, ferretería, tienda" }, "shop/dry_cleaning": { - "name": "Tintorería" + "name": "Tintorería", + "terms": "tintorería" }, "shop/electronics": { "name": "Tienda de electrodomésticos", @@ -1948,7 +2001,8 @@ "terms": "peluquería barbería, peluquero, barbero, pelo, corte, salón, belleza, manicura, estética, esteticién, depilación" }, "shop/hardware": { - "name": "Ferretería" + "name": "Ferretería", + "terms": "Ferreteria" }, "shop/hifi": { "name": "Tienda de sonido" @@ -1984,7 +2038,8 @@ "terms": "música, melodía, tienda, disco, dvd, vinilo, lp, sonido, discografía, cantante, banda, grupo, rock, soul, pop, reggea, heavy, metal, rap, blues, clásica, cumbia, salsa" }, "shop/newsagent": { - "name": "Quiosco de prensa" + "name": "Quiosco de prensa", + "terms": "vendedor, periódicos, revistas, kiosco, quiosco, puesto, prensa, publicación, diario" }, "shop/optician": { "name": "Óptica", @@ -1995,14 +2050,16 @@ "terms": "tienda, deportes, aventura, aire, libre, excursionismo" }, "shop/pet": { - "name": "Tienda de mascotas" + "name": "Tienda de mascotas", + "terms": "tienda, mascotas, perros, canina, felina, perruquería, gatos" }, "shop/photo": { "name": "Tienda de fotografía", "terms": "fotografía, tienda , establecimiento, fotógrafo, cámara, retratista, revelado" }, "shop/shoes": { - "name": "Zapatería" + "name": "Zapatería", + "terms": "zapatería, calzado, tienda, zapato, zapatilla, escarpín, bota, sandalia, alpargata, pantufla, babucha, borceguí, almadreña, zueco, chancla, chanclo, madreña, chinela, coturno, alborga" }, "shop/sports": { "name": "Tienda de artículos deportivos" @@ -2019,7 +2076,8 @@ "terms": "juguetería,juguetes" }, "shop/travel_agency": { - "name": "Agencia de viajes" + "name": "Agencia de viajes", + "terms": "agencia de viajes, agencia de turismo" }, "shop/tyres": { "name": "Tienda de neumáticos" @@ -2028,13 +2086,16 @@ "name": "Local vacío" }, "shop/variety_store": { - "name": "Tienda de variedades" + "name": "Tienda de variedades", + "terms": "tienda, variedades, bazar, cadena 100, conveniencia" }, "shop/video": { - "name": "Videoclub" + "name": "Videoclub", + "terms": "tienda, alquiler, renta, tienda de vídeos, videoclub, alquiler de vídeos, renta de vídeos" }, "tourism": { - "name": "Turismo" + "name": "Turismo", + "terms": "turismo" }, "tourism/alpine_hut": { "name": "Cabaña alpina" diff --git a/vendor/assets/iD/iD/locales/fa.json b/vendor/assets/iD/iD/locales/fa.json index 2e6400530..cf6da1659 100644 --- a/vendor/assets/iD/iD/locales/fa.json +++ b/vendor/assets/iD/iD/locales/fa.json @@ -1,117 +1,461 @@ { "modes": { "add_area": { - "title": "مساحت" + "title": "فضاها", + "description": "افزودن پارک ها، ساختمان ها، دریاچه ها و سایر فضاها به نقشه.", + "tail": "برای شروع کشیدن فضا هایی مثل پارک، دریاچه، یا ساختمان روی نقشه کلیک کنید." + }, + "add_line": { + "title": "خط", + "description": "افزودن بزرگ راه ها، خیابان ها، مسیر های پیاده روی، کانال ها یا سایر خطوط به نقشه.", + "tail": "برای شروع کشیدن راه، مسیر پیاده یا مسیر روی نقشه کلیک کنید." }, "add_point": { - "title": "نقطه" + "title": "نقطه", + "description": "افزودن رستوران ها، کوه ها، صندوق های پستی یا سایر نقاط به نقشه.", + "tail": "برای افزودن نقطه روی نقشه کلیک کنید." }, "browse": { - "title": "جستجو" + "title": "مرور", + "description": "مرور و زوم نقشه." + }, + "draw_area": { + "tail": "برای افزودن گره به منطقه تان کلیک کنید. برای پایان دادن به منطقه روی اولین گره کلیک کنید." + }, + "draw_line": { + "tail": "برای افزودن گره های بیشتر به خط کلیک کنید. برای اتصال به سایر خطوط روی آنها کلیک کنید، و برای پایان دادن به خط دو بار کلیک کنید." } }, "operations": { "add": { "annotation": { - "point": "افزودن یک نقطه." + "point": "انقطه ای اضافه شد.", + "vertex": "گره ای به راه اضافه شد.", + "relation": "ارتباط اضافه شد." + } + }, + "start": { + "annotation": { + "line": "خطی شروع شد.", + "area": "فضایی آغاز شد." } }, "continue": { "key": "A", "title": "ادامه", - "description": "ادامه این خط." + "description": "ادامه این خط.", + "not_eligible": "خط قابل ادامه دادنی اینجا نیست.", + "multiple": "اینجا چندین خط قابل ادامه دادن است. برای انتخاب یک خط، کلید Shift را فشار دهید و روی آن کلیک کنید تا انتخاب شود.", + "annotation": { + "line": "نقطه ای ادامه داده شد.", + "area": "فضایی ادامه داده شد." + } + }, + "cancel_draw": { + "annotation": "کشیدن لغو شد." + }, + "change_role": { + "annotation": "نقش عضو مرتبط تغییر یافت." + }, + "change_tags": { + "annotation": "برچسب ها تغییر یافت." + }, + "circularize": { + "title": "حلقه", + "description": { + "line": "این خط را حلقوی کن.", + "area": "این فضا را حلقوی کن." + }, + "key": "O", + "annotation": { + "line": "ساخت یک خط حلقوی.", + "area": "ساخت یک فضای حلقوی." + }, + "not_closed": "نمیشود این را حلقوی کرد چون این یک حلقه نیست." + }, + "orthogonalize": { + "title": "گرد کردن", + "description": { + "line": "گرد کردن گوشه های این خط.", + "area": "گرد کردن گوشه های این فضا." + }, + "key": "S", + "annotation": { + "line": "گوشه های خط گرد شد.", + "area": "گوشه های فضا گرد شد." + }, + "not_squarish": "اینرا نمیتوان گرد کرد چون تقریبا چهارگوش نیست." + }, + "straighten": { + "title": "مرتب کردن", + "description": "مرتب کردن این خط.", + "key": "S", + "annotation": "خط مرتب شد.", + "too_bendy": "این خط قابل مرتب شدن نیست زیرا بیش از حد انحراف دارد." }, "delete": { - "title": "حذف" + "title": "حذف", + "description": "حذف این از نقشه.", + "annotation": { + "point": "نقطه حذف شد.", + "vertex": "گره از راه حذف شد.", + "line": "خط حذف شد.", + "area": "فضا حذف شد.", + "relation": "ارتباطی حذف شد.", + "multiple": "{n} شیئ حذف شد." + }, + "incomplete_relation": "این ویژگی قابل حذف نیست زیرا کاملا دانلود نشده." + }, + "add_member": { + "annotation": "عضو به ارتباط اضافه شد." + }, + "delete_member": { + "annotation": "عضو از ارتباط حذف شد." + }, + "connect": { + "annotation": { + "point": "راه به نقطه ای متصل شد.", + "vertex": "راه به بقیه متصل شد.", + "line": "راه به خطی متصل شد.", + "area": "راه به فضایی متصل شد." + } + }, + "disconnect": { + "title": "قطع اتصال", + "description": "قطع ارتباط این خطوط/فضاها از هر چیز دیگری.", + "key": "D", + "annotation": "ارتباط خطوط/فضاها قطع شد.", + "not_connected": "خطوط/فضاهای کافی برای قطع اتصال وجود ندارد." + }, + "merge": { + "title": "ترکیب کردن", + "description": "ترکیب این خطوط.", + "key": "C", + "annotation": "{n} خط ترکیب شد.", + "not_eligible": "این ویژگی قابل ترکیب نیست.", + "not_adjacent": "این خطوط قابل ترکیب نیستند زیرا به هم متصل نیستند.", + "restriction": "این خط قابل ترکیب شدن نیست چرا که حداقل یک عضو از \"{relation}\" مرتبط است." + }, + "move": { + "title": "انتقال", + "description": "انتقال این به مکان دیگری.", + "key": "M", + "annotation": { + "point": "نقطه منتقل شد.", + "vertex": "گره در راه منتقل شد.", + "line": "خط منتقل شد.", + "area": "فضا منتقل شد.", + "multiple": "چند شیئ منتقل شد." + }, + "incomplete_relation": "این ویژگی قابل انتقال نیست زیرا بطور کامل دانلود نشده." + }, + "rotate": { + "title": "چرخش", + "description": "چرخش این شیئ حول نقطه ی مرکزی آن.", + "key": "R", + "annotation": { + "line": "خط چرخش یافت.", + "area": "فضا چرخش یافت." + } + }, + "reverse": { + "title": "وارونه", + "description": "این خط را به جهت مخالف ببر.", + "key": "V", + "annotation": "خط وارونه شد." + }, + "split": { + "title": "جداسازی", + "description": { + "line": "تقسیم این خط به دو تا در این گره.", + "area": "تقسیم مرز این منطقه به دو.", + "multiple": "تقسیم مرز های خطوط/منطقه به دو تا در این گره." + }, + "key": "X", + "annotation": { + "line": "تقسیم خط.", + "area": "تقسیم مرز منطقه.", + "multiple": "تقسیم مرز {n} خط/فضا" + }, + "not_eligible": "خطوط در شروع و پایانشان قابل تقسیم نیستند.", + "multiple_ways": "تعداد خیلی زیادی خط برای تقسیم اینجا وجود دارد." } }, + "undo": { + "tooltip": "برگرداندن: {action}", + "nothing": "چیزی برای برگرداندن نیست." + }, + "redo": { + "tooltip": "انجام دوباره: {action}", + "nothing": "چیزی برای انجام دوباره نیست." + }, + "tooltip_keyhint": "میانبر:", + "browser_notice": "این ویرایشگر در فایرفاکس، کروم، سافاری، اپرا و اینترنت اکسپلورر 9 به بالا پشتیبانی میشود، لطفا مرورگرتان را ارتقا دهید یا از Potltatch 2 برای ویرایش نقشه استفاده کنید.", "translate": { - "translate": "برگردان", - "localized_translation_language": "گزینش زبان", + "translate": "ترجمه", + "localized_translation_label": "نام چند زبانه", + "localized_translation_language": "انتخاب زبان", "localized_translation_name": "نام" }, - "zoom_in_edit": "بزرگنمایی درون به ویرایش", + "zoom_in_edit": "بزرگنمایی برای ویرایش", + "logout": "خروج", + "loading_auth": "در حال اتصال به OpenStreetMap...", + "report_a_bug": "گزارش یک باگ", + "status": { + "error": "اتصال به API ممکن نیست.", + "offline": "API آفلاین است. لطفا ویرایش را بعدا مجدد انجام دهید.", + "readonly": "API فقط خواندنی است. شما برای دخیره ی تغییراتتان باید صبر کنید." + }, "commit": { - "message_label": "پیام بکاربردن", - "save": "انباره", + "title": "ذخیره تغییرات", + "description_placeholder": "شرح مختصری از کمک های شما", + "message_label": "پیام تعهد", + "upload_explanation": "تغییراتی که بارگذاری میکنید در همه ی نقشه هایی که از داده های OpenStreetMap استفاده میکنند پدیدار میشوند.", + "upload_explanation_with_user": "تفییراتی که شما به عنوان {user} بارگذاری میکنید در همه ی نقشه هایی که از داده های OpenStreetMap استفاده میکنند پدیدار میشوند.", + "save": "ذخیره", "cancel": "لغو", "warnings": "اخطارها", "modified": "اصلاح شد", - "deleted": "پاک شد", + "deleted": "حذف شد", "created": "ساخته شد" }, "contributors": { "list": "ویرایش توسط {users}", - "truncated_list": "ویرایش توسط {users} و {count} دیگران" + "truncated_list": "ویرایش توسط {users} و {count} نفر دیگر" + }, + "geocoder": { + "search": "جستجو در سراسر جهان ...", + "no_results_visible": "هیچ نتیجه ای در ناحیه نقشه ی مشاهده شده نیسن", + "no_results_worldwide": "نتیجه ای یافت نشد" + }, + "geolocate": { + "title": "نمایش مکان من" }, "inspector": { - "show_more": "بیشتر نمایش بده", + "no_documentation_combination": "برای این ترکیب برچسب اسنادی موجود نیست", + "no_documentation_key": "برای این کلید اسنادی موجود نیست", + "show_more": "نمایش بیشتر", "view_on_osm": "نمایش در openstreetmap.org", "all_tags": "همه برچسب ها", - "all_members": "همه عضوها", + "all_members": "همه اعضا", + "all_relations": "تمام روابط", + "new_relation": "رابطه جدید...", "role": "نقش", + "choose": "انتخاب نوع ویژگی", + "results": "{n} نتیجه برای {search}", "reference": "نمایش در ویکی OpenStreetMap", - "remove": "پلک کردن", + "back_tooltip": "تغییر ویژگی", + "remove": "پاک کردن", "search": "جسنجو", - "multiselect": "گزینش موارد", - "unknown": "ناشناس", - "edit": "ویرایش ویژگیها", - "none": "هیچ" + "multiselect": "موارد انتخاب شدند", + "unknown": "ناشناخته", + "incomplete": "<دانلود نشده>", + "feature_list": "جستجوی ویژگی ها", + "edit": "ویرایش ویژگی", + "none": "هیچ", + "node": "گره", + "way": "راه", + "relation": "ارتباط", + "location": "مکان" }, "background": { + "title": "پس زمینه", + "description": "تنظیمات پس زمینه", + "percent_brightness": "{opacity}% روشنایی", "none": "هیچ", "custom": "سفارشی", - "reset": "نوسازی" + "custom_prompt": "قالب کاشی را وارد کنید. نشانه های مشخص {z}, {x}, {y} هستند برای طرح Z/X/Y و {u} برای طرح چهار کاشی.", + "fix_misalignment": "تعمیر تراز", + "reset": "باز نشاندن" }, "restore": { - "restore": "بازیابی" + "heading": "شما تغییرات ذخیره نشده دارید", + "description": "آیا مایلید تغییرات ذخیره نشده جلسه قبل را بازیابی کنید؟", + "restore": "بازیابی", + "reset": "باز نشانی" }, "save": { - "title": "انباره" + "title": "ذخیره", + "help": "ذخیره تغییرات در OpenStreetMap, آنها را برای دیگران قابل نمایش می سازد.", + "no_changes": "تغییراتی برای دخیره نیست.", + "error": "هنگام تلاش برای ذخیره خطایی رخ داده است", + "uploading": "در حال بارگذاری تغییرات در OpenStreetMap.", + "unsaved_changes": "شما تغییرات ذخیره نشده دارید" }, "success": { "edited_osm": "OSMویرایش شد!", - "twitter": "اشتراک در twitter", - "google": "اشتراک گذاری در Google+" + "just_edited": "شما فقط OpenStreetMap را ویرایش کردید!", + "view_on_osm": "نمایش در OSM", + "facebook": "اشتراک گذاری در فیسبوک", + "twitter": "اشتراک گذاری در تویتر", + "google": "اشتراک گذاری در Google+", + "help_html": "تغییرات شما در نمای \"استاندارد\" در چند دقیقه قابل رؤیت است. سایر نما ها، و ویژگی های خاص، ممکن است بیشتر طول کشد\n(جزییات).\n" + }, + "confirm": { + "okay": "باشه" }, "splash": { - "walkthrough": "آغاز پیاده روی", + "welcome": "به ویرایشگر ID OpenStreetMap خوش آمدید", + "text": "iD یک ابزار دوستانه اما قدرتمند برای کمک کردن به بهترین نقشه رایگان جهان است. این نسخه ی {version} است. برای اطلاعات بیشتر {website} را ببینید و باگ را در {github} گزارش دهید.", + "walkthrough": "آغاز گردش", "start": "حالا ویرایش کن" }, + "source_switch": { + "live": "زنده", + "lose_changes": "شما تغییرات ذخیره نشده دارید. تغییر سرور نقشه آنها را دور می اندازد. مطمئنید میخواهید سرور را تغییر دهید؟", + "dev": "توسعه" + }, "tag_reference": { - "description": "توضیحات" + "description": "توضیحات", + "on_wiki": "{tag} در wiki.osm.org", + "used_with": "با {type} استفاده شده" }, "validations": { - "untagged_point": "نقطه برچسب نخورده" + "untagged_point": "نقطه برچسب نخورده", + "untagged_line": "خط برچسب گذاری نشده", + "untagged_area": "فضای برچسب گذاری نشده", + "many_deletions": "شما در حال حذف {n} شیئ هستید. مطمئنید میخواهید این کار را انجام دهید؟ این کار آنها را از نقشه ای که دیگران در openstreetmap.org میبینند حذف می کند.", + "tag_suggests_area": "برچسب {tag} پیشنهاد میکند خط باید یک فضا باشد، اما این یک فضا نیست", + "untagged_tooltip": "یک نوع ویژگی را انتخاب کنید که توصیف کند این {geometry} چیست.", + "deprecated_tags": "برچسب های توصیه شده: {tags}" }, "zoom": { - "in": "بزرگنمایی درون", - "out": "بزرگنمایی برون" + "in": "بزرگنمایی", + "out": "کوچک نمایی" }, + "cannot_zoom": "در حالت فعلی بیش از این نمیتوان کوچک نمایی کرد.", "gpx": { - "local_layer": "فایل GPX محلی" + "local_layer": "فایل GPX محلی", + "drag_drop": "یک پرونده ی .gpx را بکشید و در این صفحه رها کنید، یا برای مرور دکمه ی سمت راست را کلیک کنید", + "zoom": "بزرگنمایی به ردپای GPX", + "browse": "مرور برای یک پرونده ی .gpx" }, "help": { - "title": "کمک" + "title": "کمک", + "help": "#کمک\n\nاین یک ویرایشگر برای [OpenStreetMap](http://www.openstreetmap.org/) است،\nنقشه ای رایگان و قابل ویرایش از جهان. شما میتوانید از آن برای افزودن و بروز رسانی\nداده ها در ناحیه تان استفاده کنید، ساختن نقشه ی منبع باز و داده باز از جهان\nبرای همه کس بهتر است.\n\nویرایش هایی که شما در این نقشه می سازید برای هر کسی که از OpenStreetMap استفاده میکند\nقابل استفاده است. برای ایجاد یک ویرایش، شما نیاز دارید به\n[حساب رایگان OpenStreetMap](https://www.openstreetmap.org/user/new).\n\n[ویرایشگر ID](http://ideditor.com/) یک پروژه مشترک است با [منبع کد در GitHub \nموجود است](https://github.com/systemed/iD).\n", + "roads": "# جاده ها\n\nشما میتوانید جاده ها را ایجاد کنید، تعمیر کنید، و حذف کنید به وسیله ی این ویرایشگر. جاده ها میتوانند همه نوعی باشند:\nپیاده روی، بزرگراه، راه آهن، راه موتور سیکلت، و بیشتر - هر چیزی که غالبا - برای عبور است \nباید نقشه شود.\n\n### انتخاب کردن\n\nروی جاده کلیک کنید تا انتخاب شود. طرح کلی باید قابل نمایش باشد، همراه\nیک منوی ابزار کوچک روی نقشه و یک نوار کناری نشان میدهد اطلاعات بیشتری\nدرباره جاده.\n\n### اصلاح کردن\n\nاغلب جاده هایی که میبینید با تصاویر نقشه نگاری پشت سرشان یا پیگیری GPS\nهم طراز نیستند. شما میتوانید این جاده ها را در مکان درستشان تطبیق\nدهید.\n\nاولین کلیک روی نقشه شما میخواهید تغییر دهید. اینکار آنرا برجسته میکند و نقاط\nکنترل را نشان میدهد شما میتوانید آنرا به مکان بهتری بکشید. اگر\nبخواهید نقاط کنترل جدید بیشتری برای اطلاعات بیشتر اضافه کنید، روی قسمتی\nاز نقشه که بدون گره است دوبار کلیک کنید، و یکی اضاف خواهد شد.\n\nاگر جاده به جاده های دیگر متصل باشد، اما روی نقشه به درستی \nمتصل نباشد، شما میتوانید یکی از نقاط کنترل را بکشید به سایر جاده ها برای\nفراهم کردن پیوستن آنها. داشتن جاده های پیوسته و متصل برای نقشه مهم است\nو ارائه دستورالعمل ها ی رانندگی ضروری است.\n\nهمچنین میتوانید روی ابزار 'انتقال' کلیک کنید یا کلید میانبر `M` را فشار دهید تا همه جاده یک بار منتقل\nشود، و بعد دوباره کلیک کنید تا جابجایی ذخیره شود.\n\n### حذف کردن\n\nاگر جاده کامل اشتباه است - میتوانید ببینید که در تصویر ماهواره ای موجود نیست و بصورت ایده آل\nبطور محلی پذیرفته شده که در حال حاضر موجود نیست - شما میتوانید\nآنرا حذف کنید، با پاک کردن آن از نقشه. هنگام حذف ویژگی محتاط باشید-\nشبیه هر ویرایش دیگری، نتایج توسط هر کسی دیده میشود تصاویر ماهواره ای غالبا تاریخ گذشته اند،\nپس ممکن است به طور ساده جاده جدیدا ساخته شده باشد.\n\nشما میتوانید جاده ای را حذف کنید با کلیک روی آن و انتخاب آن، سپس کلیک روی آیکون سطل زباله\nیا فشار دکمه ی 'Delete'.\n\n### ایجاد کردن\n\nجاهایی یافت میشوند که باید جاده باشند ولی اینگونه نیست؟ روی آیکون 'خط'\nدر بالا سمت چپ ویرایشگر کلیک کنید یا کلید میانبر`2` را فشار دهید\nتا کشیدن یک خط شروع شود.\n\nبرای شروع کشیدن روی ابتدای جاده کلیک کنید. اگر جاده\nشاخه ای از جاده ی موجود باشد، با کلیک روی مکانی که به هم متصل اند شروع کنید.\n\nسپس روی نقاط در امتداد جاده کلیک کنید به طوری که از مسیر سمت راست ، طبق تصاویر ماهواره ای\nیا GPS پیروی کند. اگر جاده ی در حال کشیدن شما از سایر جاده ها میگذرد، با کلیک\nروی نقطه تقاطع آنرا متصل کنید. وقتی کشیدنتان انجان شد، دوبار کلیک کنید\nیا 'بازگشت' را فشار دهید یا روی صفحه کلید 'Enter' را فشار دهید.\n", + "addresses": "# آدرس ها\n\nآدرس ها مقداری از اطلاعات بسیار سودمند برای نقشه هستند.\n\nاگرچه آدرس ها اغلب بعنوان بخش هایی از جاده نمایان میشوند، در OpenStreetMap\nآنها بعنوان ویژگی هایی از ساختمان ها و مکان ها در امتداد خیابان ها ثبت میشوند.\n\nشما میتوانید اطلاعات آدرس را به مکان های نقشه شده بعنوان خطوط اضافه ساخته شده و\nهمچنین آنهایی که بعنوان یک نقطه نقشه شده اند اضافه کنید. منبع مناسب برای داده های آدرس\nبررسی بر روی زمین و دانش شخصی است -مثل هر ویژگی دیگری،\nکپی برداری از منابع تجاری مثل نقشه های گوگل به شدت\nممنوع است.\n", + "buildings": "# ساختمان ها\n\nOpenStreetMap یک دیتابیس عظیم جهان از ساختمان ها است. شما میتوانید\nاین دیتابیس را بسازید و بهبود بخشید.\n\n### انتخاب کردن\n\nمیتوانید با کلیک روی مرز ساختمان آن را انتخاب کنید. اینکار ساختمان را\nبرجسته میکند و یک منو ابزار کوچک باز میکند همجنین یک نوار کناری اطلاعات بیشتری \nدرباره ی ساختمان نشان میدهد.\n\n### اصلاح کردن\n\nگاهی اوقات ساختمان ها نادرست جاگذاری شده اند یا برچسب نادرست دارند.\n\nبرای انتقال کل ساختمان، آنرا انتخاب کنید، بعد روی ابزار 'انتقال' کلیک کنید. موس تان\nرا برای تغییر ساختمان حرکت دهید، و وقتی به درستی جایگذاری شد کلیک کنید.\n\nبرای تعمیر قسمت خاصی از ساختمان، روی گره هایی که مرز را مشخص میکنند کلیک کنید\nو آنها را به مکان بهتری بکشید.\n\n### ایجاد کردن\n\nیکی از موضوعات اصلی پیرامون افزودن ساختمان ها به نقشه این است که \nOpenStreetMap ساختمان ها را هم بصورت نقاط و هم شکل ها ثبت میکند. قاعده کلی برای\n _نقشه کردن ساختمان ها بصورت شکل هر وقت ممکن باشد_ این است، و نقشه کردن شرکت ها، خانه ها،\nامکانات رفاهی، و چیزهای دیگری که به عنوان ساختمان کاربرد دارند قرار گرفتن نقاط با شکل\nساختمان است\n\nکشیدن ساختمان بصورت شکل را شروع کنید با کلیک روی کلید 'فضا' در بالا سمت چپ \nرابط کاربری، و به آن پایان دهید توسط فشار دادن دکمه ی 'بازگشت' در صفحه کلیدتان\nیا کلیک روی اولین گره کشیده شده تا شکل بسته شود.\n\n### حذف کردن\n\nاگر ساختمانی کاملا نادرست است- میتوانید ببینید که در تصویر ماهواره ای\nموجود نیست و ایده آل تر بصورت محلی پذیرفته شده که موجود نیست - میتوانید\nآن را حذف کنید، با پاک کردن آن از نقشه. هنگام حذف ویژگی محتاط باشید\nشبیه هر ویرایش دیگری، نتایج توسط هر کسی دیده میشود و تصاویر ماهواره ای\nغالبا تاریخ گذشته است، پس بطور ساده ممکن است ساختمان جدیدا ساخته شده.\n\nمیتوانید یک ساختمان را حذف کنید با کلیک روی آن و انتخاب آن، سپس\nروی آیکون سطل زباله کلیک کنید یا کلید 'Delete' را فشار دهید.\n" }, "intro": { + "navigation": { + "title": "ناوبری", + "drag": "ناحیه اصلی نقشه داده های OpenStreetMap را در بالای پس زمینه نشان می دهد. شما میتوانید با کشیدن و اسکرول کردن هدایت کنید، شبیه هر نقشه ی تحت وب دیگری. **نقشه را بکشید!**", + "select": "ویژگی های نقشه به سه روش نمایان میشوند: استفاده از نقاط، خطوط یا فضاها. همه ی ویژگی ها یا کلیک روی آنها قابل انتخاب اند.**برای انتخاب نقطه روی آن کلیک کنید.**", + "header": "سربرگ نوع ویژگی را به ما نشان می دهد.", + "pane": "وقتی یک ویژگی انتخاب میشود، ویرایشگر ویژگی نمایان میشود. سربرگ نوع ویژگی را به ما نشان میدهد و قطعه اصلی خواص ویژگی را، مثل نام و آدرس آن.**ویرایشگر ویژگی را توسط دکمه بستن در بالا سمت راست ببندید.**" + }, "points": { - "title": "نقاط" + "title": "نقاط", + "add": "نقاط میتوانند برای نشان دادن ویژگی هایی مثل فروشگاه ها، رستوران ها، و کوه ها استفاده شوند. آنها یک مکان خاص را تعیین میکنند، و آنچه آنجا است را توصیف می کنند.** برای افزودن نقطه جدید روی دکمه ی نقطه کلیک کنید.**", + "place": "نقطه میتواند با کلیک کردن روی نقشه جایگذاری شود.**نقطه را بالای ساختمان جای دهید.**", + "search": "ویژگی های مختلف زیادی وجود دارند که توسط نقاط ارائه میشوند. نقطه ای که فقط شما اضافه کردید یک کافه است.**جستجو کنید برای '{name}'**", + "choose": "**کافه را از لیست انتخاب کنید.**", + "describe": "نقطه اکنون به عنوان کافه تعیین شد. با استفاده از ویرایشگر ویژگی، میتوانیم اطلاعات بیشتری درباره ویژگی اضافه کنیم.**اسمی را اضافه کنید.**", + "close": "ویرایشگر ویژگی میتواند با کلیک بر روی دکمه ی بستن بسته شود.**ویراشگر ویژگی را ببندید**", + "reselect": "غالبا نقاط از قبل موجود خواهند بود، اما دارای اشتباه یا ناقص اند. ما میتوانیم نقاط موجود را ویرایش کنیم.**نقطه ای را که فقط شما ساخته اید انتخاب کنید.**", + "fixname": "**اسم را تغییر دهید و ویرایشگر ویژگی را ببندید.**", + "reselect_delete": "همه ی ویژگی های روی نقشه قابل حذف هستند.**روی نقطه ای که ساخته اید کلیک کنید.**", + "delete": "منوی دور نقطه دارای عملیاتی است که می توان روی آن انجام داد، شامل حذف.**نقطه را حذف کنید.**" }, "areas": { - "title": "فضاها" + "title": "فضاها", + "add": "فضا ها یک راه جزییاتی بیشتر برای نمایش مشخصات اند. آنها اطلاعاتی درباره ویژگی های مرزی ارائه میدهند. فضا ها میتوانند برای انواع بیشتری ویژگی استفاده شوند نقاط میتوانند استفاده شوند و، اغلب مقدم ترند.**برای افزودن فضای جدید روی دکمه ی فضا کلیک کنید.**", + "corner": "مناطق با گذاشتن گره هایی در مرز منطقه کشیده می شوند.**گره آغازین را در یکی از گوشه های زمین بازی قرار دهید.**", + "place": "فضا را با گذاشتن گره های بیشتر بکشید. فضا را با کلیک روی نقطه ی شروع پایان دهید.**فضایی برای زمین بازی بکشید.**", + "search": "**برای '{name}' جستجو کنید.**", + "choose": "**زمین بازی را از لیست انتخاب کنید.**", + "describe": "**اسمی اضافه کنید، و ویرایشگر ویژگی را ببندید**" }, "lines": { - "title": "خطوط" + "title": "خطوط", + "add": "خطوط برای نشان دادن ویژگی هایی مثل جاده ها، راه آهن ها و رودخانه ها استفاده میشوند.**روی دکمه ی خط کلیک کنید تا خط جدیدی اضافه کنید.**", + "start": "**خط را با کلیک روی پایان جاده آغاز کنید.**", + "intersect": "برای افزودن گره به خط کلیک کنید. میتوانید نقشه را حرکت دهید هنگام کشیدن اگر نیاز باشد. جاده ها، و انواع بیشتر دیگری از خط ها، قسمتی از یک شبکه ی بزرگند. این مهم است برای خط ها تا بطور صحیح متصل شده باشند تا برنامه های مسیریابی بتوانند کار کنند.\n**روی خیابان Flower کلیک کنید، برای ایجاد یک تقاطع از دو خط.**", + "finish": "خط ها میتوانند با کلیک دوباره روی آخرین نقطه پایان یابند.**کشیدن نقشه را تمام کنید.**", + "road": "**جاده را از لیست انتخاب کنید**", + "residential": "انواع مختلفی از جاده وجود دارد، شایع ترینش مسکونی است.**نوع را جاده ی مسکونی انتخاب کنید**", + "describe": "**جاده را نامگذاری کنید و ویرایشگر ویژگی را ببندید.**", + "restart": "جاده نیاز به اتصال به تقاطع خیابان Flower دارد.", + "wrong_preset": "شما نوع جاده را مسکونی انتخاب نکرده اید.**برای انتخاب دوباره اینجا کلیک کنید**" }, "startediting": { - "title": "ویرایش آغاز شد" + "title": "شروع ویرایش", + "help": "اسناد بیشتر و این گرشگری در اینجا یافت میشوند.", + "save": "فراموش نکنید که به طور منظم تغییرات را ذخیره کنید!", + "start": "شروع نقشه کشی!" } }, "presets": { + "categories": { + "category-building": { + "name": "ساختمان" + }, + "category-golf": { + "name": "گلف" + }, + "category-landuse": { + "name": "کاربرد زمین" + }, + "category-path": { + "name": "مسیر" + }, + "category-rail": { + "name": "راه آهن" + }, + "category-road": { + "name": "جاده" + }, + "category-route": { + "name": "مسیر" + }, + "category-water-area": { + "name": "آب" + }, + "category-water-line": { + "name": "آب" + } + }, "fields": { "access": { - "label": "دسترسي" + "label": "دسترسي", + "placeholder": "ناشناخته", + "types": { + "access": "عمومی", + "foot": "پیاده", + "motor_vehicle": "وسایل نقلیه موتوری", + "bicycle": "دوچرخه ها", + "horse": "اسب ها" + }, + "options": { + "yes": { + "title": "مجاز", + "description": "دسترسی مجاز طبق قانون: حق از راه" + }, + "no": { + "title": "ممنوع", + "description": "دسترسی برای عموم مردم مجاز نیست" + }, + "permissive": { + "title": "مجاز", + "description": "دسترسی تا وقتی صاحبش مجوز را لغو نکند مجاز است" + }, + "private": { + "title": "خصوصی", + "description": "دسترسی فقط با اجازه از صاحب بصورت انفرادی مجاز است" + }, + "designated": { + "title": "تعیین شده", + "description": "دسترسی با توجه به علائم و قوانین محلی مجاز است" + }, + "destination": { + "title": "مقصد", + "description": "دسترسی فقط برای رسیدن به مقصدی مجاز است" + } + } + }, + "access_simple": { + "label": "دسترسی" }, "address": { "label": "ادرس", @@ -119,20 +463,57 @@ "housename": "نام خانه", "number": "123", "street": "خيابان", - "city": "شهر" + "city": "شهر", + "postcode": "کد پستی" } }, + "admin_level": { + "label": "سطح مدیریت" + }, + "aerialway": { + "label": "نوع" + }, + "aerialway/access": { + "label": "دسترسی" + }, + "aerialway/bubble": { + "label": "قل قل کردن" + }, + "aerialway/capacity": { + "label": "ظرفیت (بر ساعت)", + "placeholder": "500, 2500, 5000..." + }, + "aerialway/duration": { + "label": "مدت زمان (دقیقه)", + "placeholder": "1, 2, 3..." + }, + "aerialway/heating": { + "label": "گرم شده" + }, + "aerialway/occupancy": { + "label": "تصرف", + "placeholder": "2, 4, 8..." + }, + "aerialway/summer/access": { + "label": "دسترسی (تابستان)" + }, "aeroway": { "label": "نوع" }, "amenity": { "label": "نوع" }, + "artist": { + "label": "هنرمند" + }, "artwork_type": { "label": "نوع" }, "atm": { - "label": "ATM" + "label": "خودپرداز" + }, + "backrest": { + "label": "تکیه گاه" }, "barrier": { "label": "نوع" @@ -149,36 +530,119 @@ "building_area": { "label": "ساختمان" }, + "cans": { + "label": "پذیرش قوطی ها" + }, "capacity": { - "label": "ظرفيت" + "label": "ظرفيت", + "placeholder": "50, 100, 200..." + }, + "cardinal_direction": { + "label": "جهت" + }, + "clock_direction": { + "label": "جهت", + "options": { + "clockwise": "ساعتگرد", + "anticlockwise": "پاد ساعتگرد" + } + }, + "clothes": { + "label": "پذیرش لباس ها" + }, + "collection_times": { + "label": "مجموع دفعات" }, "construction": { "label": "نوع" }, + "country": { + "label": "کشور" + }, + "covered": { + "label": "سرپوشیده" + }, "crossing": { "label": "نوع" }, + "cuisine": { + "label": "غذا" + }, + "denomination": { + "label": "پول" + }, + "denotation": { + "label": "مفهوم" + }, + "description": { + "label": "توضیحات" + }, + "electrified": { + "label": "برق رسانی" + }, "elevation": { "label": "ارتفاع" }, + "emergency": { + "label": "اورژانس" + }, "entrance": { "label": "نوع" }, "fax": { - "label": "نمابر" + "label": "نمابر", + "placeholder": "+31 42 123 4567" + }, + "fee": { + "label": "دستمزد" }, "fire_hydrant/type": { "label": "نوع" }, + "fixme": { + "label": "تصحیح من" + }, + "gauge": { + "label": "مقیاس" + }, + "generator/method": { + "label": "شیوه" + }, + "generator/source": { + "label": "منبع" + }, "generator/type": { "label": "نوع" }, + "glass": { + "label": "پذیرش عینک" + }, + "golf_hole": { + "label": "مراجعه", + "placeholder": "تعداد سوراخ (1-18)" + }, + "handicap": { + "label": "مانع", + "placeholder": "1-18" + }, "highway": { "label": "نوع" }, "historic": { "label": "نوع" }, + "iata": { + "label": "یاتا" + }, + "icao": { + "label": "ایکائو" + }, + "incline": { + "label": "شیب" + }, + "information": { + "label": "نوع" + }, "internet_access": { "label": "دسترسی اینترنت", "options": { @@ -190,6 +654,10 @@ "landuse": { "label": "نوع" }, + "lanes": { + "label": "خطوط", + "placeholder": "1, 2, 3..." + }, "layer": { "label": "لايه" }, @@ -197,11 +665,29 @@ "label": "نوع" }, "levels": { - "label": "لایه ها" + "label": "سطح", + "placeholder": "2, 4, 6..." + }, + "lit": { + "label": "لیتر" + }, + "location": { + "label": "مکان" }, "man_made": { "label": "نوع" }, + "maxspeed": { + "label": "محدودیت سرعت", + "placeholder": "40, 50, 60..." + }, + "name": { + "label": "اسم", + "placeholder": "نام مشترک (در صورت وجود)" + }, + "natural": { + "label": "طبیعی" + }, "network": { "label": "شبکه" }, @@ -214,17 +700,40 @@ "oneway": { "label": "يک طرفه" }, + "oneway_yes": { + "label": "یک طرفه" + }, "opening_hours": { "label": "ساعت" }, "operator": { "label": "اپراتور" }, + "paper": { + "label": "پذیرش کاغذ" + }, + "par": { + "label": "برابری", + "placeholder": "3, 4, 5..." + }, + "park_ride": { + "label": "پارک و سوار شدن" + }, "parking": { "label": "نوع" }, "phone": { - "label": "تلفن" + "label": "تلفن", + "placeholder": "+31 42 123 4567" + }, + "piste/difficulty": { + "label": "سختی" + }, + "piste/grooming": { + "label": "تیمار کردن" + }, + "piste/type": { + "label": "نوع" }, "place": { "label": "نوع" @@ -235,9 +744,24 @@ "railway": { "label": "نوع" }, + "ref": { + "label": "مراجعتی" + }, "relation": { "label": "نوع" }, + "religion": { + "label": "دین", + "options": { + "christian": "مسیحی", + "muslim": "مسلمان", + "buddhist": "بودایی", + "jewish": "یهودی", + "hindu": "هندو", + "shinto": "شینتو", + "taoist": "تائو" + } + }, "restriction": { "label": "نوع" }, @@ -247,21 +771,49 @@ "route_master": { "label": "نوع" }, + "sac_scale": { + "label": "سختی مسیر" + }, "service": { "label": "نوع" }, + "shelter": { + "label": "پناه گاه" + }, + "shelter_type": { + "label": "نوع" + }, "shop": { "label": "نوع" }, + "source": { + "label": "منبع" + }, "sport": { "label": "ورزشي" }, "structure": { + "label": "ساختاری", + "placeholder": "ناشناخته", "options": { "bridge": "پل", - "tunnel": "تونل" + "tunnel": "تونل", + "embankment": "خاکریز", + "cutting": "برش" } }, + "studio_type": { + "label": "نوع" + }, + "supervised": { + "label": "نظارت" + }, + "surface": { + "label": "سطح" + }, + "toilets/disposal": { + "label": "در اختیار" + }, "tourism": { "label": "نوع" }, @@ -271,6 +823,15 @@ "tracktype": { "label": "نوع" }, + "trail_visibility": { + "label": "مسیر پیاده روی" + }, + "tree_type": { + "label": "نوع" + }, + "tunnel": { + "label": "تونل" + }, "vending": { "label": "نوع محموله" }, @@ -281,11 +842,15 @@ "label": "نوع" }, "website": { - "label": "وب سايت" + "label": "وب سايت", + "placeholder": "http://example.com/" }, "wetland": { "label": "نوع" }, + "wheelchair": { + "label": "دسترسی ویلچر" + }, "wikipedia": { "label": "ويکي پديا" }, @@ -294,125 +859,1470 @@ } }, "presets": { + "address": { + "name": "آدرس", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'آدرس'، با کاما جدا میشوند>" + }, + "aerialway": { + "name": "بالابر" + }, + "aerialway/cable_car": { + "name": "ماشین کابلی" + }, + "aerialway/chair_lift": { + "name": "صندلی بالابر" + }, + "aerialway/gondola": { + "name": "تله کابین" + }, + "aerialway/magic_carpet": { + "name": "آسانسور اسکی" + }, + "aerialway/platter": { + "name": "بالابر بشقابی" + }, + "aerialway/pylon": { + "name": "برج بالابر" + }, + "aerialway/rope_tow": { + "name": "بالابر دو طنابه" + }, + "aerialway/station": { + "name": "ایستگاه بالابر" + }, + "aerialway/t-bar": { + "name": "بالابر نوار T" + }, + "aeroway": { + "name": "کاربری راه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای ' راه فرود'، با کاما جدا میشوند>" + }, "aeroway/aerodrome": { - "name": "فرودگاه" + "name": "فرودگاه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'فرودگاه'، با کاما جدا میشوند>" + }, + "aeroway/apron": { + "name": "صحن", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'صحن'، با کاما جدا میشوند>" + }, + "aeroway/gate": { + "name": "دروازه فرودگاه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'ورودی فرودگاه'، با کاما جدا میشوند>" + }, + "aeroway/hangar": { + "name": "آشیانه هواپیما", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'آشیانه هواپیما'، با کاما جدا میشوند>" + }, + "aeroway/helipad": { + "name": "محل فرود هلی کوپتر", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'محل فرود هلی کوپتر'، با کاما جدا میشوند>" + }, + "aeroway/runway": { + "name": "باند فرودگاه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'مسیر فرود'، با کاما جدا میشوند>" + }, + "aeroway/taxiway": { + "name": "راه فرود به پارکینگ", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'فرود به پارک'، با کاما جدا میشوند>" + }, + "aeroway/terminal": { + "name": "پایانه فرودگاه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'پایانه فرودگاه'، با کاما جدا میشوند>" + }, + "amenity": { + "name": "کاربری", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'کاربری اراضی'، با کاما جدا میشوند>" + }, + "amenity/arts_centre": { + "name": "مرکز هنری" + }, + "amenity/atm": { + "name": "خودپرداز", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'خودپرداز'، با کاما جدا میشوند>" }, "amenity/bank": { - "name": "بانک" + "name": "بانک", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'بانک'، با کاما جدا میشوند>" }, "amenity/bar": { - "name": "بار" + "name": "بار", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'بار'، با کاما جدا میشوند>" + }, + "amenity/bench": { + "name": "نیمکت", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'نیمکت'، با کاما جدا میشوند>" + }, + "amenity/bicycle_parking": { + "name": "پارکینگ دوچرخه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'پارکینگ دوچرخه'، با کاما جدا میشوند>" + }, + "amenity/bicycle_rental": { + "name": "اجاره دوچرخه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'اجاره دوچرخه'، با کاما جدا میشوند>" + }, + "amenity/boat_rental": { + "name": "کرایه قایق" }, "amenity/cafe": { - "name": "کافه" + "name": "کافه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'کافه'، با کاما جدا میشوند>" + }, + "amenity/car_rental": { + "name": "کرایه ماشین", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'کرایه خودرو'، با کاما جدا میشوند>" + }, + "amenity/car_sharing": { + "name": "به اشتراک گذاری خودرو", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'اشتراک گذاری خودرو'، با کاما جدا میشوند>" + }, + "amenity/car_wash": { + "name": "کارواش", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'کارواش'، با کاما جدا میشوند>" + }, + "amenity/childcare": { + "name": "مراقبت از کودک", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'مراقبت از کودک'، با کاما جدا میشوند>" + }, + "amenity/cinema": { + "name": "سینما", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'سینما'، با کاما جدا میشوند>" + }, + "amenity/clinic": { + "name": "کلینیک" + }, + "amenity/clock": { + "name": "ساعت" + }, + "amenity/college": { + "name": "دانشکده", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'دانشکده'، با کاما جدا میشوند>" + }, + "amenity/courthouse": { + "name": "دادگاه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'دادگاه'، با کاما جدا میشوند>" + }, + "amenity/dentist": { + "name": "دندانپزشک" + }, + "amenity/doctor": { + "name": "دکتر" + }, + "amenity/drinking_water": { + "name": "آب آشامیدنی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'آب آشامیدنی'، با کاما جدا میشوند>" + }, + "amenity/embassy": { + "name": "سفارت خانه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'سفارت'، با کاما جدا میشوند>" + }, + "amenity/fast_food": { + "name": "غذای آماده", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'غذای آماده'، با کاما جدا میشوند>" }, "amenity/fire_station": { - "name": "ایستگاه آتش نشانی" + "name": "ایستگاه آتش نشانی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'ایستگاه آتش نشانی'، با کاما جدا میشوند>" + }, + "amenity/fountain": { + "name": "فواره", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'فواره'، با کاما جدا میشوند>" + }, + "amenity/fuel": { + "name": "پمپ گاز", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'پمپ گاز'، با کاما جدا میشوند>" + }, + "amenity/grave_yard": { + "name": "مقبره", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'مقبره'، با کاما جدا میشوند>" }, "amenity/hospital": { - "name": "بیمارستان" + "name": "بیمارستان", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'بیمارستان'، با کاما جدا میشوند>" + }, + "amenity/kindergarten": { + "name": "مهد کودک", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'مهد کودک'، با کاما جدا میشوند>" }, "amenity/library": { - "name": "کتابخانه" + "name": "کتابخانه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'کتابخانه'، با کاما جدا میشوند>" + }, + "amenity/marketplace": { + "name": "بازار", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'بازار'، با کاما جدا میشوند>" + }, + "amenity/parking": { + "name": "پارکینگ خودرو" }, "amenity/pharmacy": { - "name": "داروخانه" + "name": "داروخانه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'داروخانه'، با کاما جدا میشوند>" + }, + "amenity/place_of_worship": { + "name": "مکانی از عبادتگاه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'مکان مذهبی'، با کاما جدا میشوند>" + }, + "amenity/place_of_worship/buddhist": { + "name": "معبد بودایی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'معبد بودایی'، با کاما جدا میشوند>" }, "amenity/place_of_worship/christian": { - "name": "کلیسا" + "name": "کلیسا", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'کلیسا'، با کاما جدا میشوند>" + }, + "amenity/place_of_worship/jewish": { + "name": "کنیسه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'کنیسه'، با کاما جدا میشوند>" }, "amenity/place_of_worship/muslim": { - "name": "مسجد" + "name": "مسجد", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'مسجد'، با کاما جدا میشوند>" }, "amenity/police": { - "name": "پليس" + "name": "پليس", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'پلیس'، با کاما جدا میشوند>" }, "amenity/post_box": { - "name": "صندوق پستی" + "name": "صندوق پستی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'صندوق پستی'، با کاما جدا میشوند>" }, "amenity/post_office": { - "name": "اداره پست" + "name": "اداره پست", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'اداره پست'، با کاما جدا میشوند>" + }, + "amenity/pub": { + "name": "میخانه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'میخانه'، با کاما جدا میشوند>" + }, + "amenity/ranger_station": { + "name": "ایستگاه جنگل بانی" + }, + "amenity/recycling": { + "name": "بازیافت مواد" + }, + "amenity/restaurant": { + "name": "رستوران", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'رستوران'، با کاما جدا میشوند>" }, "amenity/school": { - "name": "مدرسه" + "name": "مدرسه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'مدرسه'، با کاما جدا میشوند>" + }, + "amenity/shelter": { + "name": "پناه گاه" + }, + "amenity/studio": { + "name": "استدیو" + }, + "amenity/swimming_pool": { + "name": "استخر شنا", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'استخر شنا'، با کاما جدا میشوند>" + }, + "amenity/taxi": { + "name": "ایستگاه تاکسی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'ایستگاه تاکسی'، با کاما جدا میشوند>" + }, + "amenity/telephone": { + "name": "تلفن عمومی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'تلفن عمومی'، با کاما جدا میشوند>" }, "amenity/theatre": { - "name": "تئاتر" + "name": "تئاتر", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'تئاتر'، با کاما جدا میشوند>" + }, + "amenity/toilets": { + "name": "سرویس بهداشتی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'سرویس بهداشتی'، با کاما جدا میشوند>" + }, + "amenity/townhall": { + "name": "تالار شهر", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'تالار شهر'، با کاما جدا میشوند>" }, "amenity/university": { - "name": "دانشگاه" + "name": "دانشگاه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'دانشگاه'، با کاما جدا میشوند>" + }, + "amenity/vending_machine": { + "name": "دستگاه فروش" + }, + "amenity/veterinary": { + "name": "دامپزشکی" + }, + "amenity/waste_basket": { + "name": "سطل زباله", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'سطل زباله'، با کاما جدا میشوند>" + }, + "area": { + "name": "فضا", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'فضا'، با کاما جدا میشوند>" + }, + "barrier": { + "name": "مانع", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'مانع'، با کاما جدا میشوند>" + }, + "barrier/block": { + "name": "بلوک", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'بلوک'، با کاما جدا میشوند>" + }, + "barrier/bollard": { + "name": "بولارد", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'بولارد'، با کاما جدا میشوند>" + }, + "barrier/cattle_grid": { + "name": "شبکه آهنی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای'Cattle Grid' ، با کاما جدا میشوند>" + }, + "barrier/city_wall": { + "name": "دیوار شهر", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'دیوار شهر'، با کاما جدا میشوند>" + }, + "barrier/cycle_barrier": { + "name": "مانع مستطیلی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'مانع مستطیلی'، با کاما جدا میشوند>" + }, + "barrier/ditch": { + "name": "جوی آب", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'Ditch'، با کاما جدا میشوند>" + }, + "barrier/entrance": { + "name": "ورودی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'Entrance'، با کاما جدا میشوند>" + }, + "barrier/fence": { + "name": "حصار", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'Fence'، با کاما جدا میشوند>" + }, + "barrier/gate": { + "name": "دروازه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'دروازه'، با کاما جدا میشوند>" + }, + "barrier/hedge": { + "name": "پرچین", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'Hedge'، با کاما جدا میشوند>" + }, + "barrier/kissing_gate": { + "name": "دروازه مخصوص انسان", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'Kissing Gate'، با کاما جدا میشوند>" + }, + "barrier/lift_gate": { + "name": "دروازه بالا رونده", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'Lift Gate'، با کاما جدا میشوند>" + }, + "barrier/retaining_wall": { + "name": "دیوار نگه دارنده", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'Retaining Wall' ، با کاما جدا میشوند>" + }, + "barrier/stile": { + "name": "حصار نردبانی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'Stile' ، با کاما جدا میشوند>" + }, + "barrier/toll_booth": { + "name": "عوارضی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'Toll Booth'، با کاما جدا میشوند>" }, "barrier/wall": { - "name": "دیوار" + "name": "دیوار", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'دیوار'، با کاما جدا میشوند>" + }, + "boundary/administrative": { + "name": "مرز اداری", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'مرز اداری'، با کاما جدا میشوند>" }, "building": { - "name": "ساختمان" + "name": "ساختمان", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'ساختمان'، با کاما جدا میشوند>" + }, + "building/apartments": { + "name": "آپارتمان ها", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'آپارتمان'، با کاما جدا میشوند>" + }, + "building/commercial": { + "name": "ساختمان ارتباطی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'ساختمان ارتباطی'، با کاما جدا میشوند>" + }, + "building/entrance": { + "name": "ورودی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'Entrance'، با کاما جدا میشوند>" + }, + "building/garage": { + "name": "گاراژ", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'گاراژ'، با کاما جدا میشوند>" + }, + "building/house": { + "name": "خانه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'خانه'، با کاما جدا میشوند>" + }, + "building/hut": { + "name": "کلبه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'کلبه'، با کاما جدا میشوند>" + }, + "building/industrial": { + "name": "ساختمان صنعتی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'ساختمان صنعتی'، با کاما جدا میشوند>" + }, + "building/residential": { + "name": "ساختمان مسکونی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'ساختمان مسکونی'، با کاما جدا میشوند>" + }, + "craft/basket_maker": { + "name": "سبد ساز" + }, + "craft/beekeeper": { + "name": "پرورش دهنده زنبور عسل" + }, + "craft/blacksmith": { + "name": "آهنگر" + }, + "craft/boatbuilder": { + "name": "قایق ساز" + }, + "craft/bookbinder": { + "name": "صحافی" + }, + "craft/brewery": { + "name": "آبجو سازی" + }, + "craft/carpenter": { + "name": "نجاری" + }, + "craft/carpet_layer": { + "name": "قالیبافی" + }, + "craft/caterer": { + "name": "آذوقه رسان" + }, + "craft/clockmaker": { + "name": "ساعت سازی" + }, + "craft/confectionary": { + "name": "قنادی" + }, + "craft/dressmaker": { + "name": "خیاطی زنانه" + }, + "craft/electrician": { + "name": "متخصص برق" + }, + "craft/gardener": { + "name": "باغبان" + }, + "craft/glaziery": { + "name": "شیشه بری" + }, + "craft/handicraft": { + "name": "صنایع دستی" + }, + "craft/hvac": { + "name": "گرمایش و تهویه مطبوع" + }, + "craft/insulator": { + "name": "عایق سازی" + }, + "craft/jeweler": { + "name": "جواهر سازی" + }, + "craft/key_cutter": { + "name": "برش های کلیدی" + }, + "craft/locksmith": { + "name": "قفل ساز" + }, + "craft/metal_construction": { + "name": "ساخت و ساز فلزی" + }, + "craft/optician": { + "name": "عینک ساز" + }, + "craft/painter": { + "name": "نقاش" + }, + "craft/photographer": { + "name": "عکاس" + }, + "craft/photographic_labratory": { + "name": "آزمایشگاه عکس برداری" + }, + "craft/plasterer": { + "name": "گچ کار" + }, + "craft/plumber": { + "name": "لوله کش" + }, + "craft/pottery": { + "name": "سفالگری" + }, + "craft/rigger": { + "name": "لولزم سازی" + }, + "craft/roofer": { + "name": "سقف ساز" + }, + "craft/saddler": { + "name": "زین ساز" + }, + "craft/sailmaker": { + "name": "بادبان ساز" + }, + "craft/sawmill": { + "name": "چوب بری" + }, + "craft/scaffolder": { + "name": "داربستی" + }, + "craft/sculpter": { + "name": "حجاری" + }, + "craft/shoemaker": { + "name": "کفاش" + }, + "craft/stonemason": { + "name": "سنگ تراش" + }, + "craft/sweep": { + "name": "جاروکش شومینه" + }, + "craft/tailor": { + "name": "خیاط" + }, + "craft/tiler": { + "name": "آجر پز" + }, + "craft/tinsmith": { + "name": "حلبساز" + }, + "craft/upholsterer": { + "name": "خیاط پرده و رومبلی" + }, + "craft/watchmaker": { + "name": "ساعت ساز" + }, + "craft/window_construction": { + "name": "ساخت و ساز پنجره" + }, + "embankment": { + "name": "خاک ریز" + }, + "emergency/ambulance_station": { + "name": "ایستگاه آمبولانس" + }, + "emergency/fire_hydrant": { + "name": "آتش نشانی" + }, + "emergency/phone": { + "name": "تلفن اورژانسی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'تلفن اورژانسی'، با کاما جدا میشوند>" + }, + "entrance": { + "name": "درب ورودی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'Entrance'، با کاما جدا میشوند>" + }, + "footway/crossing": { + "name": "خط عابر پیاده" + }, + "footway/sidewalk": { + "name": "پیاده رو" + }, + "golf/bunker": { + "name": "تله شن و ماسه" + }, + "golf/fairway": { + "name": "چمن راه راه" + }, + "golf/green": { + "name": "چمن سبز نزدیک سوراخ" + }, + "golf/hole": { + "name": "سوراخ گلف" + }, + "golf/lateral_water_hazard": { + "name": "خطر آب های کناری" + }, + "golf/rough": { + "name": "منطقه زمخت" + }, + "golf/tee": { + "name": "Tee Box" + }, + "golf/water_hazard": { + "name": "تهدید آبی" }, "highway": { - "name": "بزرگراه" + "name": "بزرگراه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'بزرگراه'، با کاما جدا میشوند>" + }, + "highway/bridleway": { + "name": "مسیر حیوانات اهلی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'Bridle Path'، با کاما جدا میشوند>" }, "highway/bus_stop": { - "name": "ایستاه اتوبوس" + "name": "ایستگاه اتوبوس", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'ایستگاه اتوبوس'، با کاما جدا میشوند>" + }, + "highway/crossing": { + "name": "محل عبور عابر", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'خط کشی عابر پیاده'، با کاما جدا میشوند>" }, "highway/cycleway": { - "name": "مسیر دوچرخه سواری" + "name": "مسیر دوچرخه سواری", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'مسیر دوچرخه'، با کاما جدا میشوند>" }, "highway/footway": { - "name": "مسیر پیاده روی" + "name": "مسیر پیاده روی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'مسیر پیاده'، با کاما جدا میشوند>" + }, + "highway/living_street": { + "name": "خیابان محدوده زندگی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'خیابان محل زندگی'، با کاما جدا میشوند>" + }, + "highway/mini_roundabout": { + "name": "میدان کوچک", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'Mini-Roundabout'، با کاما جدا میشوند>" }, "highway/motorway": { - "name": "مسیر موتور سواری" + "name": "مسیر موتور سواری", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'راه وسایل موتوری'، با کاما جدا میشوند>" + }, + "highway/motorway_junction": { + "name": "محل اتصال جاده موتور سیکلت", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'Motorway Junction'، با کاما جدا میشوند>" + }, + "highway/motorway_link": { + "name": "اتصال جاده موتور سیکلت", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'پیوستن جاده موتور'، با کاما جدا میشوند>" }, "highway/path": { - "name": "مسیر" + "name": "مسیر", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'مسیر'، با کاما جدا میشوند>" + }, + "highway/pedestrian": { + "name": "عبور پیاده", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'Pedestrian'، با کاما جدا میشوند>" + }, + "highway/primary": { + "name": "جاده اصلی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'راه اصلی'، با کاما جدا میشوند>" + }, + "highway/primary_link": { + "name": "اتصال اصلی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'پیوستن راه اصلی'، با کاما جدا میشوند>" + }, + "highway/residential": { + "name": "جاده ی مسکونی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'جاده مسکونی'، با کاما جدا میشوند>" + }, + "highway/rest_area": { + "name": "فضای استراحت" + }, + "highway/road": { + "name": "جاده ناشناخته", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'جاده ناشناخته'، با کاما جدا میشوند>" + }, + "highway/secondary": { + "name": "جاده دوم", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'جاده دوم'، با کاما جدا میشوند>" + }, + "highway/secondary_link": { + "name": "اتصال دومی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'پیوستن دومی'، با کاما جدا میشوند>" + }, + "highway/service": { + "name": "جاده خدماتی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'جاده خدماتی'، با کاما جدا میشوند>" + }, + "highway/service/alley": { + "name": "کوچه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'کوچه'، با کاما جدا میشوند>" + }, + "highway/service/drive-through": { + "name": "پرداخت سواره", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'پرداخت سواره'، با کاما جدا میشوند>" + }, + "highway/service/driveway": { + "name": "جاده به خانه", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'Driveway'، با کاما جدا میشوند>" + }, + "highway/service/emergency_access": { + "name": "دسترسی اورژانسی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'دسترسی اورژانسی'، با کاما جدا میشوند>" + }, + "highway/service/parking_aisle": { + "name": "راهرو پارکینگ", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'راهرو پارکینگ'، با کاما جدا میشوند>" + }, + "highway/services": { + "name": "فضای خدماتی" + }, + "highway/steps": { + "name": "پله", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'پله'، با کاما جدا میشوند>" + }, + "highway/stop": { + "name": "علامت توقف" + }, + "highway/tertiary": { + "name": "جاده سوم", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'جاده سوم'، با کاما جدا میشوند>" + }, + "highway/tertiary_link": { + "name": "اتصال سومی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'پیوند سوم'، با کاما جدا میشوند>" + }, + "highway/track": { + "name": "مسیر خاکی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'راه خاکی'، با کاما جدا میشوند>" + }, + "highway/traffic_signals": { + "name": "چراغ راهنمایی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'چراغ راهنمایی'، با کاما جدا میشوند>" + }, + "highway/trunk": { + "name": "جاده ی ملی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'جاده ملی'، با کاما جدا میشوند>" + }, + "highway/trunk_link": { + "name": "اتصال جاده ملی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'پیوند جاده ملی'، با کاما جدا میشوند>" + }, + "highway/turning_circle": { + "name": "بنبست قابل دور زدن", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'بنبست قابل دور زدن'، با کاما جدا میشوند>" + }, + "highway/unclassified": { + "name": "جاده طبقه بندی نشده", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'جاده طبقه بندی نشده'، با کاما جدا میشوند>" + }, + "historic": { + "name": "مکان تاریخی", + "terms": "<ترجمه با مترادف یا اصطلاحات مشابه برای 'مکان تاریخی'، با کاما جدا میشوند>" + }, + "historic/archaeological_site": { + "name": "مکان باستان شناسی" + }, + "historic/boundary_stone": { + "name": "سنگ مرزی" }, "historic/castle": { "name": "قلعه" }, + "historic/memorial": { + "name": "یادبود" + }, + "historic/monument": { + "name": "مقبره" + }, + "historic/ruins": { + "name": "ویرانه" + }, + "historic/wayside_cross": { + "name": "صلیب کنار جاده" + }, + "historic/wayside_shrine": { + "name": "آرامگاه کنار جاده" + }, + "landuse": { + "name": "کاربری زمین ها" + }, + "landuse/allotments": { + "name": "بخش پرورش گل و سبزیجات" + }, + "landuse/basin": { + "name": "حوزه رودخانه" + }, + "landuse/cemetery": { + "name": "قبرستان" + }, + "landuse/commercial": { + "name": "تجاری" + }, + "landuse/construction": { + "name": "ساخت و ساز" + }, + "landuse/farm": { + "name": "مزرعه" + }, + "landuse/farmland": { + "name": "زمین کشاورزی" + }, + "landuse/farmyard": { + "name": "محوطه مزرعه" + }, "landuse/forest": { "name": "جنگل" }, + "landuse/grass": { + "name": "علف زار" + }, + "landuse/industrial": { + "name": "صنعتی" + }, + "landuse/meadow": { + "name": "مرغزار" + }, + "landuse/orchard": { + "name": "باغ میوه" + }, + "landuse/quarry": { + "name": "معدن سنگ" + }, + "landuse/residential": { + "name": "مسکونی" + }, + "landuse/retail": { + "name": "خرده فروشی" + }, + "landuse/vineyard": { + "name": "باغ انگور" + }, + "leisure": { + "name": "اوقات فراغت" + }, + "leisure/common": { + "name": "عمومی" + }, + "leisure/dog_park": { + "name": "پارک سگ" + }, + "leisure/garden": { + "name": "باغ" + }, + "leisure/golf_course": { + "name": "زمین گلف" + }, + "leisure/marina": { + "name": "تفرجگاه ساحلی" + }, "leisure/park": { "name": "پارک" }, + "leisure/pitch": { + "name": "زمین ورزشی" + }, + "leisure/pitch/american_football": { + "name": "میدان فوتبال آمریکایی" + }, + "leisure/pitch/baseball": { + "name": "الماسی شکل بیسبال" + }, + "leisure/pitch/basketball": { + "name": "محوطه بسکتبال" + }, + "leisure/pitch/skateboard": { + "name": "پارک اسکیت" + }, + "leisure/pitch/soccer": { + "name": "میدان فوتبال" + }, + "leisure/pitch/tennis": { + "name": "محوطه تنیس" + }, + "leisure/pitch/volleyball": { + "name": "سالن والیبال" + }, + "leisure/playground": { + "name": "زمین بازی" + }, + "leisure/slipway": { + "name": "قایق ساکن" + }, + "leisure/sports_center": { + "name": "مرکز ورزشی" + }, "leisure/stadium": { - "name": "استودیوم" + "name": "ورزشگاه" + }, + "leisure/swimming_pool": { + "name": "استخر شنا" + }, + "leisure/track": { + "name": "مسیر مسابقه" + }, + "line": { + "name": "خط" + }, + "man_made": { + "name": "سازه ی انسانی" + }, + "man_made/breakwater": { + "name": "موج شکن" + }, + "man_made/cutline": { + "name": "خط برش" + }, + "man_made/embankment": { + "name": "خاک ریز" + }, + "man_made/flagpole": { + "name": "میله پرچم" + }, + "man_made/lighthouse": { + "name": "فانوس دریایی" + }, + "man_made/observation": { + "name": "برج رصد" + }, + "man_made/pier": { + "name": "اسکله" + }, + "man_made/pipeline": { + "name": "خط لوله" + }, + "man_made/survey_point": { + "name": "نقطه مطالعاتی" + }, + "man_made/tower": { + "name": "دکل، برج" + }, + "man_made/wastewater_plant": { + "name": "تصفیه خانه ی فاضلاب" + }, + "man_made/water_tower": { + "name": "برج مخزن آب" + }, + "man_made/water_well": { + "name": "چاه آب" + }, + "man_made/water_works": { + "name": "امور آب" + }, + "military/airfield": { + "name": "پایگاه هوایی" + }, + "military/barracks": { + "name": "پادگان" + }, + "military/bunker": { + "name": "سنگر زیرزمینی" + }, + "military/range": { + "name": "محدوده نظامی" + }, + "natural": { + "name": "طبیعی" + }, + "natural/bay": { + "name": "خلیج کوچک" + }, + "natural/beach": { + "name": "ساحل" + }, + "natural/cliff": { + "name": "صخره" + }, + "natural/coastline": { + "name": "خط ساحلی" + }, + "natural/fell": { + "name": "تپه سنگی" + }, + "natural/glacier": { + "name": "یخچال طبیعی" + }, + "natural/grassland": { + "name": "مرتع" + }, + "natural/heath": { + "name": "بوته زار" + }, + "natural/peak": { + "name": "قله" + }, + "natural/scree": { + "name": "سنگ ریزه" + }, + "natural/scrub": { + "name": "خارزار" + }, + "natural/spring": { + "name": "چشمه" + }, + "natural/tree": { + "name": "درخت" }, "natural/water": { "name": "آب" }, + "natural/water/lake": { + "name": "برکه ، استخر" + }, + "natural/water/pond": { + "name": "دریاچه" + }, + "natural/water/reservoir": { + "name": "آب انبار" + }, + "natural/wetland": { + "name": "تالاب" + }, "natural/wood": { "name": "چوب" }, "office": { "name": "اداره" }, + "office/accountant": { + "name": "حسابدار" + }, + "office/administrative": { + "name": "دفتر اداری" + }, + "office/architect": { + "name": "معمار" + }, + "office/company": { + "name": "دفتر شرکت" + }, + "office/educational_institution": { + "name": "مؤسسه آموزشی" + }, + "office/employment_agency": { + "name": "آژانس کاریابی" + }, + "office/estate_agent": { + "name": "دفتر املاک" + }, + "office/financial": { + "name": "اداره مالی" + }, + "office/government": { + "name": "اداره دولتی" + }, + "office/insurance": { + "name": "دفتر بیمه" + }, + "office/it": { + "name": "سازمان آی تی" + }, + "office/lawyer": { + "name": "دفتر حقوقی" + }, + "office/newspaper": { + "name": "روزنامه" + }, + "office/ngo": { + "name": "سازمان غیر دولتی" + }, + "office/physician": { + "name": "پزشک" + }, + "office/political_party": { + "name": "حزب سیاسی" + }, + "office/research": { + "name": "سازمان تحقیقاتی و پژوهشی" + }, + "office/telecommunication": { + "name": "اداره مخابرات" + }, + "office/therapist": { + "name": "درمان شناس" + }, + "office/travel_agent": { + "name": "آژانس مسافرتی" + }, + "piste": { + "name": "پیست/ مسیر اسکی" + }, + "place": { + "name": "محل" + }, + "place/city": { + "name": "شهر" + }, + "place/hamlet": { + "name": "دهکده" + }, + "place/island": { + "name": "جزیره" + }, + "place/isolated_dwelling": { + "name": "مسکن ایزوله" + }, "place/locality": { "name": "محلی" }, + "place/town": { + "name": "شهر کوچک" + }, + "place/village": { + "name": "روستا" + }, + "point": { + "name": "نقطه" + }, + "power": { + "name": "نیرو" + }, + "power/generator": { + "name": "مولد برق" + }, + "power/line": { + "name": "خط نیرو" + }, + "power/minor_line": { + "name": "خط برق ضعیف" + }, + "power/pole": { + "name": "مسیر برق متوسط" + }, + "power/sub_station": { + "name": "ایستگاه فرعی" + }, + "power/tower": { + "name": "دکل ولتاژ قوی" + }, + "power/transformer": { + "name": "مبدل برق" + }, + "public_transport/platform": { + "name": "پلتفورم" + }, + "public_transport/stop_position": { + "name": "موقعیت توقف" + }, + "railway": { + "name": "راه آهن" + }, + "railway/abandoned": { + "name": "راه آهن متروکه" + }, + "railway/disused": { + "name": "راه آهن بلا استفاده" + }, + "railway/funicular": { + "name": "کابلی" + }, + "railway/halt": { + "name": "توقف گاه راه آهن" + }, + "railway/level_crossing": { + "name": "تقاطع راه آهن" + }, + "railway/monorail": { + "name": "ترن هوایی" + }, + "railway/narrow_gauge": { + "name": "راه آهن باریک کابلی" + }, + "railway/platform": { + "name": "بستر راه آهن" + }, + "railway/rail": { + "name": "ریل قطار" + }, + "railway/station": { + "name": "ایستگاه راه آهن" + }, + "railway/subway": { + "name": "مترو" + }, + "railway/subway_entrance": { + "name": "ورودی مترو" + }, + "railway/tram": { + "name": "واگن برقی" + }, + "relation": { + "name": "رابطه" + }, + "route/ferry": { + "name": "مسیر کشتی" + }, "shop": { "name": "فروشگاه" }, + "shop/alcohol": { + "name": "مغازه مشروب فروشی" + }, + "shop/bakery": { + "name": "نانوایی" + }, + "shop/beauty": { + "name": "فروشگاه زیبایی" + }, + "shop/beverages": { + "name": "فروشگاه آشامیدنی" + }, + "shop/bicycle": { + "name": "فروشگاه دوچرخه" + }, + "shop/books": { + "name": "کتاب فروشی" + }, + "shop/boutique": { + "name": "بوتیک" + }, + "shop/butcher": { + "name": "قصابی" + }, + "shop/car": { + "name": "نمایندگی خودرو" + }, + "shop/car_parts": { + "name": "فروشگاه قطعات خودرو" + }, + "shop/car_repair": { + "name": "تعمیرگاه خودرو" + }, + "shop/chemist": { + "name": "داروسازی" + }, + "shop/clothes": { + "name": "فروشگاه لباس" + }, + "shop/computer": { + "name": "فروشگاه کامپیوتر" + }, + "shop/confectionery": { + "name": "شیرینی پزی" + }, + "shop/convenience": { + "name": "فروشگاه زنجیره ای" + }, + "shop/deli": { + "name": "اغذیه فروشی" + }, + "shop/department_store": { + "name": "کل فروشی" + }, + "shop/doityourself": { + "name": "فروشگاه DIY" + }, + "shop/dry_cleaning": { + "name": "پاک کننده های خشک" + }, "shop/electronics": { "name": "فروشگاه الکترونیک" }, + "shop/farm": { + "name": "تولید پایه" + }, + "shop/fishmonger": { + "name": "ماهی فروشی" + }, + "shop/florist": { + "name": "گل فروشی" + }, + "shop/furniture": { + "name": "فروشگاه مبلمان" + }, + "shop/garden_centre": { + "name": "مرکز خرید باغچه" + }, + "shop/gift": { + "name": "هدیه فروشی" + }, + "shop/greengrocer": { + "name": "سبزی فروشی" + }, + "shop/hairdresser": { + "name": "آرایش و پیرایش" + }, + "shop/hardware": { + "name": "فروشگاه سخت افزار" + }, + "shop/hifi": { + "name": "فروشگاه Hifi" + }, + "shop/jewelry": { + "name": "جواهر فروشی" + }, + "shop/kiosk": { + "name": "دکه" + }, + "shop/laundry": { + "name": "خشک شویی" + }, + "shop/locksmith": { + "name": "قفل سازی" + }, + "shop/mall": { + "name": "مرکز خرید" + }, + "shop/mobile_phone": { + "name": "فروشگاه تلفن همراه" + }, + "shop/motorcycle": { + "name": "نمایندگی موتور سیکلت" + }, + "shop/music": { + "name": "فروشگاه موسیقی" + }, + "shop/newsagent": { + "name": "دکه ی روزنامه" + }, + "shop/optician": { + "name": "عینک سازی" + }, + "shop/outdoor": { + "name": "فروشگاه فضای باز" + }, + "shop/pet": { + "name": "فروشگاه حیوانات خانگی" + }, + "shop/photo": { + "name": "فروشگاه عکاسی" + }, + "shop/shoes": { + "name": "کفش فروشی" + }, + "shop/sports": { + "name": "فروشگاه لوازم ورزشی" + }, + "shop/stationery": { + "name": "فروشگاه لوازم التحریر" + }, "shop/supermarket": { "name": "سوپرمارکت" }, + "shop/toys": { + "name": "اسباب بازی فروشی" + }, + "shop/travel_agency": { + "name": "آژانس مسافرتی" + }, + "shop/tyres": { + "name": "تایر فروشی" + }, + "shop/vacant": { + "name": "فروشگاه بدون متصدی" + }, + "shop/variety_store": { + "name": "فروشگاه متنوع" + }, + "shop/video": { + "name": "فیلم فروشی" + }, "tourism": { "name": "توریستی" }, + "tourism/alpine_hut": { + "name": "کلبه ارائه خدمات" + }, + "tourism/artwork": { + "name": "اثر هنری" + }, + "tourism/attraction": { + "name": "جاذبه های توریستی" + }, + "tourism/camp_site": { + "name": "اردوگاه" + }, + "tourism/caravan_site": { + "name": "پارکینگ ماشین کاروان" + }, + "tourism/chalet": { + "name": "کلبه ییلاقی" + }, + "tourism/guest_house": { + "name": "مهمان خانه" + }, + "tourism/hostel": { + "name": "مسافرخانه" + }, "tourism/hotel": { "name": "هتل" }, + "tourism/information": { + "name": "اطلاعات" + }, + "tourism/motel": { + "name": "متل" + }, "tourism/museum": { "name": "موزه" }, + "tourism/picnic_site": { + "name": "مکان پیک نیک" + }, + "tourism/theme_park": { + "name": "پارک تفریحی" + }, + "tourism/viewpoint": { + "name": "منظره" + }, "tourism/zoo": { "name": "باغ وحش" }, + "type/boundary": { + "name": "مرز" + }, + "type/boundary/administrative": { + "name": "مرز اداری" + }, + "type/multipolygon": { + "name": "چند ضلعی" + }, + "type/restriction": { + "name": "محدوده" + }, + "type/route": { + "name": "مسیر" + }, + "type/route/bicycle": { + "name": "مسیر دوچرخه" + }, + "type/route/bus": { + "name": "مسیر اتوبوس" + }, + "type/route/detour": { + "name": "مسیر جایگزین" + }, + "type/route/ferry": { + "name": "مسیر کشتی" + }, + "type/route/foot": { + "name": "مسیر پیاده" + }, + "type/route/hiking": { + "name": "مسیر کوهنوردی" + }, + "type/route/pipeline": { + "name": "مسیر خط لوله" + }, + "type/route/power": { + "name": "مسیر برق" + }, + "type/route/road": { + "name": "مسیر جاده" + }, + "type/route/train": { + "name": "مسیر راه آهن" + }, + "type/route/tram": { + "name": "مسیر قطار برقی" + }, + "type/route_master": { + "name": "مسیر اصلی" + }, + "vertex": { + "name": "سایر" + }, + "waterway": { + "name": "راه آبی" + }, "waterway/canal": { "name": "کانال" + }, + "waterway/dam": { + "name": "سد" + }, + "waterway/ditch": { + "name": "جوی آب" + }, + "waterway/drain": { + "name": "فاضلاب" + }, + "waterway/river": { + "name": "رودخانه" + }, + "waterway/riverbank": { + "name": "حاشیه رودخانه" + }, + "waterway/stream": { + "name": "نهر" + }, + "waterway/weir": { + "name": "بند" } } } diff --git a/vendor/assets/iD/iD/locales/fi.json b/vendor/assets/iD/iD/locales/fi.json index f7901c4a4..b4ee46bb6 100644 --- a/vendor/assets/iD/iD/locales/fi.json +++ b/vendor/assets/iD/iD/locales/fi.json @@ -45,6 +45,7 @@ "title": "Pidennä", "description": "Jatka ja pidennä tätä viivaa.", "not_eligible": "Viivaa ei voi jatkaa tästä.", + "multiple": "Useita viivoja voidaan jatkaa tässä. Viivan valitsemiseksi paina Shift-painiketta ja napsauta sitä.", "annotation": { "line": "Viivan muokkaaminen aloitettu.", "area": "Alueen muokkaaminen aloitettu." @@ -82,13 +83,15 @@ "annotation": { "line": "Viiva muutettu suorakulmaiseksi.", "area": "Alue muutettu suorakulmaiseksi." - } + }, + "not_squarish": "Nelikulmion tekeminen epäonnistui, koska se ei ole neliömäinen." }, "straighten": { "title": "Suorista", "description": "Suorista tämä viiva.", "key": "S", - "annotation": "Viiva suoristettiin." + "annotation": "Viiva suoristettiin.", + "too_bendy": "Oikaiseminen epäonnistui, koska se taipuu liian paljon." }, "delete": { "title": "Poista", @@ -249,7 +252,11 @@ "incomplete": "", "feature_list": "Etsi ominaisuuksia", "edit": "Muokkaa ominaisuutta", - "none": "Ei kohteita" + "none": "Ei kohteita", + "node": "Noodi", + "way": "Tie", + "relation": "Relaatio", + "location": "Sijainti" }, "background": { "title": "Tausta", @@ -354,6 +361,7 @@ }, "lines": { "title": "Viivat", + "add": "Viivoja käytetään esittämään sellaisia ominaisuuksia kuin tiet, rautatiet ja joet. **Napsauta Line-painiketta uuden viivan lisäämiseksi.**", "start": "**Aloita viiva napsauttamalla tien loppupistettä.**", "intersect": "Lisää pisteitä viivaan napsauttamalla karttaa. Karttaa voi liikuttaa vetämällä viivan piirtämisen aikana. Tiet ja monet muutkin viivat ovat osa isompaa kokonaisuutta. Reitityksen takia on tärkeää, että tiet on yhdistetty toisiinsa oikein. **Luo kahden kadun risteys napsauttamalla Flower Streetiä.**", "finish": "Viimeistele viiva kaksoisnapsauttamalla viimeisen viivapisteen kohdalla. **Lopeta viivan piirtäminen.**", @@ -444,6 +452,27 @@ "postcode": "Postinumero" } }, + "aerialway": { + "label": "Tyyppi" + }, + "aerialway/access": { + "label": "Käyttöoikeus" + }, + "aerialway/bubble": { + "label": "kupla" + }, + "aerialway/capacity": { + "label": "Kapasiteetti (per tunti)", + "placeholder": "500, 2500, 5000..." + }, + "aerialway/duration": { + "label": "Kesto (minuuttia)", + "placeholder": "1, 2, 3..." + }, + "aerialway/occupancy": { + "label": "asuminen", + "placeholder": "2, 4, 8..." + }, "aeroway": { "label": "Tyyppi" }, @@ -528,6 +557,9 @@ "fixme": { "label": "Korjaa minut" }, + "gauge": { + "label": "Raideväli" + }, "highway": { "label": "Tyyppi" }, @@ -613,6 +645,15 @@ "label": "Puhelinnumero", "placeholder": "+358 40 123 4567" }, + "piste/difficulty": { + "label": "haastavuus" + }, + "piste/grooming": { + "label": "siistiytyminen" + }, + "piste/type": { + "label": "Tyyppi" + }, "place": { "label": "Tyyppi" }, @@ -677,6 +718,9 @@ "cutting": "Kallioleikkaus" } }, + "studio_type": { + "label": "Tyyppi" + }, "supervised": { "label": "Valvonta" }, @@ -695,6 +739,9 @@ "trail_visibility": { "label": "Polun näkyvyys" }, + "tunnel": { + "label": "Tunneli" + }, "water": { "label": "Tyyppi" }, @@ -722,6 +769,36 @@ "address": { "name": "Osoite" }, + "aerialway": { + "name": "ilmarata" + }, + "aerialway/cable_car": { + "name": "köysirata" + }, + "aerialway/chair_lift": { + "name": "tuolihissi" + }, + "aerialway/gondola": { + "name": "gondolivaunu" + }, + "aerialway/magic_carpet": { + "name": "taikamattohissi" + }, + "aerialway/platter": { + "name": "Köysihinaushissi" + }, + "aerialway/pylon": { + "name": "ilmaradan pylväs" + }, + "aerialway/rope_tow": { + "name": "hinaushiihtohissi" + }, + "aerialway/station": { + "name": "Ilmarata-asema" + }, + "aerialway/t-bar": { + "name": "hiihtohissi" + }, "aeroway": { "name": "Kiitorata", "terms": "kiitorata, kiitotie, lentokone, lentoonlähtörata, lentoonlähtötie, rullaustie, lentokenttätie, lentokonetie, lentokoneväylä" @@ -813,6 +890,12 @@ "name": "Elokuvateatteri", "terms": "leffa, leffateatteri, elokuva, elokuvateatteri" }, + "amenity/clinic": { + "name": "klinikka" + }, + "amenity/clock": { + "name": "Kello" + }, "amenity/college": { "name": "Ammattiopisto", "terms": "ammattiopisto, amis, ammattikoulu, koulu, koulutus, oppilaitos, toinen aste" @@ -821,6 +904,12 @@ "name": "Käräjäoikeus", "terms": "oikeustalo, käräjätalo, alioikeus, kihlakunnanoikeus, syyttäjäntalo, raastupa, käräjätuomari, syyttäjä, lautamies, käräjäoikeus" }, + "amenity/dentist": { + "name": "hammaslääkäri" + }, + "amenity/doctor": { + "name": "lääkäri" + }, "amenity/drinking_water": { "name": "Juomavesi" }, @@ -900,6 +989,9 @@ "name": "Koulu", "terms": "koulu, alakoulu, ala-aste, yläaste, yläkoulu, lukio, yhteislukio, keskikoulu, koulutus, opiskelu, oppilaitos" }, + "amenity/studio": { + "name": "Studio" + }, "amenity/swimming_pool": { "name": "Uima-allas" }, @@ -925,6 +1017,9 @@ "name": "Korkeakoulu", "terms": "yliopisto, korkeakoulu, college, ammattikorkeakoulu, amk" }, + "amenity/veterinary": { + "name": "eläinlääkäri" + }, "amenity/waste_basket": { "name": "Roskakori", "terms": "roska-astia, roskis, roskapönttö, jäte-astia, kierrätyspiste, kierrätyslaatikko, roska, kierrätys, jäte, jätteet" @@ -1016,6 +1111,138 @@ "building/residential": { "name": "Asuinrakennus" }, + "craft/basket_maker": { + "name": "korintekijä" + }, + "craft/beekeeper": { + "name": "mehiläistarhuri" + }, + "craft/blacksmith": { + "name": "seppä" + }, + "craft/boatbuilder": { + "name": "veneentekijä" + }, + "craft/bookbinder": { + "name": "kirjansitoja" + }, + "craft/brewery": { + "name": "panimo" + }, + "craft/carpenter": { + "name": "kirvesmies" + }, + "craft/carpet_layer": { + "name": "matontekijä" + }, + "craft/caterer": { + "name": "pitopalvelu" + }, + "craft/clockmaker": { + "name": "kelloseppä" + }, + "craft/confectionary": { + "name": "konditori" + }, + "craft/dressmaker": { + "name": "ompelija" + }, + "craft/electrician": { + "name": "sähköasentaja" + }, + "craft/gardener": { + "name": "puutarhuri" + }, + "craft/glaziery": { + "name": "lasittaja" + }, + "craft/handicraft": { + "name": "käsityö" + }, + "craft/hvac": { + "name": "LVI" + }, + "craft/insulator": { + "name": "eriste" + }, + "craft/jeweler": { + "name": "kultaseppä" + }, + "craft/key_cutter": { + "name": "avaimentekijä" + }, + "craft/locksmith": { + "name": "lukkoseppä" + }, + "craft/metal_construction": { + "name": "metallirakennelma" + }, + "craft/optician": { + "name": "optikko" + }, + "craft/painter": { + "name": "maalari" + }, + "craft/photographer": { + "name": "valokuvaaja" + }, + "craft/photographic_labratory": { + "name": "valokuvauslaboratorio" + }, + "craft/plasterer": { + "name": "rappaaja" + }, + "craft/plumber": { + "name": "putkiasentaja" + }, + "craft/pottery": { + "name": "savenvalimo" + }, + "craft/rigger": { + "name": "nosturi" + }, + "craft/roofer": { + "name": "katontekijä" + }, + "craft/saddler": { + "name": "satulaseppä" + }, + "craft/sailmaker": { + "name": "purjeentekijä" + }, + "craft/sawmill": { + "name": "saha" + }, + "craft/scaffolder": { + "name": "rakennustelineasentaja" + }, + "craft/sculpter": { + "name": "kuvanveistäjä" + }, + "craft/shoemaker": { + "name": "suutari" + }, + "craft/stonemason": { + "name": "kivenhakkaaja" + }, + "craft/sweep": { + "name": "nuohooja" + }, + "craft/tailor": { + "name": "räätäli" + }, + "craft/tiler": { + "name": "laatoittaja" + }, + "craft/tinsmith": { + "name": "tinaseppä" + }, + "craft/upholsterer": { + "name": "verhoilija" + }, + "craft/watchmaker": { + "name": "kelloseppä" + }, "emergency/ambulance_station": { "name": "Ambulanssiasema", "terms": "ambulanssi, ambulanssit, hälytysajoneuvo, ambulanssihalli, ambulanssivarasto, ambulanssitalli, hälytysajoneuvohalli, hälytysajoneuvotalli, hälytysajoneuvovarasto" @@ -1031,6 +1258,21 @@ "entrance": { "name": "Sisäänkäynti" }, + "golf/hole": { + "name": "golf-reikä" + }, + "golf/lateral_water_hazard": { + "name": "sivusuuntainen vesieste" + }, + "golf/rough": { + "name": "karheikko" + }, + "golf/tee": { + "name": "tiiauspaikka" + }, + "golf/water_hazard": { + "name": "vesieste" + }, "highway": { "name": "Tie" }, @@ -1081,6 +1323,9 @@ "highway/residential": { "name": "Asuinaluetie" }, + "highway/rest_area": { + "name": "Lepoalue" + }, "highway/road": { "name": "Tuntematon tie" }, @@ -1108,6 +1353,9 @@ "highway/service/parking_aisle": { "name": "Pysäköintiväylä" }, + "highway/services": { + "name": "Huoltoalue" + }, "highway/steps": { "name": "Portaat" }, @@ -1367,6 +1615,9 @@ "office": { "name": "Toimisto" }, + "piste": { + "name": "rinne/hiihtoreitti" + }, "place": { "name": "Paikka" }, @@ -1420,12 +1671,18 @@ "railway/disused": { "name": "Käytöstä poistettu rautatie" }, + "railway/funicular": { + "name": "funikulaari" + }, "railway/level_crossing": { "name": "Tasoristeys" }, "railway/monorail": { "name": "Monorail" }, + "railway/narrow_gauge": { + "name": "Kapearaiteinen rautatie" + }, "railway/platform": { "name": "Rautatielaituri" }, diff --git a/vendor/assets/iD/iD/locales/fr.json b/vendor/assets/iD/iD/locales/fr.json index 9da59afbe..33f8fcac9 100644 --- a/vendor/assets/iD/iD/locales/fr.json +++ b/vendor/assets/iD/iD/locales/fr.json @@ -252,7 +252,11 @@ "incomplete": "", "feature_list": "Rechercher des objets", "edit": "Modifier l'élément", - "none": "Aucun" + "none": "Aucun", + "node": "Noeud", + "way": "Chemin", + "relation": "Relation", + "location": "Endroit" }, "background": { "title": "Fond de carte", @@ -312,6 +316,7 @@ "untagged_area": "Polygone sans aucun attribut", "many_deletions": "Vous allez supprimer {n} objets. Êtes-vous sûr de vouloir faire cela ? Ces éléments seront supprimés de la carte visible sur openstreetmap.org.", "tag_suggests_area": "Cet attribut {tag} suppose que cette ligne devrait être un polygone, or ce n'est pas le cas", + "untagged_tooltip": "Sélectionnez un type d'élément pour décrire cette {geometry}.", "deprecated_tags": "Attributs obsolètes : {tags}" }, "zoom": { @@ -388,6 +393,12 @@ }, "presets": { "categories": { + "category-building": { + "name": "Bâtiment " + }, + "category-golf": { + "name": "Golf" + }, "category-landuse": { "name": "Usage du terrain" }, @@ -402,6 +413,12 @@ }, "category-route": { "name": "Route" + }, + "category-water-area": { + "name": "Eau" + }, + "category-water-line": { + "name": "Eau" } }, "fields": { @@ -442,6 +459,9 @@ } } }, + "access_simple": { + "label": "Accès" + }, "address": { "label": "Adresse", "placeholders": { @@ -455,6 +475,25 @@ "admin_level": { "label": "Niveau administratif" }, + "aerialway": { + "label": "Type" + }, + "aerialway/access": { + "label": "Accès" + }, + "aerialway/capacity": { + "label": "Capacité (par heure)" + }, + "aerialway/duration": { + "label": "Durée (minutes)", + "placeholder": "1, 2, 3..." + }, + "aerialway/heating": { + "label": "Chauffé" + }, + "aerialway/summer/access": { + "label": "Accès (été)" + }, "aeroway": { "label": "Type" }, @@ -502,6 +541,9 @@ "anticlockwise": "Sens anti-horaire" } }, + "clothes": { + "label": "Accepte les vêtements" + }, "collection_times": { "label": "Horaires de collecte" }, @@ -511,6 +553,9 @@ "country": { "label": "Pays" }, + "covered": { + "label": "Couvert" + }, "crossing": { "label": "Type" }, @@ -557,6 +602,17 @@ "generator/type": { "label": "Type" }, + "glass": { + "label": "Accepte le verre" + }, + "golf_hole": { + "label": "Référence", + "placeholder": "Nombre de trous (1-18)" + }, + "handicap": { + "label": "Handicap", + "placeholder": "1-18" + }, "highway": { "label": "Type" }, @@ -572,6 +628,9 @@ "incline": { "label": "Pente" }, + "information": { + "label": "Type" + }, "internet_access": { "label": "Accès internet", "options": { @@ -638,6 +697,13 @@ "operator": { "label": "Opérateur" }, + "paper": { + "label": "Accepte le papier" + }, + "par": { + "label": "Par", + "placeholder": "3, 4, 5..." + }, "park_ride": { "label": "Parking-relais" }, @@ -648,6 +714,12 @@ "label": "Téléphone ", "placeholder": "+33 1 23 45 67 89" }, + "piste/difficulty": { + "label": "Difficulté" + }, + "piste/type": { + "label": "Type" + }, "place": { "label": "Type" }, @@ -693,6 +765,9 @@ "shelter": { "label": "Abri" }, + "shelter_type": { + "label": "Type" + }, "shop": { "label": "Type" }, @@ -733,6 +808,12 @@ "trail_visibility": { "label": "Visibilité du sentier" }, + "tree_type": { + "label": "Type" + }, + "tunnel": { + "label": "Tunnel" + }, "vending": { "label": "Type de marchandises" }, @@ -764,6 +845,12 @@ "name": "Adresse", "terms": "Adresse" }, + "aerialway/cable_car": { + "name": "Téléphérique" + }, + "aerialway/chair_lift": { + "name": "Télésiège" + }, "aeroway": { "name": "Aviation", "terms": "Piste de décollage, Piste d'atterissage, Piste" @@ -860,6 +947,9 @@ "name": "Cinéma", "terms": "Cinéma" }, + "amenity/clinic": { + "name": "Clinique" + }, "amenity/college": { "name": "Enseignement supérieur (non universitaire)", "terms": "Institut, École supérieure, Enseignement supérieur, Haute école, CÉGEP, cégep" @@ -868,6 +958,12 @@ "name": "Tribunal", "terms": "Palais de Justice, Tribunal" }, + "amenity/dentist": { + "name": "Dentiste" + }, + "amenity/doctor": { + "name": "Médecin" + }, "amenity/drinking_water": { "name": "Eau potable", "terms": "Eau potable" @@ -960,6 +1056,10 @@ "name": "Poste de garde", "terms": "Poste de garde, gardien" }, + "amenity/recycling": { + "name": "Recyclage", + "terms": "Recyclage" + }, "amenity/restaurant": { "name": "Restaurant", "terms": "Restaurant" @@ -968,6 +1068,10 @@ "name": "École", "terms": "Ecole" }, + "amenity/shelter": { + "name": "Abri", + "terms": "Abri" + }, "amenity/swimming_pool": { "name": "Piscine", "terms": "Piscine" @@ -1116,6 +1220,125 @@ "name": "Bâtiment résidentiel", "terms": "Bâtiment résidentiel" }, + "craft/blacksmith": { + "name": "Forgeron" + }, + "craft/boatbuilder": { + "name": "Constructeur de bateaux" + }, + "craft/bookbinder": { + "name": "Relieur" + }, + "craft/brewery": { + "name": "Brasserie" + }, + "craft/carpenter": { + "name": "Charpentier" + }, + "craft/caterer": { + "name": "Traiteur" + }, + "craft/clockmaker": { + "name": "Horloger" + }, + "craft/confectionary": { + "name": "Confiserie" + }, + "craft/dressmaker": { + "name": "Couturier" + }, + "craft/electrician": { + "name": "Electricien" + }, + "craft/gardener": { + "name": "Jardinier" + }, + "craft/glaziery": { + "name": "Vitrerie", + "terms": "Vitrier" + }, + "craft/handicraft": { + "name": "Artisanat", + "terms": "Artisan" + }, + "craft/hvac": { + "name": "CVC", + "terms": "chauffage,ventilation,climatisation,chauffagistes" + }, + "craft/jeweler": { + "name": "Bijoutier" + }, + "craft/locksmith": { + "name": "Serrurier" + }, + "craft/metal_construction": { + "name": "Constructions métalliquess", + "terms": "Construction métallique" + }, + "craft/optician": { + "name": "Opticien" + }, + "craft/painter": { + "name": "peintre" + }, + "craft/photographer": { + "name": "Photographe" + }, + "craft/photographic_labratory": { + "name": "Laboratoire Photographique" + }, + "craft/plasterer": { + "name": "Plâtrier" + }, + "craft/plumber": { + "name": "Plombier" + }, + "craft/pottery": { + "name": "Pottier" + }, + "craft/roofer": { + "name": "Couvreur" + }, + "craft/saddler": { + "name": "Sellier" + }, + "craft/sailmaker": { + "name": "Voilerie", + "terms": "Voilier" + }, + "craft/sawmill": { + "name": "Scierie" + }, + "craft/sculpter": { + "name": "Sculpteur" + }, + "craft/shoemaker": { + "name": "Cordonnier" + }, + "craft/stonemason": { + "name": "Tailleur de pierre" + }, + "craft/sweep": { + "name": "Ramoneur" + }, + "craft/tailor": { + "name": "Tailleur" + }, + "craft/tiler": { + "name": "Carreleur" + }, + "craft/tinsmith": { + "name": "Ferblantier" + }, + "craft/upholsterer": { + "name": "Tapissier" + }, + "craft/watchmaker": { + "name": "Horloger" + }, + "embankment": { + "name": "Terre-plein" + }, "emergency/ambulance_station": { "name": "Station d'ambulance", "terms": "Station d'ambulance" @@ -1132,6 +1355,24 @@ "name": "Entrée", "terms": "Entrée" }, + "footway/crossing": { + "name": "Passage pieton ", + "terms": "Passage piéton" + }, + "footway/sidewalk": { + "name": "Trottoir", + "terms": "Trottoir" + }, + "golf/bunker": { + "name": "Bunker" + }, + "golf/fairway": { + "name": "Allée (golf)" + }, + "golf/hole": { + "name": "Trou de golf", + "terms": "Trou de golf" + }, "highway": { "name": "Route", "terms": "Autoroute" @@ -1336,6 +1577,10 @@ "name": "Cultures", "terms": "Ferme" }, + "landuse/farmland": { + "name": "Terre agricole", + "terms": "Terre agricole, Cultures" + }, "landuse/farmyard": { "name": "Bâtiments de ferme", "terms": "Cour de ferme" @@ -1476,6 +1721,12 @@ "name": "Ligne de coupe", "terms": "ligne de coupe forestière" }, + "man_made/embankment": { + "name": "Terre-plein" + }, + "man_made/flagpole": { + "name": "Porte-drapeau" + }, "man_made/lighthouse": { "name": "Phare", "terms": "Phare" @@ -1516,6 +1767,20 @@ "name": "Station de pompage d'eau potable", "terms": "Station de pompage" }, + "military/airfield": { + "name": "Aérodrome" + }, + "military/barracks": { + "name": "Caserne", + "terms": "Caserne" + }, + "military/bunker": { + "name": "Bunker", + "terms": "casemate, blockhaus" + }, + "military/range": { + "name": "Stand de tir" + }, "natural": { "name": "Nature", "terms": "Nature" @@ -1628,14 +1893,31 @@ "name": "Agence immobilière", "terms": "Agence immobilière" }, + "office/financial": { + "name": "Établissement financier" + }, + "office/government": { + "name": "Établissement Public" + }, "office/insurance": { "name": "Agence d'assurance", "terms": "Agence d'assurance" }, + "office/it": { + "name": "Bureau informatique" + }, "office/lawyer": { "name": "Cabinet d'avocats", "terms": "Cabinet d'avocats" }, + "office/newspaper": { + "name": "Journal", + "terms": "Journal, Presse" + }, + "office/ngo": { + "name": "ONG", + "terms": "ONG" + }, "office/physician": { "name": "Médecin", "terms": "Médecin, Docteur" @@ -1644,6 +1926,10 @@ "name": "Parti politique", "terms": "Parti politique" }, + "office/research": { + "name": "Organisme de recherche", + "terms": "Centre de recherches" + }, "office/telecommunication": { "name": "Agence télécom", "terms": "Agence télécom" @@ -1724,6 +2010,12 @@ "name": "Transformateur", "terms": "Transformateur" }, + "public_transport/platform": { + "name": "Plateforme" + }, + "public_transport/stop_position": { + "name": "Arrêt" + }, "railway": { "name": "Ferroviaire", "terms": "Voie ferrée, Chemin de fer" diff --git a/vendor/assets/iD/iD/locales/hr.json b/vendor/assets/iD/iD/locales/hr.json index bd4ccf613..13b562724 100644 --- a/vendor/assets/iD/iD/locales/hr.json +++ b/vendor/assets/iD/iD/locales/hr.json @@ -252,7 +252,11 @@ "incomplete": "", "feature_list": "Pretraži svojstva", "edit": "Uredi svojstvo", - "none": "Nijedna" + "none": "Nijedna", + "node": "Točka", + "way": "Put", + "relation": "Relacija", + "location": "Lokacija" }, "background": { "title": "Pozadina", @@ -312,6 +316,7 @@ "untagged_area": "Neoznačeno područje", "many_deletions": "Brišeš {n} objekata. Jesi li siguran/na da to želiš učiniti? Ovo će ih obrisati sa karte koju svi vide na openstreetmap.org.", "tag_suggests_area": "Oznaka {tag} ukazuje da bi linija trebala biti područje, ali nije područje", + "untagged_tooltip": "Odaberi značajku koja opisuje što ova {geometrija} predstavlja.", "deprecated_tags": "Zastarjele oznake: {tags}" }, "zoom": { @@ -733,6 +738,9 @@ "trail_visibility": { "label": "Vidljivost staze" }, + "tunnel": { + "label": "Tunel" + }, "vending": { "label": "Vrsta robe" }, diff --git a/vendor/assets/iD/iD/locales/hu.json b/vendor/assets/iD/iD/locales/hu.json index e9e0eb9ec..8205bb9c4 100644 --- a/vendor/assets/iD/iD/locales/hu.json +++ b/vendor/assets/iD/iD/locales/hu.json @@ -261,6 +261,7 @@ "none": "Nincs", "custom": "Egyéni", "custom_prompt": "Adj meg egy csempe sablont. Érvényes tokenek: {z}, {x}, {y} a Z/X/Y rendszerű URL-ekhez és {u} a kvadratikusakhoz.", + "fix_misalignment": "Eltolódás korrigálása", "reset": "visszavonás" }, "restore": { @@ -283,7 +284,8 @@ "view_on_osm": "Megtekintés OSM-en", "facebook": "Megosztás Facebookon", "twitter": "Megosztás Twitteren", - "google": "Megosztás Google+-on" + "google": "Megosztás Google+-on", + "help_html": "Módosításaid néhány perc múlva megjelennek a \"Standard\" rétegen. Más rétegeken ez tovább tarthat\n(details).\n" }, "confirm": { "okay": "Oké" @@ -310,6 +312,7 @@ "untagged_area": "Címkézetlen terület", "many_deletions": "{n} objektum törlésére készülsz. Biztos vagy benne? Ez törli őket a térképről, amit mindenki más lát az openstreetmap.org-on.", "tag_suggests_area": "A(z) {tag} címke alapján a vonal terület kéne legyen, de ez nem terület", + "untagged_tooltip": "Válassz egy elemtípust, ami leírja, hogy mi ez a {geometry}.", "deprecated_tags": "Elavult címkék: {tags}" }, "zoom": { @@ -362,6 +365,7 @@ }, "lines": { "title": "Vonalak", + "add": "Vonalakkal jelöljük az utakat, vasutakat és folyókat. **Kattints a vonal gombra új vonal rajzolásához.**", "start": "**Indítsd a vonalat az út végére kattintva.**", "intersect": "Kattints, hogy több pontot adj a vonalhoz. Ha szükséges, rajzolás közben is arrébb húzhatod a térképet. Az utak és sok más vonaltípus egy nagyobb hálózat tagja. Fontos, hogy ezek a vonalak megfelelően csatlakozzanak, hogy az útvonaltervezők használni tudják. **Kattints a Flower Streetre, hogy létrehozd a két vonalat összekapcsoló kereszteződést.**", "finish": "A vonalat az utolsó pontjára való ismételt kattintással lehet befejezni. **Fejezd be az út rajzolását.**", @@ -380,6 +384,9 @@ }, "presets": { "categories": { + "category-building": { + "name": "Épület" + }, "category-landuse": { "name": "Területfunkció" }, @@ -394,6 +401,12 @@ }, "category-route": { "name": "Útvonal" + }, + "category-water-area": { + "name": "Víz" + }, + "category-water-line": { + "name": "Víz" } }, "fields": { @@ -434,6 +447,9 @@ } } }, + "access_simple": { + "label": "Behajtás" + }, "address": { "label": "Cím", "placeholders": { @@ -447,6 +463,33 @@ "admin_level": { "label": "Adminisztratív szint" }, + "aerialway": { + "label": "Típus" + }, + "aerialway/access": { + "label": "Be- és kiszállás" + }, + "aerialway/bubble": { + "label": "Védőburok" + }, + "aerialway/capacity": { + "label": "Kapacitás (óránként)", + "placeholder": "500, 2500, 5000..." + }, + "aerialway/duration": { + "label": "Menetidő (perc)", + "placeholder": "1, 2, 3..." + }, + "aerialway/heating": { + "label": "Fűtött" + }, + "aerialway/occupancy": { + "label": "Férőhely", + "placeholder": "2, 4, 8..." + }, + "aerialway/summer/access": { + "label": "Be- és kiszállás (nyáron)" + }, "aeroway": { "label": "típus" }, @@ -592,6 +635,9 @@ "lit": { "label": "Világítás" }, + "location": { + "label": "Hely" + }, "man_made": { "label": "Típus" }, @@ -637,6 +683,15 @@ "label": "Telefonszám", "placeholder": "+36 1 123 45 67" }, + "piste/difficulty": { + "label": "Nehézség" + }, + "piste/grooming": { + "label": "Kezelés" + }, + "piste/type": { + "label": "Típus" + }, "place": { "label": "Típus" }, @@ -682,6 +737,9 @@ "shelter": { "label": "Esőbeálló" }, + "shelter_type": { + "label": "Típus" + }, "shop": { "label": "Típus" }, @@ -722,6 +780,9 @@ "trail_visibility": { "label": "Ösvény láthatósága" }, + "tree_type": { + "label": "Típus" + }, "vending": { "label": "Termékek típusa" }, @@ -750,13 +811,52 @@ }, "presets": { "address": { - "name": "Lakcím" + "name": "Lakcím", + "terms": "cím, lakcím" + }, + "aerialway": { + "name": "Drótkötélpálya", + "terms": "kötélpálya" + }, + "aerialway/cable_car": { + "name": "Sikló", + "terms": "kötélvillamos" + }, + "aerialway/chair_lift": { + "name": "Ülőlift", + "terms": "libegő" + }, + "aerialway/gondola": { + "name": "Gondola", + "terms": "gondolakabinos felvonó" + }, + "aerialway/magic_carpet": { + "name": "Szállítószalag-felvonó", + "terms": "varázsszőnyeg" + }, + "aerialway/platter": { + "name": "Tányéros felvonó" + }, + "aerialway/pylon": { + "name": "Drótkötélpálya-oszlop", + "terms": "oszlop" + }, + "aerialway/rope_tow": { + "name": "Kapaszkodólift" + }, + "aerialway/station": { + "name": "Felvonóállomás", + "terms": "kötélpálya-állomás" + }, + "aerialway/t-bar": { + "name": "Csákányos felvonó" }, "aeroway": { "name": "Légi közeledés" }, "aeroway/aerodrome": { - "name": "Repülőtér" + "name": "Repülőtér", + "terms": "repülőtér, reptér" }, "aeroway/apron": { "name": "Forgalmi előtér" @@ -765,13 +865,15 @@ "name": "Reptér kapu" }, "aeroway/hangar": { - "name": "Hangár" + "name": "Hangár", + "terms": "hangár" }, "aeroway/helipad": { "name": "Helikopter leszállóhely" }, "aeroway/runway": { - "name": "Kifutópálya" + "name": "Kifutópálya", + "terms": "kifutópálya" }, "aeroway/taxiway": { "name": "Gurulóút" @@ -818,6 +920,10 @@ "amenity/car_wash": { "name": "Autómosó" }, + "amenity/childcare": { + "name": "Gyermekgondozás", + "terms": "bölcsőde, óvoda, nevelési tanácsadó" + }, "amenity/cinema": { "name": "Mozi" }, @@ -860,6 +966,10 @@ "amenity/marketplace": { "name": "Piac" }, + "amenity/parking": { + "name": "Parkoló", + "terms": "parkolóház" + }, "amenity/pharmacy": { "name": "Gyógyszertár" }, @@ -893,12 +1003,20 @@ "amenity/ranger_station": { "name": "Vadőrház" }, + "amenity/recycling": { + "name": "Hulladékgyűjtő", + "terms": "hulladék, szelektív hulladék, szeméttelep, szemétlerakó, veszélyes hulladék" + }, "amenity/restaurant": { "name": "Étterem" }, "amenity/school": { "name": "Iskola" }, + "amenity/shelter": { + "name": "Menedék", + "terms": "fedett, fedél, esőház, esőkunyhó, menedékház" + }, "amenity/swimming_pool": { "name": "Úszómedence" }, @@ -985,7 +1103,8 @@ "name": "Adminisztratív határvonal" }, "building": { - "name": "Épület" + "name": "Épület", + "terms": "építmény, ház, lakás," }, "building/apartments": { "name": "Lakások" @@ -1002,11 +1121,19 @@ "building/house": { "name": "Ház" }, + "building/hut": { + "name": "Kunyhó" + }, "building/industrial": { - "name": "Ipari épület" + "name": "Ipari épület", + "terms": "Gyárépület" }, "building/residential": { - "name": "Lakóépület" + "name": "Lakóépület", + "terms": "Lakóház, lakás, ház" + }, + "embankment": { + "name": "Töltés" }, "emergency/ambulance_station": { "name": "Mentőállomás", @@ -1021,6 +1148,12 @@ "entrance": { "name": "Bejárat" }, + "footway/crossing": { + "name": "Kereszteződés" + }, + "footway/sidewalk": { + "name": "Járda" + }, "highway": { "name": "Közút" }, @@ -1175,6 +1308,9 @@ "landuse/farm": { "name": "Farm" }, + "landuse/farmland": { + "name": "Mezőgazdaság" + }, "landuse/farmyard": { "name": "Tanyaudvar" }, @@ -1208,6 +1344,9 @@ "leisure": { "name": "Szabadidő" }, + "leisure/common": { + "name": "Közterület" + }, "leisure/dog_park": { "name": "Kutyafuttató", "terms": "Kutyasétáltató" @@ -1278,6 +1417,12 @@ "man_made/cutline": { "name": "Irtás" }, + "man_made/embankment": { + "name": "Töltés" + }, + "man_made/flagpole": { + "name": "Zászlórúd" + }, "man_made/lighthouse": { "name": "Világítótorony" }, @@ -1309,6 +1454,18 @@ "man_made/water_works": { "name": "Vízmű" }, + "military/airfield": { + "name": "Replülőtér" + }, + "military/barracks": { + "name": "Barakk" + }, + "military/bunker": { + "name": "Bunker" + }, + "military/range": { + "name": "Katonai lőtér" + }, "natural": { "name": "Természet" }, @@ -1374,6 +1531,79 @@ "office": { "name": "Iroda" }, + "office/accountant": { + "name": "Könyvelő", + "terms": "könyvvizsgálat" + }, + "office/administrative": { + "name": "Közhivatal", + "terms": "hivatal, közigazgatási hivatal" + }, + "office/architect": { + "name": "Építész" + }, + "office/company": { + "name": "Cég", + "terms": "vállalkozás, iroda, magánvállalkozás" + }, + "office/educational_institution": { + "name": "Foglalkoztatási hivatal" + }, + "office/employment_agency": { + "name": "Foglalkoztatási hivatal", + "terms": "munkaügyi hivatal" + }, + "office/estate_agent": { + "name": "Ingatlanközvetítő" + }, + "office/financial": { + "name": "Pénzügyi iroda" + }, + "office/government": { + "name": "Kormányhivatal", + "terms": "kormányzati hivatal" + }, + "office/insurance": { + "name": "Biztosító" + }, + "office/it": { + "name": "Informatika", + "terms": "számítástechnika, IT, információ-technológia" + }, + "office/lawyer": { + "name": "Jogász", + "terms": "ügyvéd, bíróság, közjegyző, ügyész" + }, + "office/newspaper": { + "name": "Újságos" + }, + "office/ngo": { + "name": "Civil szervezet" + }, + "office/physician": { + "name": "Orvos", + "terms": "doktor" + }, + "office/political_party": { + "name": "Politikai párt" + }, + "office/research": { + "name": "Kutatóintézet" + }, + "office/telecommunication": { + "name": "Telekommunikációs iroda" + }, + "office/therapist": { + "name": "Gyógyítás", + "terms": "gyógyász, gyógyító" + }, + "office/travel_agent": { + "name": "Utazási iroda" + }, + "piste": { + "name": "Sípálya", + "terms": "sífutóút, lesiklópálya" + }, "place": { "name": "Hely" }, @@ -1411,6 +1641,10 @@ "power/line": { "name": "Távvezeték" }, + "power/minor_line": { + "name": "Elektromos vezeték", + "terms": "távvezeték, villanyvezeték, magasfesztültségű vezeték" + }, "power/pole": { "name": "Villanyoszlop" }, @@ -1423,6 +1657,12 @@ "power/transformer": { "name": "Transzformátor" }, + "public_transport/platform": { + "name": "Peron" + }, + "public_transport/stop_position": { + "name": "Megállóhely" + }, "railway": { "name": "Vasút" }, @@ -1433,7 +1673,8 @@ "name": "Használaton kívüli vasút" }, "railway/halt": { - "name": "Vasúti megállóhely" + "name": "Vasúti megállóhely", + "terms": "megállóhely" }, "railway/level_crossing": { "name": "Szintbeli kereszteződés" @@ -1598,6 +1839,10 @@ "shop/pet": { "name": "Kisállatkereskedés" }, + "shop/photo": { + "name": "Fotósbolt", + "terms": "fényképész, fényképezés, filmkidolgozás, előhívás, igazolványkép" + }, "shop/shoes": { "name": "Cipőbolt" }, diff --git a/vendor/assets/iD/iD/locales/id.json b/vendor/assets/iD/iD/locales/id.json index 28c89d632..3392478f7 100644 --- a/vendor/assets/iD/iD/locales/id.json +++ b/vendor/assets/iD/iD/locales/id.json @@ -16,7 +16,7 @@ "tail": "Klik pada peta untuk menambah sebuah titik." }, "browse": { - "title": "Lihat", + "title": "Arahkan", "description": "Geser dan perbesar tampilan peta." }, "draw_area": { @@ -146,9 +146,10 @@ }, "rotate": { "title": "Putar", + "description": "Putar obyek ini berdasar titik pusatnya.", "key": "R", "annotation": { - "line": "Memutas sebua garis.", + "line": "Memutar sebuah garis.", "area": "Memutar sebuah area." } }, @@ -176,13 +177,14 @@ } }, "undo": { + "tooltip": "Batalkan: {action}", "nothing": "Tak ada yang bisa di ulang." }, "redo": { "nothing": "Tak ada yang bisa di redo." }, "tooltip_keyhint": "Pintasan:", - "browser_notice": "Penyuting ini mendukung di Firefox, Chrome, Safari, Opera, dan Internet Explorer 9 dan di atasnya. Sila tingkatnya peramban anda atau gunakan Potlatc 2 untuk menyuting peta.", + "browser_notice": "Penyunting ini bisa digunakan di Firefox, Chrome, Safari, Opera, dan Internet Explorer 9 dan versi yang lebih tinggi. Silahkan perbarui peramban Anda atau gunakan Potlatc 2 untuk menyuting peta.", "translate": { "translate": "Terjemahkan", "localized_translation_label": "Nama banyak-bahasa", @@ -200,14 +202,16 @@ }, "commit": { "title": "Simpan Perubahan", - "description_placeholder": "Deskripsi singkat kontribusi anda", + "description_placeholder": "Deskripsi singkat kontribusi Anda", "message_label": "Sampaikan pesan", + "upload_explanation": "Perubahan yang anda unggah akan tampil di seluruh peta yang menggunakan data OpenStreetMap.", + "upload_explanation_with_user": "Perubahan yang anda unggah sebagai {user} akan tampil di seluruh peta yang menggunakan data OpenStreetMap.", "save": "Simpan", "cancel": "Batal", "warnings": "Peringatan", - "modified": "Berubah", + "modified": "Diubah", "deleted": "Terhapus", - "created": "Tercipta" + "created": "Dibuat" }, "contributors": { "list": "Disunting oleh {users}", @@ -237,15 +241,20 @@ "back_tooltip": "Ubah Fitur", "remove": "Buang", "search": "Cari", + "multiselect": "Item terpilih", "unknown": "Tidak diketahui", "incomplete": "", "feature_list": "Cari fitur", - "edit": "Ubah Fitur" + "edit": "Ubah Fitur", + "none": "Tidak ada", + "relation": "Relasi", + "location": "Lokasi" }, "background": { "title": "Latar", "description": "Pengaturan Latar", "percent_brightness": "{opacity}% kecerahan", + "fix_misalignment": "Perbaiki perataan", "reset": "ulang" }, "restore": { @@ -302,7 +311,9 @@ }, "cannot_zoom": "Tidak bisa memperbesar tampilan lebih jauh dengan mode ini.", "gpx": { - "local_layer": "File GPX lokal" + "local_layer": "File GPX lokal", + "drag_drop": "Geser dan letakan sebuah berkas .gpx di halaman, atau klik tombol ke kanan untuk menjelajah", + "zoom": "Perbesar ke jejak GPX" }, "help": { "title": "Bantuan", @@ -340,13 +351,15 @@ }, "lines": { "title": "Garis", + "add": "Garis biasa digunakan untuk mewakili fitur seperti jalan, rel dan sungai. **Klik tombol Garis untuk menambahkan sebuah garis baru.**", "start": "**Mulai garis dengan mengklik pada ujung sebuah jalan.**", "intersect": "Klik untuk menambahkan lagi simpul pada garis. Anda dapat menggeser peta ketika menggambar jika diperlukan. Jalan, dan banyak tipe lain dari garis, adalah bagian dari jaringan yang lebih besar. Ini penting untuk garis-garis ini untuk terhubung dengan baik agar alat penelusuran rute bisa berjalan. **Klik di Jalan Flower, untuk membuat percabangan yang menghubungkan dua garis.**", "finish": "Garis bisa diselesaikan dengan mengklik ulang pada simpul terakhir. **Selesaikan menggambar jalan.**", "road": "**Pilih Jalan dari daftar**", "residential": "Ada beberapa tipe jalan berbeda, yang paling umum adalah Jalan Perumahan. **Pilih tipe jalan Perumahan**", "describe": "**Namakan jalan dan tutup fitur penyunting.**", - "restart": "Jalan perlu memotong Jalan Flower." + "restart": "Jalan perlu memotong Jalan Flower.", + "wrong_preset": "Anda belum memilih tipe Jalan Perumahan. **Klik di sini untuk memilih lagi**" }, "startediting": { "title": "Mulai Menyunting", @@ -659,13 +672,15 @@ }, "presets": { "address": { - "name": "Alamat" + "name": "Alamat", + "terms": "Alamat" }, "aeroway": { "name": "Landas pacu" }, "aeroway/aerodrome": { - "name": "Bandar udara" + "name": "Bandar udara", + "terms": "Bandara,Lapangan Terbang," }, "aeroway/gate": { "name": "Gerbang Bandar Udara" @@ -683,7 +698,7 @@ "name": "Jalur taksi" }, "aeroway/terminal": { - "name": "Terminal Bandarudara" + "name": "Terminal Bandara" }, "amenity": { "name": "Keramahan" @@ -698,49 +713,71 @@ "name": "Bar" }, "amenity/bicycle_parking": { - "name": "Parkir Sepeda" + "name": "Parkir Sepeda", + "terms": "Parkir Sepeda" }, "amenity/bicycle_rental": { - "name": "Penyewaan Sepeda" + "name": "Penyewaan Sepeda", + "terms": "Penyewaan Sepeda" }, "amenity/cafe": { - "name": "Cafe" + "name": "Cafe", + "terms": "Warung Kopi" + }, + "amenity/car_rental": { + "name": "Penyewaan Mobil", + "terms": "Penyewaan Mobil" }, "amenity/car_wash": { - "name": "Pencucian Mobil" + "name": "Pencucian Mobil", + "terms": "Cuci Mobil" }, "amenity/cinema": { - "name": "Bioskop" + "name": "Bioskop", + "terms": "Bioskop" }, "amenity/college": { - "name": "Kampus" + "name": "Kampus", + "terms": "Kampus" }, "amenity/courthouse": { - "name": "Pengadilan" + "name": "Pengadilan", + "terms": "Pengadilan" + }, + "amenity/drinking_water": { + "name": "Air Minum" }, "amenity/embassy": { - "name": "Kedutaan besar" + "name": "Kedutaan besar", + "terms": "Kedutaan" }, "amenity/fast_food": { - "name": "Makanan Cepat Saji" + "name": "Makanan Cepat Saji", + "terms": "Makanan Cepatsaji" }, "amenity/fire_station": { - "name": "Kantor Pemadam Kebakaran" + "name": "Kantor Pemadam Kebakaran", + "terms": "Kantor Pemadam Kebakaran" }, "amenity/fuel": { - "name": "Pom Bensin" + "name": "Pom Bensin", + "terms": "SPBU, Pom Bensin," }, "amenity/grave_yard": { - "name": "Kuburan" + "name": "Kuburan", + "terms": "Kuburan" }, "amenity/hospital": { - "name": "Rumah Sakit" + "name": "Rumah Sakit", + "terms": "Rumah Sakit, Puskesmas, Klinik" }, "amenity/kindergarten": { - "name": "Taman Kanak-kanak" + "name": "Taman Kanak-kanak", + "terms": "Taman Kanak kanak," }, "amenity/library": { - "name": "Perpustakaan" + "name": "Perpustakaan", + "terms": "Perpustakaan" }, "amenity/marketplace": { "name": "Pasar" @@ -749,55 +786,68 @@ "name": "Farmasi" }, "amenity/place_of_worship": { - "name": "Tempat Beribadah" + "name": "Tempat Beribadah", + "terms": "Rumah Ibadah" }, "amenity/place_of_worship/buddhist": { "name": "Candi Budha" }, "amenity/place_of_worship/christian": { - "name": "Gereja" + "name": "Gereja", + "terms": "Gereja" }, "amenity/place_of_worship/jewish": { "name": "Sinagoga" }, "amenity/place_of_worship/muslim": { - "name": "Mesjid" + "name": "Masjid", + "terms": "Mesjid,Mushola,Langgar" }, "amenity/police": { - "name": "Polisi" + "name": "Polisi", + "terms": "Polisi" }, "amenity/post_box": { "name": "Kotak surat" }, "amenity/post_office": { - "name": "Kantor Pos" + "name": "Kantor Pos", + "terms": "Kantor Pos" }, "amenity/pub": { "name": "Pub" }, "amenity/restaurant": { - "name": "Restoran" + "name": "Restoran", + "terms": "Restoran" }, "amenity/school": { - "name": "Sekolah" + "name": "Sekolah", + "terms": "Sekolah" }, "amenity/swimming_pool": { - "name": "Kolam Renang" + "name": "Kolam Renang", + "terms": "Kolam Renang" }, "amenity/telephone": { - "name": "Telepon" + "name": "Telepon", + "terms": "Telepon" }, "amenity/theatre": { - "name": "Teater" + "name": "Teater", + "terms": "Teater" }, "amenity/toilets": { - "name": "Toilet" + "name": "Toilet", + "terms": "Toilet, WC," }, "amenity/townhall": { - "name": "Balai Kota" + "name": "Balai Kota", + "terms": "Balai Kota," }, "amenity/university": { - "name": "Universitas" + "name": "Universitas", + "terms": "Universitas, Kampus," }, "amenity/waste_basket": { "name": "Tong Sampah" @@ -805,6 +855,9 @@ "area": { "name": "Area" }, + "barrier/ditch": { + "name": "Parit" + }, "barrier/entrance": { "name": "Pintu Masuk" }, @@ -829,6 +882,9 @@ "building/entrance": { "name": "Masuk" }, + "building/garage": { + "name": "Garasi" + }, "building/house": { "name": "Rumah" }, @@ -854,7 +910,7 @@ "name": "Jalur Pejalan Kaki" }, "highway/living_street": { - "name": "Jalan TInggal" + "name": "Jalan Tinggal" }, "highway/motorway": { "name": "Jalur Motor" @@ -1318,8 +1374,17 @@ "waterway/dam": { "name": "Bendungan" }, + "waterway/ditch": { + "name": "Selokan" + }, + "waterway/drain": { + "name": "Saluran" + }, "waterway/river": { "name": "Sungai" + }, + "waterway/stream": { + "name": "Aliran" } } } diff --git a/vendor/assets/iD/iD/locales/it.json b/vendor/assets/iD/iD/locales/it.json index 175d82617..be46a72d7 100644 --- a/vendor/assets/iD/iD/locales/it.json +++ b/vendor/assets/iD/iD/locales/it.json @@ -252,7 +252,11 @@ "incomplete": "", "feature_list": "Cerca elementi", "edit": "Modifica elemento", - "none": "Nessuno" + "none": "Nessuno", + "node": "Nodo", + "way": "Linea", + "relation": "Relazione", + "location": "Posizione" }, "background": { "title": "Sfondo", @@ -312,6 +316,7 @@ "untagged_area": "Area senza tag", "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": "Il tag {tag} fa pensare che la linea sia un'area, ma non rappresenta un'area", + "untagged_tooltip": "Seleziona un tipo di elemento che descriva il tipo di {geometry}.", "deprecated_tags": "Tag deprecati: {tags}" }, "zoom": { @@ -391,6 +396,9 @@ "category-building": { "name": "Edifici" }, + "category-golf": { + "name": "Golf" + }, "category-landuse": { "name": "Utilizzi del terreno" }, @@ -467,6 +475,33 @@ "admin_level": { "label": "Livello di Amministrazione" }, + "aerialway": { + "label": "Tipo" + }, + "aerialway/access": { + "label": "Accesso" + }, + "aerialway/bubble": { + "label": "Copertura paravento" + }, + "aerialway/capacity": { + "label": "Portata (persone/ora)", + "placeholder": "500, 2500, 5000..." + }, + "aerialway/duration": { + "label": "Durata (minuti)", + "placeholder": "1, 2, 3..." + }, + "aerialway/heating": { + "label": "Riscaldamento" + }, + "aerialway/occupancy": { + "label": "Capacità", + "placeholder": "2, 4, 8..." + }, + "aerialway/summer/access": { + "label": "Accesso (estate)" + }, "aeroway": { "label": "Tipo" }, @@ -500,6 +535,9 @@ "building_area": { "label": "Edificio" }, + "cans": { + "label": "Lattine" + }, "capacity": { "label": "Capienza", "placeholder": "50, 100, 200..." @@ -514,6 +552,9 @@ "anticlockwise": "Senso antiorario" } }, + "clothes": { + "label": "Vestiti" + }, "collection_times": { "label": "Orari di raccolta" }, @@ -523,6 +564,9 @@ "country": { "label": "Stato" }, + "covered": { + "label": "Coperto" + }, "crossing": { "label": "Tipo" }, @@ -538,6 +582,9 @@ "description": { "label": "Descrizione" }, + "electrified": { + "label": "Elettrificata" + }, "elevation": { "label": "Altitudine" }, @@ -560,6 +607,9 @@ "fixme": { "label": "Sistemare" }, + "gauge": { + "label": "Scartamento" + }, "generator/method": { "label": "Metodo" }, @@ -569,6 +619,17 @@ "generator/type": { "label": "Tipo" }, + "glass": { + "label": "Vetro" + }, + "golf_hole": { + "label": "Codice", + "placeholder": "Numero buca (1-18)" + }, + "handicap": { + "label": "Handicap", + "placeholder": "1-18" + }, "highway": { "label": "Tipo" }, @@ -584,6 +645,9 @@ "incline": { "label": "Pendenza" }, + "information": { + "label": "Tipo" + }, "internet_access": { "label": "Accesso ad Internet", "options": { @@ -650,6 +714,13 @@ "operator": { "label": "Operatore" }, + "paper": { + "label": "Carta" + }, + "par": { + "label": "Par", + "placeholder": "3, 4, 5..." + }, "park_ride": { "label": "Parcheggio di Interscambio" }, @@ -660,6 +731,15 @@ "label": "Telefono", "placeholder": "+39 01 123 456" }, + "piste/difficulty": { + "label": "Difficoltà" + }, + "piste/grooming": { + "label": "Terreno" + }, + "piste/type": { + "label": "Tipo" + }, "place": { "label": "Tipo" }, @@ -727,6 +807,9 @@ "cutting": "Infossato" } }, + "studio_type": { + "label": "Tipo" + }, "supervised": { "label": "Custodito" }, @@ -751,6 +834,9 @@ "tree_type": { "label": "Tipo" }, + "tunnel": { + "label": "Tunnel" + }, "vending": { "label": "Beni venduti" }, @@ -782,6 +868,46 @@ "name": "Indirizzo", "terms": "numero civico,indirizzo,cap,città,località,luogo" }, + "aerialway": { + "name": "Trasporto a fune", + "terms": "seggiovia,funivia,funicolare,cabinovia,slittovia,rotovia,funivia aerea,cestovia,seggiovia navale,sciovia,teleferica,manovia,palorcio" + }, + "aerialway/cable_car": { + "name": "Funivia", + "terms": "funivia" + }, + "aerialway/chair_lift": { + "name": "Seggiovia", + "terms": "seggiovia" + }, + "aerialway/gondola": { + "name": "Cabinovia", + "terms": "cabinovia" + }, + "aerialway/magic_carpet": { + "name": "Tapis roulant", + "terms": "tappeto rollante" + }, + "aerialway/platter": { + "name": "Skilift", + "terms": "skylift,sciovia,skilift" + }, + "aerialway/pylon": { + "name": "Pilone di trasporto a fune", + "terms": "pilone,palone,traliccio" + }, + "aerialway/rope_tow": { + "name": "Manovia", + "terms": "manovia" + }, + "aerialway/station": { + "name": "Stazione trasporto a fune", + "terms": "seggiovia,funivia,funicolare,cabinovia,slittovia,rotovia,funivia aerea,cestovia,seggiovia navale,sciovia,teleferica,manovia,palorcio" + }, + "aerialway/t-bar": { + "name": "Skilift ad ancora", + "terms": "skilift,sciovia" + }, "aeroway": { "name": "Aeroporto", "terms": "pista aeroportuale,aerei,elicotteri,eliporto,aerodromo,aeroscalo,aerostazione,aeroplani,paracadutisti,aviazione,idroscalo" @@ -878,6 +1004,14 @@ "name": "Cinema", "terms": "cinema,cine,film,cinematografo,proiezione" }, + "amenity/clinic": { + "name": "Clinica medica", + "terms": "clinica,poliambulatori,policlinica" + }, + "amenity/clock": { + "name": "Orologio", + "terms": "ora,orario,orologio" + }, "amenity/college": { "name": "College", "terms": "Accademia" @@ -886,6 +1020,14 @@ "name": "Tribunale", "terms": "Palazzo di Giustizia" }, + "amenity/dentist": { + "name": "Dentista", + "terms": "dentista,odontoiatra,odontotecnico" + }, + "amenity/doctor": { + "name": "Medico di base", + "terms": "dottore,medico,studio medico" + }, "amenity/drinking_water": { "name": "Fontanella", "terms": "fontana,fontanella,acqua potabile,nasone" @@ -978,6 +1120,10 @@ "name": "Guardiaparco", "terms": "Stazione guardia forestale" }, + "amenity/recycling": { + "name": "Isola ecologica", + "terms": "riciclo,raccolta differenziata,cestino,pattume,riciclaggio" + }, "amenity/restaurant": { "name": "Ristorante", "terms": "bar,caffetteria,caffè,ristorante self-service,braceria,trattoria,negozio di ciambelle,bettola,griglieria,venditore di hamburger,venditore di hotdog,pizzeria" @@ -990,6 +1136,10 @@ "name": "Riparo", "terms": "ricovero,rifugio,tettoia,pensilina,bivacco,grotta" }, + "amenity/studio": { + "name": "Studio radiotelevisivo", + "terms": "studio,radio,televisione,registrazione,in onda,studio di registrazione" + }, "amenity/swimming_pool": { "name": "Piscina", "terms": "Piscina" @@ -1022,6 +1172,10 @@ "name": "Distributore automatico", "terms": "distributore automatico,macchinetta" }, + "amenity/veterinary": { + "name": "Veterinario", + "terms": "animali,dottore,medicina,farmacia" + }, "amenity/waste_basket": { "name": "Cestino della spazzatura", "terms": "sacchetto della spazzatura,cestino della spazzatura,cassonetto della spazzatura,cassonetto,cestino" @@ -1138,6 +1292,54 @@ "name": "Edificio residenziale", "terms": "Edificio residenziale" }, + "craft/blacksmith": { + "name": "Maniscalco", + "terms": "ferri di cavallo" + }, + "craft/brewery": { + "name": "Birrificio", + "terms": "birreria,birra" + }, + "craft/carpenter": { + "name": "Carpentiere", + "terms": "carpenteria,legno" + }, + "craft/clockmaker": { + "name": "Costruttore di orologi", + "terms": "orologi" + }, + "craft/electrician": { + "name": "Elettricista", + "terms": "elettronica,elettricità" + }, + "craft/gardener": { + "name": "Giardiniere", + "terms": "giardinaggio,giardino" + }, + "craft/jeweler": { + "name": "Gioielliere", + "terms": "gioielli,bigiotteria,orafo,gioielleria" + }, + "craft/locksmith": { + "name": "Fabbro", + "terms": "fabbro,ferraio,ferro battuto,officina" + }, + "craft/optician": { + "name": "Ottico", + "terms": "ottica,occhiali" + }, + "craft/photographer": { + "name": "Fotografo", + "terms": "fotografia,stampe" + }, + "craft/shoemaker": { + "name": "Calzolaio", + "terms": "scarpe,scarpino,calzature" + }, + "craft/watchmaker": { + "name": "Orologiaio", + "terms": "orologi,riparazione" + }, "embankment": { "name": "Terrapieno", "terms": "argine,muraglia,muro,collina,terra" @@ -1166,6 +1368,30 @@ "name": "Marciapiede", "terms": "marciapiedi,passeggio,salvagente,banchina" }, + "golf/bunker": { + "name": "Bunker", + "terms": "sabbia" + }, + "golf/fairway": { + "name": "Fairway", + "terms": "fairway" + }, + "golf/green": { + "name": "Gree", + "terms": "campo da golf,green" + }, + "golf/hole": { + "name": "Buca del golf", + "terms": "buca,golf" + }, + "golf/lateral_water_hazard": { + "name": "Ostacolo d'acqua laterale", + "terms": "buca,acqua,golf,ostacolo" + }, + "golf/water_hazard": { + "name": "Ostacolo d'acqua", + "terms": "buca,acqua,golf,ostacolo" + }, "highway": { "name": "Strada", "terms": "Strada" @@ -1230,6 +1456,10 @@ "name": "Residenziale", "terms": "Residenziale" }, + "highway/rest_area": { + "name": "Area di sosta", + "terms": "sosta" + }, "highway/road": { "name": "Tipo sconosciuto", "terms": "Tipo sconosciuto" @@ -1266,6 +1496,10 @@ "name": "Corsia di un parcheggio", "terms": "Corsia parcheggio" }, + "highway/services": { + "name": "Area di servizio", + "terms": "servizio" + }, "highway/steps": { "name": "Scale", "terms": "scale,scalinata,gradini" @@ -1714,6 +1948,10 @@ "name": "Agenzia di viaggi", "terms": "travel,tour operator,turismo,viaggi,escursionismo" }, + "piste": { + "name": "Piste da sci", + "terms": "pista da sci,sci,impianto sciistico,impianto" + }, "place": { "name": "Luogo", "terms": "Luogo" @@ -1771,8 +2009,8 @@ "terms": "Pilone elettricità" }, "power/sub_station": { - "name": "Sottostazione", - "terms": "Sottostazione" + "name": "Sottostazione elettrica", + "terms": "Sottostazione elettrica,centralina,trasformatore" }, "power/tower": { "name": "Traliccio ad alta tensione", @@ -1802,6 +2040,10 @@ "name": "Ferrovia in disuso", "terms": "Ferrovia di disuso" }, + "railway/funicular": { + "name": "Funicolare", + "terms": "funicolare,treno,trenino" + }, "railway/halt": { "name": "Fermata ferroviaria", "terms": "Fermata ferroviaria,fermata,stazione,stazione non custodita,fermata a richiesta" @@ -1814,6 +2056,10 @@ "name": "Monorotaia", "terms": "Monorotaia" }, + "railway/narrow_gauge": { + "name": "Ferrovia a scartamento ridotto", + "terms": "scartamento ridotto" + }, "railway/platform": { "name": "Piattaforma della stazione ferroviaria", "terms": "Piattafirna ferroviaria" diff --git a/vendor/assets/iD/iD/locales/ja.json b/vendor/assets/iD/iD/locales/ja.json index 2173cdcfc..6cb70f06b 100644 --- a/vendor/assets/iD/iD/locales/ja.json +++ b/vendor/assets/iD/iD/locales/ja.json @@ -2,7 +2,7 @@ "modes": { "add_area": { "title": "エリア", - "description": "公園や建物、湖沼など、エリア情報を描画", + "description": "公園や建物、湖沼等を地図に追加", "tail": "クリックするとエリアの描画が開始されます。公園や湖沼、建物などを描くことができます。" }, "add_line": { @@ -252,7 +252,11 @@ "incomplete": "<ダウンロード未完了>", "feature_list": "地物を検索", "edit": "地物を編集", - "none": "なし" + "none": "なし", + "node": "ノード", + "way": "ウェイ", + "relation": "リレーション", + "location": "位置" }, "background": { "title": "背景画像", @@ -312,6 +316,7 @@ "untagged_area": "エリアにタグが付与されていません", "many_deletions": "{n} オブジェクトを削除しています。本当に削除してよろしいですか? 削除した結果はopenstreetmap.orgに反映されます。", "tag_suggests_area": "ラインに {tag} タグが付与されています。エリアで描かれるべきです", + "untagged_tooltip": "この {geometry} があらわす地物の種類を選択してください。", "deprecated_tags": "タグの重複: {tags}" }, "zoom": { @@ -333,6 +338,7 @@ "gps": "# GPS\n\nOpenStreetMapにおいて、GPSデータは最も信用できる情報源です。iDエディタはあなたのPC上にある`.gpx`ファイルのトレース機能をサポートしています。GPSログは、スマートフォンのアプリケーションやGPSロガーを使用することで収集することができます。\n\nGPSを使用した現地調査の詳細な進め方については、[GPSによる調査](http://learnosm.org/jp/beginner/using-gps/)を参照してください。\n\nGPXログファイルをエディタの上にドラッグ&ドロップすることで、ファイルの内容をエディタ上に表示させることができます。ファイル形式の読み込みが正常に完了すると、ログは明るい緑色の線としてエディタ上に表示されます。エディタの左側に配置されている'背景画像設定'メニューをクリックすると、ログの表示/非表示、GPXが配置されたレイヤーへのズームを設定することができます。\n\nこのGPXログファイルはOpenStreetMapへ直接アップロードされたものではありません。このログを参考情報として地図を描いたり、あなたが追加する地物の配置場所の参考情報とするのがよいでしょう。また、あなた以外のユーザにもGPSログを使ってもらうためには[OpenStreetMapへのアップロード機能](http://www.openstreetmap.org/trace/create)を利用してください。\n", "imagery": "# 背景画像\n\n地図を作成するにあたって、航空写真は重要なリソースのひとつです。上空からの撮影、衛星写真、自由な利用が認められた情報源などは、画面左側の'背景画像設定'メニューから表示させることが可能です。\n\nデフォルト設定では[Bing Maps](http://www.bing.com/maps/)の衛星写真レイヤーが表示されていますが、地図のズームレベル変更などで新しい場所を表示する際に別のリソースを表示させることが可能です。英国やフランス、デンマークでは、特定の地域に限り非常に細密な画像が利用可能です。\n\n画像提供側の間違いが原因で、背景画像と地図データの位置がずれていることがあります。既存道路の多くが一方向にずれている場合、すべての地物の位置を一度に移動させてしまう前に、背景画像の表示位置を調整してみて、オフセットがされていないか確認を行なってください。位置の調整は、背景画像設定の一番下に表示されている'背景画像をずらす'という項目から行うことができます。\n", "addresses": "# 住所\n\n住所情報は地図において最も有用な情報のひとつです。\n\n住所情報は街路の付帯情報として扱われることがほとんどですが、OpenStreetMapにおける住所情報は、街路にそって配置されている建物の属性として記録されます。\n\n住所情報は建物を表す輪郭に付与しても構いませんし、独立したポイントとして配置してもかまいません。また、住所データの最適な情報源は現地調査、あるいは個人の記憶によるものです。GoogleMapsなど、他の地図からの転載は特別な許諾がない限り固く禁止されています。\n\n注: 日本では住所システムの体系が異なるため、街路を基とする上記の方法を適用することはできません。\n", + "inspector": "# 地物情報表示ウィンドウ\n\n地図上の地物を選択すると、画面左側に入力ウィンドウが表示されます。地物に関する詳細情報の編集はこのウィンドウから行います。\n\n### 地物種別の選択\n\nポイントやライン、エリアを描画する際、描いた地物の種別を選択することができます。これによって、ラインが高速道路なのか住宅道路なのか、ポイントがスーパーマーケットなのか喫茶店なのか、などを表現します。地物情報表示ウィンドウには、よく利用される地物が表示されています。その他の地物を表示させたい場合は、検索ボックスから検索を行なってください。\n\n地物種別が表示されている右下にある'i'ボタンをクリックすることで、その種別の詳細情報を表示させることができます。アイコンをクリックすることで、種別を確定させることができます。\n\n### フォームを利用したタグ編集\n\n地物の種別を選択した後、あるいは既に種別が割り当てられた地物を選択した際には、その地物の名称や住所などの詳細情報がウィンドウ内に表示されます。\n\n表示中のフィールドの下部にあるアイコンをクリックすると、追加の入力フィールドが表示されます。例えば[Wikipedia](http://www.wikipedia.org/)情報や、車椅子の利用可否などです。\n\n入力ウィンドウの一番下に配置されている 'タグ項目を追加'をクリックすると、要素に対する自由記入フォームが表示されます。利用されることが多いタグの組み合わせは[Taginfo](http://taginfo.openstreetmap.org/)から検索が可能です。\n\n入力ウィンドウに記入した内容は、エディタ上の地図に即座に反映されます。'やり直し'ボタンをクリックすることで、いつでも入力内容を取り消すことが可能です。\n\n### 地物情報表示ウィンドウを閉じる\n\nウィンドウを閉じるには、ウィンドウ右上のXボタンをクリックするか、キーボードの'Escape'キーを押すか、地図上のどこかをクリックしてください。\n", "buildings": "# 建物\n\nOpenStreetMapは世界でも有数の建物情報データベースです。このデータベースへの情報追加や改善は誰しもが参加可能です。\n\n### 選択\n\n建物の輪郭をクリックすると、その建物を選択することができます。建物はハイライト表示され、小さなツール項目と、画面右側にその建物の詳細情報が表示されます。\n\n### 修正\n\n建物の位置や、付与されているタグが誤っていることがあります。\n\n建物全体の位置を移動させるには、'移動'ツールのアイコンをクリックしてください。マウスを動かして建物を正しい位置へ移動させ、もう一度クリックして位置を確定させます。\n\n同様に、建物を形成しているポイントをクリックして正しい位置へ移動させることで、建物の形状を修正することができます。\n\n### 新規作成\n\nOpenStreetMapで建物を描く場合によくあがる質問として、建物をエリアとポイントのどちらで描いたほうがよいか、というものがあります。最善の方法では _できる限り、建物はエリアとして描き_ 、会社や個人宅、施設など、建物から独立した情報は別途ポイントとして、エリアとして描かれた建物の内側に配置します。\n\n画面左上に表示されている項目から'エリア'ボタンをクリックして、建物をエリアとして描いてみましょう。エリアの描画を終了するにはキーボードの'Return'キーを押すか、エリアを描き始めたポイントをもう一度クリックしてください。\n\n### 削除\n\nもし建物の情報が完全に間違っている場合 - 衛星写真に映っておらず、より理想としては実際に現地で建物が無いことを確認できた場合 - その建物データそのものを削除し、地図から消去することが可能です。地物を削除する際の注意として、編集結果は他の編集と同様すべての利用者の目に触れること、また、衛星写真は撮影日時が古い可能性があり、建物が新しく建設されているかもしれないことを意識してください。\n\n建物を削除するには、対象をクリックして選択し、ツール項目からゴミ箱アイコンをクリックするか、'Delete'キーを押してください。\n", "relations": "# リレーション\n\nリレーションとはOpenStreetMapで地物を表現する際の特殊な記法で、複数の地物をひとつのグループとして扱うことが可能です。例えばリレーションでよく使われるものは、特定の高速道路や有料道路を複数のウェイを使って表現する *route リレーション* 、そして複数のラインをグループ化することによって分割されたエリアやドーナツ型の空洞部分などの複雑な表現を行う *マルチポリゴン* があげられます。\n\nリレーションを構成する地物は *メンバー* と呼ばれます。OSM上の地物がどのリレーションのメンバーになっているかはサイドバーに表示され、選択することが可能です。リレーションを選択するとその所属メンバーがすべてサイドバーにリストアップされ、地図上にその位置がハイライト表示されます。\n\niDでは編集中のリレーション情報はほとんどの場合、自動的に補完されます。ただし、例えば位置が間違っている道路をいったん削除して新しく書き直す際などは、書き直した道路ウェイが削除したウェイと同じリレーションに再度所属するように編集するべきです。\n\n## リレーションの編集\n\nリレーションを編集する場合、基本の形は以下のとおりです。\n\nリレーションに地物を追加してメンバーにする場合、まず対象の地物を選択した状態で、サイドバーの \"すべてのリレーション\" に表示されている \"+\" ボタンをクリックします。クリックしたら、リレーションの名称を入力するか、一覧から選んでください。\n\nリレーションを新しく作成する場合は、メンバーとして所属することになる最初の地物を選択した状態で \"すべてのリレーション\" に表示されている \"+\" ボタンをクリックし、\"新しいリレーション\"を選択してください。\n\nリレーションから地物を除外する場合は、対象の地物を選択し、除外を行いたいリレーションの隣に表示されているゴミ箱アイコンをクリックします。\n\nまた、\"結合\"機能を使うことで、空洞部分をもつマルチポリゴンを作成することができます。2つのエリアを描き、それぞれを内側(inner)と外側(outer)とします。次に、キーボードのShiftキーを押しながらそれぞれの地物をクリックし、両方を選択状態にしてから \"結合\" (+) ボタンをクリックしてください。\n" }, @@ -390,11 +396,14 @@ "category-building": { "name": "建物" }, + "category-golf": { + "name": "ゴルフ" + }, "category-landuse": { "name": "土地利用" }, "category-path": { - "name": "小路" + "name": "小道" }, "category-rail": { "name": "線路" @@ -409,7 +418,7 @@ "name": "水面" }, "category-water-line": { - "name": "水面" + "name": "水路" } }, "fields": { @@ -466,11 +475,38 @@ "admin_level": { "label": "Admin Level" }, - "aeroway": { + "aerialway": { "label": "タイプ" }, + "aerialway/access": { + "label": "通行制限" + }, + "aerialway/bubble": { + "label": "覆い" + }, + "aerialway/capacity": { + "label": "運搬人数(1時間当たり)", + "placeholder": "500, 2500, 5000..." + }, + "aerialway/duration": { + "label": "所用時間(分)", + "placeholder": "1, 2, 3..." + }, + "aerialway/heating": { + "label": "暖房" + }, + "aerialway/occupancy": { + "label": "重量", + "placeholder": "2, 4, 8..." + }, + "aerialway/summer/access": { + "label": "夏季運行" + }, + "aeroway": { + "label": "形態" + }, "amenity": { - "label": "種別" + "label": "種類" }, "artist": { "label": "アーティスト" @@ -488,19 +524,22 @@ "label": "タイプ" }, "bicycle_parking": { - "label": "タイプ" + "label": "種類" }, "boundary": { "label": "タイプ" }, "building": { - "label": "建物種別" + "label": "建物" }, "building_area": { - "label": "建物種別" + "label": "建物" + }, + "cans": { + "label": "空き缶回収" }, "capacity": { - "label": "収容可能な数量", + "label": "収容数", "placeholder": "50, 100, 200..." }, "cardinal_direction": { @@ -513,41 +552,50 @@ "anticlockwise": "左回り" } }, + "clothes": { + "label": "古着回収" + }, "collection_times": { - "label": "情報取得日時" + "label": "収集時刻" }, "construction": { - "label": "タイプ" + "label": "種類" }, "country": { - "label": "Country" + "label": "国" + }, + "covered": { + "label": "屋根" }, "crossing": { - "label": "タイプ" + "label": "種類" }, "cuisine": { - "label": "メニュー種別" + "label": "料理の種類" }, "denomination": { "label": "宗派" }, "denotation": { - "label": "表示" + "label": "意味" }, "description": { - "label": "詳しい内容" + "label": "説明" + }, + "electrified": { + "label": "電化状態" }, "elevation": { "label": "標高" }, "emergency": { - "label": "緊急医療" + "label": "緊急設備" }, "entrance": { "label": "タイプ" }, "fax": { - "label": "Fax", + "label": "FAX", "placeholder": "+31 42 123 4567" }, "fee": { @@ -557,17 +605,31 @@ "label": "タイプ" }, "fixme": { - "label": "Fix Me" + "label": "要修正" + }, + "gauge": { + "label": "軌間" }, "generator/method": { "label": "方式" }, "generator/source": { - "label": "参照した情報" + "label": "情報源" }, "generator/type": { "label": "タイプ" }, + "glass": { + "label": "草回収" + }, + "golf_hole": { + "label": "参照", + "placeholder": "ホール(1-18)" + }, + "handicap": { + "label": "ハンデ", + "placeholder": "1-18" + }, "highway": { "label": "道路区分" }, @@ -583,6 +645,9 @@ "incline": { "label": "傾斜" }, + "information": { + "label": "タイプ" + }, "internet_access": { "label": "インターネット利用", "options": { @@ -599,7 +664,7 @@ "placeholder": "1, 2, 3..." }, "layer": { - "label": "レイヤ" + "label": "レイヤー" }, "leisure": { "label": "タイプ" @@ -615,7 +680,7 @@ "label": "位置" }, "man_made": { - "label": "タイプ" + "label": "種類" }, "maxspeed": { "label": "最高速度", @@ -649,6 +714,13 @@ "operator": { "label": "管理主体" }, + "paper": { + "label": "古紙回収" + }, + "par": { + "label": "パー", + "placeholder": "3, 4, 5..." + }, "park_ride": { "label": "パーク&ライド" }, @@ -659,6 +731,15 @@ "label": "電話番号", "placeholder": "+31 42 123 4567" }, + "piste/difficulty": { + "label": "難易度" + }, + "piste/grooming": { + "label": "整備状況" + }, + "piste/type": { + "label": "種別" + }, "place": { "label": "タイプ" }, @@ -699,7 +780,7 @@ "label": "通行の困難さ" }, "service": { - "label": "タイプ" + "label": "種類" }, "shelter": { "label": "避難所" @@ -711,7 +792,7 @@ "label": "店舗種別" }, "source": { - "label": "参照した情報" + "label": "情報源" }, "sport": { "label": "スポーツ" @@ -720,23 +801,26 @@ "label": "構造", "placeholder": "不明", "options": { - "bridge": "橋梁", + "bridge": "橋", "tunnel": "トンネル", - "embankment": "土手, 堤防", - "cutting": "切土, 掘割" + "embankment": "土手", + "cutting": "切り通し" } }, + "studio_type": { + "label": "タイプ" + }, "supervised": { "label": "管理" }, "surface": { - "label": "路面種別" + "label": "路面状態" }, "toilets/disposal": { "label": "汚物処理" }, "tourism": { - "label": "タイプ" + "label": "種類" }, "towertype": { "label": "塔の用途" @@ -750,11 +834,14 @@ "tree_type": { "label": "タイプ" }, + "tunnel": { + "label": "トンネル" + }, "vending": { "label": "販売商品の種別" }, "water": { - "label": "タイプ" + "label": "種類" }, "waterway": { "label": "水路区分" @@ -779,1096 +866,1763 @@ "presets": { "address": { "name": "住所", - "terms": "住所,郵便,じゅうしょ" + "terms": "住所" + }, + "aerialway": { + "name": "索道", + "terms": "索道,ロープウェイ,リフト" + }, + "aerialway/cable_car": { + "name": "ケーブルカー", + "terms": "ケーブルカー,インクライン" + }, + "aerialway/chair_lift": { + "name": "チェアリフト", + "terms": "チェアリフト,椅子リフト,いすリフト" + }, + "aerialway/gondola": { + "name": "ゴンドラ", + "terms": "ゴンドラ" + }, + "aerialway/magic_carpet": { + "name": "マジックカーペットリフト", + "terms": "マジックカーペットリフト" + }, + "aerialway/platter": { + "name": "プラッターリフト", + "terms": "プラッターリフト" + }, + "aerialway/pylon": { + "name": "索道用支柱", + "terms": "索道用支柱,パイロン" + }, + "aerialway/rope_tow": { + "name": "ロープタウリフト", + "terms": "ロープタウリフト" + }, + "aerialway/station": { + "name": "索道駅", + "terms": "索道駅,ロープウェイ駅,リフト駅" + }, + "aerialway/t-bar": { + "name": "Tバーリフト", + "terms": "Tバーリフト" }, "aeroway": { - "name": "航空施設" + "name": "航空施設", + "terms": "索道,ロープウェイ,リフト" }, "aeroway/aerodrome": { "name": "空港", "terms": "空港,飛行場" }, "aeroway/apron": { - "name": "エプロン" + "name": "エプロン", + "terms": "エプロン" }, "aeroway/gate": { - "name": "空港ゲート" + "name": "搭乗口", + "terms": "搭乗口, 搭乗ゲート" }, "aeroway/hangar": { - "name": "格納庫" + "name": "格納庫", + "terms": "格納庫" }, "aeroway/helipad": { - "name": "ヘリポート" + "name": "ヘリパッド", + "terms": "ヘリパッド,ヘリコプター発着所" }, "aeroway/runway": { - "name": "滑走路" + "name": "滑走路", + "terms": "滑走路" }, "aeroway/taxiway": { - "name": "航空機誘導路" + "name": "航空機誘導路", + "terms": "誘導路" }, "aeroway/terminal": { "name": "空港ターミナル", "terms": "空港ターミナル,ターミナル,空港" }, "amenity": { - "name": "(公共)施設" + "name": "施設", + "terms": "飲食店,設備" }, "amenity/arts_centre": { - "name": "アートセンター" + "name": "アートセンター", + "terms": "アートセンター" }, "amenity/atm": { "name": "ATM", - "terms": "atm,ATM,えーてぃーえむ,預貯金,引き出し" + "terms": "ATM,CD,現金自動預払機" }, "amenity/bank": { "name": "銀行", - "terms": "銀行,ぎんこう,バンク,信用金庫,振り込み" + "terms": "銀行,信用金庫,信用組合" }, "amenity/bar": { "name": "バー", "terms": "バー,飲み屋,呑み屋,ばー" }, "amenity/bench": { - "name": "ベンチ" + "name": "ベンチ", + "terms": "ベンチ" }, "amenity/bicycle_parking": { - "name": "駐輪場" + "name": "駐輪場", + "terms": "駐輪場,自転車駐車場" }, "amenity/bicycle_rental": { - "name": "レンタル自転車店" + "name": "レンタサイクル", + "terms": "レンタサイクル" }, "amenity/boat_rental": { - "name": "貸ボート" + "name": "貸しボート", + "terms": "貸しボート" }, "amenity/cafe": { - "name": "カフェ" + "name": "喫茶店", + "terms": "喫茶店,カフェ" }, "amenity/car_rental": { - "name": "レンタカー" + "name": "レンタカー", + "terms": "レンタカー,貸自動車,カーレンタル" }, "amenity/car_sharing": { - "name": "カーシェアリング" + "name": "カーシェアリング", + "terms": "カーシェアリング" }, "amenity/car_wash": { - "name": "車の洗浄" + "name": "車の洗浄", + "terms": "洗車機, 洗車, 車洗浄, カーウォッシュ" }, "amenity/childcare": { - "name": "保育施設" + "name": "保育施設", + "terms": "託児所,保育園,幼稚園,学童保育" }, "amenity/cinema": { - "name": "映画館" + "name": "映画館", + "terms": "映画館,上映施設,スクリーン,銀幕" + }, + "amenity/clinic": { + "name": "クリニック", + "terms": "クリニック" + }, + "amenity/clock": { + "name": "時計", + "terms": "時計" }, "amenity/college": { - "name": "単科大学" + "name": "単科大学", + "terms": "大学,短大,専門学校,高専" }, "amenity/courthouse": { - "name": "裁判所" + "name": "裁判所", + "terms": "裁判所" + }, + "amenity/dentist": { + "name": "歯医者", + "terms": "歯科" + }, + "amenity/doctor": { + "name": "医院", + "terms": "医者,医師" }, "amenity/drinking_water": { - "name": "水飲み場" + "name": "水飲み場", + "terms": "水飲み場" }, "amenity/embassy": { - "name": "大使館" + "name": "大使館", + "terms": "大使館" }, "amenity/fast_food": { - "name": "ファストフード" + "name": "ファストフード", + "terms": "ファストフード店,ファストフード,ジャンクフード,ジャンク" }, "amenity/fire_station": { - "name": "消防署" + "name": "消防署", + "terms": "消防署" }, "amenity/fountain": { - "name": "噴水" + "name": "噴水", + "terms": "泉,噴水" }, "amenity/fuel": { - "name": "ガソリンスタンド" + "name": "ガソリンスタンド", + "terms": "ガソリンスタンド,ガス,ガスステーション" }, "amenity/grave_yard": { - "name": "墓地" + "name": "(教会・寺院にある)墓所", + "terms": "墓地,霊園,墓場,お墓,墓苑" }, "amenity/hospital": { - "name": "病院" + "name": "病院", + "terms": "病院, 医院,総合病院" }, "amenity/kindergarten": { - "name": "幼稚園" + "name": "幼稚園", + "terms": "保育園,幼稚園" }, "amenity/library": { - "name": "図書館" + "name": "図書館", + "terms": "図書館,ライブラリ,ライブラリー" }, "amenity/marketplace": { - "name": "市場" + "name": "市場", + "terms": "市場,マーケット,朝市,マルシェ" }, "amenity/parking": { - "name": "駐車場" + "name": "駐車場", + "terms": "駐車場" }, "amenity/pharmacy": { - "name": "薬局, ドラッグストア" + "name": "薬局", + "terms": "調剤,調剤薬局,薬局" }, "amenity/place_of_worship": { - "name": "宗教施設" + "name": "宗教施設", + "terms": "礼拝所,祈りの場所,参拝所" }, "amenity/place_of_worship/buddhist": { - "name": "仏閣" + "name": "仏教寺院", + "terms": "寺院,仏閣,寺,寺社,院,堂" }, "amenity/place_of_worship/christian": { - "name": "教会" + "name": "教会", + "terms": "教会,礼拝堂,礼拝所,チャーチ" }, "amenity/place_of_worship/jewish": { - "name": "シナゴーグ" + "name": "シナゴーグ", + "terms": "シナゴーグ" }, "amenity/place_of_worship/muslim": { - "name": "モスク" + "name": "モスク", + "terms": "モスク" }, "amenity/police": { - "name": "警察" + "name": "警察", + "terms": "警察,警察署,交番,駐在所" }, "amenity/post_box": { - "name": "郵便ポスト" + "name": "郵便ポスト", + "terms": "郵便ポスト,郵便箱" }, "amenity/post_office": { - "name": "郵便局" + "name": "郵便局", + "terms": "郵便局" }, "amenity/pub": { - "name": "居酒屋" + "name": "居酒屋", + "terms": "パブ,居酒屋" }, "amenity/ranger_station": { - "name": "レンジャーステーション" + "name": "レンジャーの詰所", + "terms": "レンジャーの詰所, レンジャーステーション" + }, + "amenity/recycling": { + "name": "リサイクルボックス", + "terms": "リサイクルボックス" }, "amenity/restaurant": { - "name": "レストラン" + "name": "レストラン", + "terms": "レストラン,食堂" }, "amenity/school": { - "name": "学校" + "name": "学校", + "terms": "学校,スクール" }, "amenity/shelter": { - "name": "避難所" + "name": "避難所", + "terms": "避難所,シェルター,逃げ場" + }, + "amenity/studio": { + "name": "スタジオ", + "terms": "スタジオ" }, "amenity/swimming_pool": { - "name": "プール" + "name": "遊泳プール", + "terms": "遊泳プール" }, "amenity/taxi": { - "name": "タクシー乗り場" + "name": "タクシー乗り場", + "terms": "タクシー乗り場" }, "amenity/telephone": { - "name": "公衆電話" + "name": "公衆電話", + "terms": "公衆電話" }, "amenity/theatre": { - "name": "劇場" + "name": "劇場", + "terms": "劇場,ホール" }, "amenity/toilets": { - "name": "お手洗い, トイレ" + "name": "トイレ", + "terms": "トイレ,便所" }, "amenity/townhall": { - "name": "市町村役場" + "name": "役場", + "terms": "市役所,区役所,町役場,村役場,市庁" }, "amenity/university": { - "name": "大学" + "name": "大学", + "terms": "大学" }, "amenity/vending_machine": { - "name": "自動販売機" + "name": "自動販売機", + "terms": "自動販売機" + }, + "amenity/veterinary": { + "name": "獣医", + "terms": "獣医, ペット医" }, "amenity/waste_basket": { - "name": "ゴミ箱" + "name": "ゴミ箱", + "terms": "ゴミ箱" }, "area": { - "name": "エリア" + "name": "エリア", + "terms": "エリア, 領域, 範囲" }, "barrier": { - "name": "障害物" + "name": "障害物", + "terms": "障害物" }, "barrier/block": { - "name": "車止め" + "name": "車止め", + "terms": "ブロック" }, "barrier/bollard": { - "name": "杭" + "name": "車止め杭", + "terms": "車止め杭" }, "barrier/cattle_grid": { - "name": "家畜柵" + "name": "家畜脱出防止溝", + "terms": "家畜脱出防止溝" }, "barrier/city_wall": { - "name": "市壁" + "name": "市壁", + "terms": "市壁" }, "barrier/cycle_barrier": { - "name": "自転車止め" + "name": "自転車止め", + "terms": "自転車止め" }, "barrier/ditch": { - "name": "溝" + "name": "堀", + "terms": "堀" }, "barrier/entrance": { - "name": "出入り口" + "name": "出入口", + "terms": "出入口" }, "barrier/fence": { - "name": "フェンス, 柵" + "name": "フェンス", + "terms": "フェンス, 柵" }, "barrier/gate": { - "name": "門, ゲート" + "name": "門", + "terms": "門, ゲート" }, "barrier/hedge": { - "name": "垣根" + "name": "生垣", + "terms": "生垣" }, "barrier/kissing_gate": { - "name": "牧場用ゲート" + "name": "キッシングゲート", + "terms": "キッシングゲート, V字形自在門, U字形自在門" }, "barrier/lift_gate": { - "name": "遮断ゲート" + "name": "遮断機", + "terms": "遮断機" }, "barrier/retaining_wall": { - "name": "擁壁" + "name": "擁壁", + "terms": "擁壁" }, "barrier/stile": { - "name": "踏み越し段" + "name": "通路", + "terms": "通路, 踏み越し段" }, "barrier/toll_booth": { - "name": "料金所" + "name": "料金所", + "terms": "料金所" }, "barrier/wall": { - "name": "壁" + "name": "壁", + "terms": "壁" }, "boundary/administrative": { - "name": "行政区境" + "name": "行政境界", + "terms": "行政境界, 都道府県境, 都境, 道境, 府境, 県境, 市区町村境, 市境, 区境, 町境, 村境" }, "building": { - "name": "建物" + "name": "建物", + "terms": "建物, ビル" }, "building/apartments": { - "name": "アパート" + "name": "アパート", + "terms": "アパート" }, "building/commercial": { - "name": "商業建築" + "name": "オフィスビル", + "terms": "オフィスビル" }, "building/entrance": { - "name": "エントランス" + "name": "出入口", + "terms": "出入口, エントランス" }, "building/garage": { - "name": "ガレージ" + "name": "車庫", + "terms": "車庫,ガレージ" }, "building/house": { - "name": "民家" + "name": "住宅", + "terms": "住宅" }, "building/hut": { - "name": "山小屋" + "name": "小屋", + "terms": "小屋, 休憩小屋, 漁師小屋, 狩猟小屋" }, "building/industrial": { - "name": "工場" + "name": "工場", + "terms": "工場" }, "building/residential": { - "name": "住宅建築" + "name": "住宅", + "terms": "住宅, アパート, マンション" + }, + "craft/basket_maker": { + "name": "かご製造所", + "terms": "かご,籠" + }, + "craft/beekeeper": { + "name": "養蜂所", + "terms": "養蜂所" + }, + "craft/blacksmith": { + "name": "鍛冶屋", + "terms": "鍛冶屋" + }, + "craft/boatbuilder": { + "name": "ボート製造所", + "terms": "ボート製造所" + }, + "craft/bookbinder": { + "name": "製本所", + "terms": "製本所" + }, + "craft/brewery": { + "name": "ビール醸造所", + "terms": "ビール醸造所" + }, + "craft/carpenter": { + "name": "工務店", + "terms": "工務店" + }, + "craft/carpet_layer": { + "name": "畳・カーペット工事店", + "terms": "畳・カーペット工事店" + }, + "craft/caterer": { + "name": "仕出し料理店", + "terms": "仕出し料理店" + }, + "craft/clockmaker": { + "name": "時計製造所", + "terms": "時計製造所" + }, + "craft/confectionary": { + "name": "製菓店", + "terms": "製菓店" + }, + "craft/dressmaker": { + "name": "衣服製造所", + "terms": "衣服製造所" + }, + "craft/electrician": { + "name": "電気工事店", + "terms": "電気工事店" + }, + "craft/gardener": { + "name": "庭師", + "terms": "庭師" + }, + "craft/glaziery": { + "name": "ガラス細工師", + "terms": "ガラス細工師" + }, + "craft/handicraft": { + "name": "手工芸品", + "terms": "手工芸品" + }, + "craft/hvac": { + "name": "空調設計", + "terms": "空調設計" + }, + "craft/insulator": { + "name": "断熱材", + "terms": "断熱材" + }, + "craft/jeweler": { + "name": "宝石加工", + "terms": "宝石加工" + }, + "craft/key_cutter": { + "name": "合鍵作成", + "terms": "合鍵作成" + }, + "craft/locksmith": { + "name": "錠前師", + "terms": "錠前師,鍵屋" + }, + "craft/metal_construction": { + "name": "金属加工", + "terms": "金属加工,鋳造" + }, + "craft/optician": { + "name": "眼鏡士", + "terms": "眼鏡士" + }, + "craft/painter": { + "name": "塗装業", + "terms": "塗装業" + }, + "craft/photographer": { + "name": "写真屋", + "terms": "カメラマン,写真屋" + }, + "craft/photographic_labratory": { + "name": "現像所", + "terms": "現像所" + }, + "craft/plasterer": { + "name": "左官", + "terms": "左官" + }, + "craft/plumber": { + "name": "配管工", + "terms": "配管工" + }, + "craft/pottery": { + "name": "窯元", + "terms": "窯元,陶器製造業" + }, + "craft/rigger": { + "name": "艤装者", + "terms": "艤装者" + }, + "craft/roofer": { + "name": "屋根ふき職人", + "terms": "屋根ふき職人" + }, + "craft/saddler": { + "name": "馬具製造人", + "terms": "馬具製造人" + }, + "craft/sailmaker": { + "name": "製帆職人", + "terms": "製帆職人" + }, + "craft/sawmill": { + "name": "製材", + "terms": "製材" + }, + "craft/scaffolder": { + "name": "足場職人", + "terms": "足場職人,とび職" + }, + "craft/sculpter": { + "name": "彫刻家", + "terms": "彫刻家" + }, + "craft/shoemaker": { + "name": "製靴", + "terms": "製靴,靴製造" + }, + "craft/stonemason": { + "name": "石工", + "terms": "石工,石材加工" + }, + "craft/sweep": { + "name": "煙突掃除", + "terms": "煙突掃除" + }, + "craft/tailor": { + "name": "仕立て屋", + "terms": "仕立て屋,テイラー" + }, + "craft/tiler": { + "name": "タイル職人", + "terms": "タイル職人" + }, + "craft/tinsmith": { + "name": "すず細工職人", + "terms": "ブリキ屋,すず細工職人" + }, + "craft/upholsterer": { + "name": "椅子張り職人", + "terms": "椅子張り職人" + }, + "craft/watchmaker": { + "name": "時計製造業", + "terms": "時計製造業" + }, + "craft/window_construction": { + "name": "窓職人", + "terms": "窓職人" }, "embankment": { - "name": "土堤" + "name": "土手", + "terms": "土手" }, "emergency/ambulance_station": { - "name": "救急看護" + "name": "救急車の基地", + "terms": "救急車の基地" }, "emergency/fire_hydrant": { - "name": "消火栓" + "name": "消火栓", + "terms": "消火栓" }, "emergency/phone": { - "name": "緊急電話" + "name": "緊急電話", + "terms": "緊急電話" }, "entrance": { - "name": "エントランス" + "name": "出入口", + "terms": "出入口" }, "footway/crossing": { - "name": "横断歩道" + "name": "横断歩道", + "terms": "横断歩道, 自転車横断帯" }, "footway/sidewalk": { - "name": "歩道" + "name": "歩道", + "terms": "歩道" + }, + "golf/bunker": { + "name": "サンドトラップ", + "terms": "サンドトラップ,バンカー" + }, + "golf/fairway": { + "name": "フェアウェイ", + "terms": "フェアウェー,フェアウェイ" + }, + "golf/green": { + "name": "グリーン", + "terms": "グリーン" + }, + "golf/hole": { + "name": "ゴルフホール", + "terms": "ホール" + }, + "golf/lateral_water_hazard": { + "name": "ラテラルウォーターハザード", + "terms": "ラテラルウォーターハザード" + }, + "golf/rough": { + "name": "ラフ", + "terms": "ラフ" + }, + "golf/tee": { + "name": "ティー", + "terms": "ティー" + }, + "golf/water_hazard": { + "name": "ウォーターハザード", + "terms": "ウォーターハザード, 池ポチャ" }, "highway": { - "name": "道路" + "name": "道路", + "terms": "道路" }, "highway/bridleway": { - "name": "乗馬道" + "name": "乗馬道", + "terms": "乗馬道" }, "highway/bus_stop": { - "name": "バス停" + "name": "バス停", + "terms": "バス停, バス停留所, 停留所, バス乗り場" }, "highway/crossing": { - "name": "横断歩道" + "name": "横断歩道", + "terms": "横断歩道, 自転車横断帯" }, "highway/cycleway": { - "name": "自転車道" + "name": "自転車道", + "terms": "自転車道, サイクリング道路" }, "highway/footway": { - "name": "歩道" + "name": "歩道", + "terms": "歩道, 歩行者用道路" }, "highway/living_street": { - "name": "路地" + "name": "生活道路", + "terms": "生活道路, 路地" }, "highway/mini_roundabout": { - "name": "ラウンドアバウト(小)" + "name": "小さなロータリー", + "terms": "小さなロータリー, ラウンドアバウト" }, "highway/motorway": { - "name": "高速道路" + "name": "自動車専用道路", + "terms": "自動車専用道路,高速道路" }, "highway/motorway_junction": { - "name": "高速道ジャンクション" + "name": "自動車道のIC/JCT", + "terms": "自動車道のIC/JCT,インターチェンジ,ジャンクション" }, "highway/motorway_link": { - "name": "高速道路 - 接続道" + "name": "自動車専用道路の接続路", + "terms": "自動車専用道路の連絡路" }, "highway/path": { - "name": "小道" + "name": "小道", + "terms": "小道" }, "highway/pedestrian": { - "name": "歩行者道" + "name": "歩行者専用道路", + "terms": "歩行者専用道路, 歩行者天国" }, "highway/primary": { - "name": "主要地方道" + "name": "主要地方道", + "terms": "主要地方道" }, "highway/primary_link": { - "name": "主要地方道 - 接続路" + "name": "主要地方道の接続路", + "terms": "主要地方道の連絡路" }, "highway/residential": { - "name": "住宅道路" + "name": "居住区域内道路", + "terms": "居住区域内道路" + }, + "highway/rest_area": { + "name": "パーキングエリア", + "terms": "パーキングエリア, PA, チェーンベース" }, "highway/road": { - "name": "道路区分不明" + "name": "道路(区分不明)", + "terms": "道路(区分不明), その他道路" }, "highway/secondary": { - "name": "一般地方道" + "name": "一般都道府県道", + "terms": "一般都道府県道,都道,道道,府道,県道" }, "highway/secondary_link": { - "name": "一般地方道 - 接続路" + "name": "一般都道府県道の接続路", + "terms": "一般都道府県道の連絡路" }, "highway/service": { - "name": "私道" + "name": "敷地内道路", + "terms": "敷地内道路" }, "highway/service/alley": { - "name": "横町" + "name": "路地", + "terms": "路地" }, "highway/service/drive-through": { - "name": "ドライブスルー" + "name": "ドライブスルー", + "terms": "ドライブスルー" }, "highway/service/driveway": { - "name": "私設車道" + "name": "私道", + "terms": "私道" }, "highway/service/emergency_access": { - "name": "緊急通用路" + "name": "緊急通用路", + "terms": "緊急通用路, 消防車専用口" }, "highway/service/parking_aisle": { - "name": "駐車構内路" + "name": "駐車場内通路", + "terms": "駐車場内通路" + }, + "highway/services": { + "name": "サービスエリア", + "terms": "サービスエリア, 道の駅" }, "highway/steps": { - "name": "階段" + "name": "階段", + "terms": "階段" }, "highway/stop": { - "name": "停止標識" + "name": "一時停止標識", + "terms": "一時停止標識" }, "highway/tertiary": { - "name": "主要な一般道" + "name": "一般道(2車線以上)", + "terms": "一般道(2車線以上)" }, "highway/tertiary_link": { - "name": "主要な一般道 - 接続路" + "name": "一般道(2車線以上)の接続路", + "terms": "一般道(2車線以上)の接続路" }, "highway/track": { - "name": "農道" + "name": "農道・林道", + "terms": "農道,林道" }, "highway/traffic_signals": { - "name": "信号機" + "name": "信号機", + "terms": "信号機" }, "highway/trunk": { - "name": "国道" + "name": "国道", + "terms": "国道,一般国道" }, "highway/trunk_link": { - "name": "国道 - 接続路" + "name": "国道の接続路", + "terms": "国道の接続路" }, "highway/turning_circle": { - "name": "車回し" + "name": "転回場", + "terms": "転回場, 車回し" }, "highway/unclassified": { - "name": "一般道" + "name": "一般道(2車線未満)", + "terms": "一般道(2車線未満)" }, "historic": { - "name": "歴史的な場所" + "name": "史跡", + "terms": "史跡, 歴史的建造物" }, "historic/archaeological_site": { - "name": "考古遺跡" + "name": "遺跡", + "terms": "遺跡, 貝塚, 古墳" }, "historic/boundary_stone": { - "name": "境界石碑" + "name": "境界石", + "terms": "境界石, 境界杭" }, "historic/castle": { - "name": "城郭" + "name": "城", + "terms": "城, 城郭" }, "historic/memorial": { - "name": "記念碑, プレート" + "name": "記念碑", + "terms": "記念碑" }, "historic/monument": { - "name": "記念碑, モニュメント" + "name": "記念堂", + "terms": "記念堂, 記念建造物" }, "historic/ruins": { - "name": "廃墟" + "name": "廃墟", + "terms": "廃墟" }, "historic/wayside_cross": { - "name": "十字架" + "name": "道路際の十字架", + "terms": "道路際の十字架" }, "historic/wayside_shrine": { - "name": "地蔵, 道祖碑" + "name": "道祖神", + "terms": "道祖神" }, "landuse": { - "name": "土地利用" + "name": "土地利用", + "terms": "土地利用" }, "landuse/allotments": { - "name": "市民菜園" + "name": "市民農園", + "terms": "市民農園, 市民菜園, クラインガルテン" }, "landuse/basin": { - "name": "遊水地" + "name": "遊水地", + "terms": "遊水地" }, "landuse/cemetery": { - "name": "霊園" + "name": "霊園", + "terms": "霊園, 墓地" }, "landuse/commercial": { - "name": "ビジネス街" + "name": "オフィス地区", + "terms": "ビジネス街,オフィス街,オフィス地区" }, "landuse/construction": { - "name": "施設建築中" + "name": "建設用地", + "terms": "工事中用地, 建設用地" }, "landuse/farm": { - "name": "田畑" + "name": "農地(旧)", + "terms": "農地(旧)" }, "landuse/farmland": { - "name": "農園" + "name": "農地", + "terms": "農地" }, "landuse/farmyard": { - "name": "農場" + "name": "農業施設用地", + "terms": "農業施設用地" }, "landuse/forest": { - "name": "森林" + "name": "人工林", + "terms": "人工林, 営林, 保安林, 鉄道林" }, "landuse/grass": { - "name": "草地" + "name": "草地", + "terms": "草地, 芝生" }, "landuse/industrial": { - "name": "工業区" + "name": "工業用地", + "terms": "工業用地" }, "landuse/meadow": { - "name": "牧草地" + "name": "牧草地", + "terms": "牧草地" }, "landuse/orchard": { - "name": "果樹園" + "name": "果樹園", + "terms": "果樹園, 果物畑, リンゴ畑, ミカン畑" }, "landuse/quarry": { - "name": "採掘場" + "name": "露天掘り鉱山", + "terms": "採石場, 石切り場, 露天掘り鉱山" }, "landuse/residential": { - "name": "住宅区" + "name": "住宅地", + "terms": "住宅地, 宅地, 居住区域" }, "landuse/retail": { - "name": "商業区" + "name": "商業地", + "terms": "商業地,ショッピング地区,ショッピング街" }, "landuse/vineyard": { - "name": "ワイン畑" + "name": "ぶどう畑", + "terms": "ぶどう畑" }, "leisure": { - "name": "レジャー" + "name": "レジャー", + "terms": "レジャー, 娯楽" + }, + "leisure/common": { + "name": "共通地", + "terms": "共有地, コモンズ" }, "leisure/dog_park": { - "name": "公園 (飼い犬用)" + "name": "ドッグパーク", + "terms": "ドッグパーク, ドッグラン" }, "leisure/garden": { - "name": "庭園" + "name": "庭園", + "terms": "庭園" }, "leisure/golf_course": { - "name": "ゴルフ場" + "name": "ゴルフコース", + "terms": "ゴルフコース" }, "leisure/marina": { - "name": "停泊所" + "name": "マリーナ", + "terms": "マリーナ, ヨットハーバー" }, "leisure/park": { - "name": "公園" + "name": "公園", + "terms": "公園" }, "leisure/pitch": { - "name": "運動場" + "name": "スポーツ競技場", + "terms": "スポーツ競技場, 運動場" }, "leisure/pitch/american_football": { - "name": "アメフト競技場" + "name": "アメリカンフットボール場", + "terms": "アメリカンフットボール場, アメフト競技場" }, "leisure/pitch/baseball": { - "name": "野球場" + "name": "野球場", + "terms": "野球場" }, "leisure/pitch/basketball": { - "name": "バスケットボール・コート" + "name": "バスケットボール場", + "terms": "バスケットボール場" }, "leisure/pitch/skateboard": { - "name": "スケート広場" + "name": "スケートパーク", + "terms": "スケートパーク" }, "leisure/pitch/soccer": { - "name": "サッカー場" + "name": "サッカー場", + "terms": "サッカー場" }, "leisure/pitch/tennis": { - "name": "テニスコート" + "name": "テニスコート", + "terms": "テニスコート, テニス場, 庭球場" }, "leisure/pitch/volleyball": { - "name": "バレーボールコート" + "name": "バレーボールコート", + "terms": "バレーボールコート" }, "leisure/playground": { - "name": "児童公園" + "name": "児童公園", + "terms": "児童公園, 遊び場" }, "leisure/slipway": { - "name": "進水所" + "name": "進水路", + "terms": "進水路, スリップウェイ" }, "leisure/sports_center": { - "name": "スポーツセンター" + "name": "スポーツセンター", + "terms": "スポーツセンター" }, "leisure/stadium": { - "name": "スタジアム" + "name": "スタジアム", + "terms": "スタジアム, 競技場" }, "leisure/swimming_pool": { - "name": "プール" + "name": "遊泳プール", + "terms": "遊泳プール" }, "leisure/track": { - "name": "競技場" + "name": "競技トラック", + "terms": "競技トラック" }, "line": { - "name": "ライン" + "name": "線", + "terms": "線, ライン" }, "man_made": { - "name": "人工物" + "name": "人工物", + "terms": "人工物" }, "man_made/breakwater": { - "name": "防波堤" + "name": "防波堤", + "terms": "防波堤" }, "man_made/cutline": { - "name": "森林カットライン" + "name": "森林の切れ目", + "terms": "森林の切れ目, カットライン" }, "man_made/embankment": { - "name": "土堤" + "name": "土手", + "terms": "土手" }, "man_made/flagpole": { - "name": "掲揚柱" + "name": "旗竿", + "terms": "旗竿" }, "man_made/lighthouse": { - "name": "灯台" + "name": "灯台", + "terms": "灯台, ライトハウス" }, "man_made/observation": { - "name": "監視塔" + "name": "監視塔", + "terms": "監視塔" }, "man_made/pier": { - "name": "桟橋" + "name": "桟橋", + "terms": "桟橋" }, "man_made/pipeline": { - "name": "パイプライン" + "name": "パイプライン", + "terms": "パイプライン" }, "man_made/survey_point": { - "name": "調査・観測地点" + "name": "観測設備", + "terms": "観測設備, 観測地点, 測候所" }, "man_made/tower": { - "name": "塔" + "name": "塔", + "terms": "塔, タワー" }, "man_made/wastewater_plant": { - "name": "下水処理施設" + "name": "下水処理場", + "terms": "下水処理場" }, "man_made/water_tower": { - "name": "給水塔" + "name": "給水塔", + "terms": "給水塔" }, "man_made/water_well": { - "name": "井戸" + "name": "井戸", + "terms": "井戸" }, "man_made/water_works": { - "name": "上下水施設" + "name": "浄水場", + "terms": "浄水場" + }, + "military/airfield": { + "name": "軍用飛行場", + "terms": "軍用飛行場, 航空基地" + }, + "military/barracks": { + "name": "兵舎", + "terms": "兵舎,兵営" }, "military/bunker": { - "name": "バンカー" + "name": "バンカー", + "terms": "掩蔽壕,観測室,バンカー" }, "military/range": { - "name": "軍事用地" + "name": "軍事演習場", + "terms": "軍事演習場" }, "natural": { - "name": "自然物" + "name": "自然", + "terms": "自然" }, "natural/bay": { - "name": "港湾" + "name": "湾", + "terms": "湾" }, "natural/beach": { - "name": "浜辺, ビーチ" + "name": "砂浜", + "terms": "砂浜, ビーチ" }, "natural/cliff": { - "name": "崖" + "name": "崖", + "terms": "崖, 断崖" }, "natural/coastline": { - "name": "海岸線" + "name": "海岸線", + "terms": "海岸線" }, "natural/fell": { - "name": "がれ場" + "name": "高原", + "terms": "高原" }, "natural/glacier": { - "name": "氷河, 凍土" + "name": "氷河", + "terms": "氷河" }, "natural/grassland": { - "name": "草地" + "name": "草原", + "terms": "草地, 草原" }, "natural/heath": { - "name": "低木地" + "name": "荒地", + "terms": "荒地" }, "natural/peak": { - "name": "山頂" + "name": "山頂", + "terms": "山頂, 頂" }, "natural/scree": { - "name": "がれ場" + "name": "ガレ場", + "terms": "ガレ場" }, "natural/scrub": { - "name": "茂み" + "name": "低木", + "terms": "低木, 茂み" }, "natural/spring": { - "name": "湧水" + "name": "泉", + "terms": "泉, 湧水" }, "natural/tree": { - "name": "樹木" + "name": "樹木・林", + "terms": "樹木, 林" }, "natural/water": { - "name": "水域" + "name": "水域", + "terms": "水域" }, "natural/water/lake": { - "name": "湖" + "name": "湖", + "terms": "湖" }, "natural/water/pond": { - "name": "池" + "name": "池", + "terms": "池" }, "natural/water/reservoir": { - "name": "貯水池" + "name": "貯水池", + "terms": "貯水池" }, "natural/wetland": { - "name": "湿地" + "name": "湿地帯", + "terms": "湿地帯" }, "natural/wood": { - "name": "自然林" + "name": "自然林", + "terms": "自然林, 原生林" }, "office": { - "name": "オフィス" + "name": "オフィス", + "terms": "オフィス" }, "office/accountant": { - "name": "会計士" + "name": "会計事務所", + "terms": "会計事務所, 会計士" }, "office/administrative": { - "name": "市町村役所" + "name": "地方行政事務所", + "terms": "地方行政事務所" }, "office/architect": { - "name": "建築家" + "name": "建築事務所", + "terms": "建築事務所, 建設事務所" }, "office/company": { - "name": "会社事務所" + "name": "会社事務所", + "terms": "会社事務所, 営業所" }, "office/educational_institution": { - "name": "教育機関" + "name": "教育機関事務所", + "terms": "教育機関事務所" }, "office/employment_agency": { - "name": "人材紹介" + "name": "職業安定所", + "terms": "職業安定所, ハローワーク" }, "office/estate_agent": { - "name": "不動産屋" + "name": "不動産代理店", + "terms": "不動産代理店" }, "office/financial": { - "name": "経理事務所" + "name": "会計事務所", + "terms": "会計事務所" }, "office/government": { - "name": "役所" + "name": "行政機関事務所", + "terms": "行政機関事務所" }, "office/insurance": { - "name": "保健屋" + "name": "保険代理店", + "terms": "保険代理店" }, "office/it": { - "name": "ITオフィス" + "name": "IT事務所", + "terms": "IT事務所, システムベンダー" }, "office/lawyer": { - "name": "法律事務所" + "name": "法律事務所", + "terms": "法律事務所" }, "office/newspaper": { - "name": "新聞屋" + "name": "新聞社", + "terms": "新聞社" }, "office/ngo": { - "name": "NGO事務所" + "name": "NGO事務所", + "terms": "NGO事務所" }, "office/physician": { - "name": "医者" + "name": "医者", + "terms": "医者" }, "office/political_party": { - "name": "政党事務所" + "name": "政党事務所", + "terms": "政党事務所" }, "office/research": { - "name": "研究所" + "name": "研究所", + "terms": "研究所" }, "office/telecommunication": { - "name": "通信事業者" + "name": "通信会社事務所", + "terms": "通信会社事務所" }, "office/therapist": { - "name": "心療内科" + "name": "セラピスト", + "terms": "セラピスト" }, "office/travel_agent": { - "name": "旅行代理店" + "name": "旅行代理店", + "terms": "旅行代理店,トラベル,ツアー" + }, + "piste": { + "name": "ゲレンデ/スキー路", + "terms": "ゲレンデ,スキーコース" }, "place": { - "name": "地名" + "name": "地名", + "terms": "地名, 市名, 区名, 町名, 村名" }, "place/city": { - "name": "都市名称" + "name": "市名", + "terms": "市名" }, "place/hamlet": { - "name": "Hamlet" + "name": "集落", + "terms": "集落" }, "place/island": { - "name": "島" + "name": "島", + "terms": "島" }, "place/isolated_dwelling": { - "name": "街区外居住地" + "name": "一軒家, 街区外居住地", + "terms": "一軒家" }, "place/locality": { - "name": "Locality" + "name": "地形名", + "terms": "地形名" }, "place/town": { - "name": "町" + "name": "町", + "terms": "町" }, "place/village": { - "name": "村" + "name": "村", + "terms": "村" }, "point": { - "name": "ポイント" + "name": "ポイント", + "terms": "ポイント" }, "power": { - "name": "電力" + "name": "電力関係", + "terms": "電力関係" }, "power/generator": { - "name": "発電所" + "name": "発電機", + "terms": "発電機" }, "power/line": { - "name": "送電線" + "name": "送電線", + "terms": "送電線" }, "power/minor_line": { - "name": "電線" + "name": "配電線", + "terms": "配電線" }, "power/pole": { - "name": "電柱" + "name": "電柱", + "terms": "電柱" }, "power/sub_station": { - "name": "変電所" + "name": "変電所", + "terms": "変電所" }, "power/tower": { - "name": "送電塔" + "name": "送電塔", + "terms": "送電塔" }, "power/transformer": { - "name": "変圧施設" + "name": "変圧器", + "terms": "変圧器" }, "public_transport/platform": { - "name": "プラットフォーム" + "name": "プラットホーム", + "terms": "プラットホーム, ホーム" }, "public_transport/stop_position": { - "name": "停車位置" + "name": "停車位置", + "terms": "停車位置" }, "railway": { - "name": "線路" + "name": "鉄道", + "terms": "鉄道" }, "railway/abandoned": { - "name": "路線跡" + "name": "線路跡", + "terms": "鉄道跡, 線路跡" }, "railway/disused": { - "name": "廃路線" + "name": "休止線路", + "terms": "休止線路" + }, + "railway/funicular": { + "name": "ケーブルカー", + "terms": "ケーブルカー" }, "railway/halt": { - "name": "鉄道車輌停車場" + "name": "信号場", + "terms": "信号場" }, "railway/level_crossing": { - "name": "踏切" + "name": "踏切", + "terms": "踏切" }, "railway/monorail": { - "name": "モノレール" + "name": "モノレール", + "terms": "モノレール" + }, + "railway/narrow_gauge": { + "name": "軽便鉄道", + "terms": "軽便鉄道, ナローゲージ" }, "railway/platform": { - "name": "プラットフォーム" + "name": "プラットホーム(旧)", + "terms": "プラットホーム(旧), ホーム(旧)" }, "railway/rail": { - "name": "線路" + "name": "線路", + "terms": "線路" }, "railway/station": { - "name": "鉄道駅" + "name": "鉄道駅", + "terms": "鉄道駅, 駅" }, "railway/subway": { - "name": "地下鉄" + "name": "地下鉄", + "terms": "地下鉄" }, "railway/subway_entrance": { - "name": "地下鉄入り口" + "name": "地下鉄の出入口", + "terms": "地下鉄の出入口" }, "railway/tram": { - "name": "路面電車" + "name": "路面電車", + "terms": "路面電車" }, "relation": { - "name": "リレーション" + "name": "リレーション", + "terms": "リレーション, 関連" }, "route/ferry": { - "name": "フェリー・ルート" + "name": "フェリールート", + "terms": "フェリールート, 航路" }, "shop": { - "name": "店舗" + "name": "店舗", + "terms": "店舗" }, "shop/alcohol": { - "name": "酒屋" + "name": "酒店", + "terms": "酒店, 酒屋" }, "shop/bakery": { - "name": "パン屋" + "name": "パン屋", + "terms": "パン屋, ベーカリー" }, "shop/beauty": { - "name": "美容品店" + "name": "美容サービス", + "terms": "美容サービス, エステサロン, ネイルサロン" }, "shop/beverages": { - "name": "飲料品店" + "name": "飲料店", + "terms": "飲料店" }, "shop/bicycle": { - "name": "自転車屋" + "name": "自転車店", + "terms": "自転車店" }, "shop/books": { - "name": "本屋" + "name": "書店", + "terms": "書店, 本屋" }, "shop/boutique": { - "name": "ブティック" + "name": "ブティック", + "terms": "ブティック, 婦人服店" }, "shop/butcher": { - "name": "肉屋" + "name": "精肉店", + "terms": "精肉店, 肉屋" }, "shop/car": { - "name": "乗用車販売" + "name": "自動車販売店", + "terms": "自動車販売店, カーディーラー" }, "shop/car_parts": { - "name": "車輌部品, グッズ販売" + "name": "自動車部品店", + "terms": "自動車部品店, カーパーツショップ" }, "shop/car_repair": { - "name": "車輌修理" + "name": "自動車修理工場", + "terms": "自動車修理工場" }, "shop/chemist": { - "name": "化粧品店" + "name": "薬品・化粧品店", + "terms": "薬品店, 化粧品店" }, "shop/clothes": { - "name": "衣料品店" + "name": "衣料品店", + "terms": "衣料品店, 洋服店, 呉服店" }, "shop/computer": { - "name": "コンピュータ店" + "name": "コンピューター店", + "terms": "コンピューター店, パソコン店" }, "shop/confectionery": { - "name": "菓子屋" + "name": "菓子店", + "terms": "菓子店" }, "shop/convenience": { - "name": "コンビニ" + "name": "コンビニエンスストア", + "terms": "コンビニエンスストア, コンビニ" }, "shop/deli": { - "name": "惣菜屋" + "name": "惣菜屋", + "terms": "惣菜屋, 弁当屋" }, "shop/department_store": { - "name": "百貨店" + "name": "百貨店", + "terms": "百貨店, デパート" }, "shop/doityourself": { - "name": "日曜大工用品" + "name": "日曜大工用品店", + "terms": "日曜大工用品店, 工具店, DIYショップ, ホームセンター" }, "shop/dry_cleaning": { - "name": "クリーニング" + "name": "ドライクリーニング店", + "terms": "ドライクリーニング店" }, "shop/electronics": { - "name": "電子部品" + "name": "家電販売店", + "terms": "家電販売店" }, "shop/farm": { - "name": "産地直売" + "name": "農産物直売所", + "terms": "農産物直売所" }, "shop/fishmonger": { - "name": "魚屋" + "name": "魚屋", + "terms": "魚屋" }, "shop/florist": { - "name": "花屋" + "name": "生花店", + "terms": "生花店" }, "shop/furniture": { - "name": "家具用品" + "name": "家具店", + "terms": "家具店, インテリア用品店" }, "shop/garden_centre": { - "name": "ガーデンセンター" + "name": "園芸用品店", + "terms": "園芸用品店, ガーデンセンター" }, "shop/gift": { - "name": "ギフト用品" + "name": "ギフト店", + "terms": "ギフト店, ギフト用品店, 土産店" }, "shop/greengrocer": { - "name": "八百屋" + "name": "八百屋", + "terms": "八百屋, 青果店" }, "shop/hairdresser": { - "name": "床屋, 美容室" + "name": "理美容店", + "terms": "理容店, 床屋, 美容室, 美容院" }, "shop/hardware": { - "name": "金物屋" + "name": "金物屋", + "terms": "金物屋, 金物店" }, "shop/hifi": { - "name": "音響設備" + "name": "音響機器店", + "terms": "音響機器店, オーディオ店" }, "shop/jewelry": { - "name": "宝石店" + "name": "宝石店", + "terms": "宝石店" }, "shop/kiosk": { - "name": "キオスク" + "name": "キオスク", + "terms": "キオスク" }, "shop/laundry": { - "name": "コインランドリー" + "name": "洗濯屋・コインランドリー", + "terms": "洗濯屋, コインランドリー" }, "shop/locksmith": { - "name": "錠前屋" + "name": "錠前屋", + "terms": "錠前屋" }, "shop/mall": { - "name": "ショッピングセンター" + "name": "ショッピングセンター", + "terms": "ショッピングセンター, ショッピングモール, 複合商業施設" }, "shop/mobile_phone": { - "name": "携帯電話" + "name": "携帯電話店", + "terms": "携帯電話店, ケータイショップ" }, "shop/motorcycle": { - "name": "バイク販売" + "name": "バイク店", + "terms": "バイク店, オートバイ店" }, "shop/music": { - "name": "CD/レコード" + "name": "CD/レコード店", + "terms": "CD店, レコード店" }, "shop/newsagent": { - "name": "新聞" + "name": "新聞・雑誌販売店", + "terms": "新聞・雑誌販売店, 新聞販売店, 雑誌販売店" }, "shop/optician": { - "name": "メガネ" + "name": "メガネ", + "terms": "メガネ,眼鏡,メガネ屋,眼鏡屋" }, "shop/outdoor": { - "name": "アウトドア" + "name": "アウトドア", + "terms": "アウトドアショップ" }, "shop/pet": { - "name": "ペットショップ" + "name": "ペットショップ", + "terms": "ペット売り場,ペット,家禽,ペットショップ" }, "shop/photo": { - "name": "写真販売" + "name": "写真屋", + "terms": "写真屋" }, "shop/shoes": { - "name": "靴屋" + "name": "靴店", + "terms": "靴店" }, "shop/sports": { - "name": "スポーツ用品" + "name": "スポーツ用品店", + "terms": "スポーツ用品店" }, "shop/stationery": { - "name": "文具店" + "name": "文具店", + "terms": "文具店" }, "shop/supermarket": { - "name": "スーパーマーケット" + "name": "スーパーマーケット", + "terms": "スーパーマーケット, スーパー" }, "shop/toys": { - "name": "おもちゃ屋" + "name": "玩具店", + "terms": "玩具店, おもちゃ屋" }, "shop/travel_agency": { - "name": "旅行代理店" + "name": "旅行代理店", + "terms": "旅行代理店,トラベル,ツアー" }, "shop/tyres": { - "name": "タイヤ販売" + "name": "タイヤ店", + "terms": "タイヤ店, タイヤ販売店" }, "shop/vacant": { - "name": "未入居店舗" + "name": "空き店舗", + "terms": "空き店舗,未入居店舗" }, "shop/variety_store": { - "name": "雑貨屋" + "name": "雑貨店", + "terms": "雑貨店" }, "shop/video": { - "name": "ビデオ屋" + "name": "ビデオソフト店", + "terms": "ビデオソフト店, DVD店" }, "tourism": { - "name": "観光" + "name": "観光", + "terms": "旅行, 観光" }, "tourism/alpine_hut": { - "name": "山小屋" + "name": "山小屋", + "terms": "山小屋" }, "tourism/artwork": { - "name": "芸術品展示" + "name": "芸術作品", + "terms": "芸術作品" }, "tourism/attraction": { - "name": "観光施設" + "name": "観光名所", + "terms": "観光名所, 見どころ" }, "tourism/camp_site": { - "name": "キャンプ場" + "name": "キャンプ場", + "terms": "キャンプ場" }, "tourism/caravan_site": { - "name": "公園(キャンプカー用)" + "name": "オートキャンプ場", + "terms": "オートキャンプ場" }, "tourism/chalet": { - "name": "コテージ" + "name": "貸別荘", + "terms": "貸別荘, コテージ" }, "tourism/guest_house": { - "name": "民宿" + "name": "民宿", + "terms": "民宿, ゲストハウス" }, "tourism/hostel": { - "name": "共同宿泊" + "name": "簡易宿泊所", + "terms": "簡易宿泊所, ホステル" }, "tourism/hotel": { - "name": "ホテル" + "name": "ホテル", + "terms": "ホテル, 旅館" }, "tourism/information": { - "name": "観光案内" + "name": "観光案内", + "terms": "観光案内" }, "tourism/motel": { - "name": "モーテル" + "name": "モーテル", + "terms": "モーテル" }, "tourism/museum": { - "name": "博物館, 美術館" + "name": "博物館・美術館", + "terms": "博物館, 美術館, 資料館" }, "tourism/picnic_site": { - "name": "ピクニック場" + "name": "ピクニック場", + "terms": "ピクニック場, バーベキュー場" }, "tourism/theme_park": { - "name": "テーマパーク" + "name": "テーマパーク", + "terms": "テーマパーク, 遊園地" }, "tourism/viewpoint": { - "name": "展望台" + "name": "展望台", + "terms": "展望台" }, "tourism/zoo": { - "name": "遊園地" + "name": "動物園", + "terms": "動物園" }, "type/boundary": { - "name": "行政境界" + "name": "境界", + "terms": "境界, 境界線" }, "type/boundary/administrative": { - "name": "行政境界" + "name": "行政境界", + "terms": "行政境界, 都道府県境, 都境, 道境, 府境, 県境, 市区町村境, 市境, 区境, 町境, 村境" }, "type/multipolygon": { - "name": "マルチポリゴン" + "name": "マルチポリゴン", + "terms": "マルチポリゴン" }, "type/restriction": { - "name": "制限" + "name": "進行方向制限", + "terms": "進行方向制限" }, "type/route": { - "name": "ルート" + "name": "ルート", + "terms": "ルート" }, "type/route/bicycle": { - "name": "サイクリングルート" + "name": "サイクリングルート", + "terms": "サイクリングルート, サイクリングコース" }, "type/route/bus": { - "name": "バスルート" + "name": "バスルート", + "terms": "バスルート, バス路線, バス系統" }, "type/route/detour": { - "name": "迂回ルート" + "name": "迂回ルート", + "terms": "迂回ルート" }, "type/route/ferry": { - "name": "フェリールート" + "name": "フェリーのルート", + "terms": "フェリールート, 航路" }, "type/route/foot": { - "name": "歩道ルート" + "name": "徒歩ルート", + "terms": "徒歩ルート" }, "type/route/hiking": { - "name": "ハイキングコース" + "name": "ハイキングルート", + "terms": "ハイキングルート, ハイキングコース" }, "type/route/pipeline": { - "name": "パイプラインルート" + "name": "パイプラインルート", + "terms": "パイプラインルート" }, "type/route/power": { - "name": "電力線ルート" + "name": "電力線ルート", + "terms": "電力線ルート" }, "type/route/road": { - "name": "道路ルート" + "name": "道路ルート", + "terms": "道路ルート" }, "type/route/train": { - "name": "鉄道ルート" + "name": "鉄道ルート", + "terms": "鉄道ルート" }, "type/route/tram": { - "name": "路面電車ルート" + "name": "路面電車系統", + "terms": "路面電車系統" }, "type/route_master": { - "name": "ルートマスター" + "name": "ルートマスター", + "terms": "ルートマスター" }, "vertex": { "name": "その他", "terms": "その他" }, "waterway": { - "name": "水路, 河川" + "name": "水路", + "terms": "水路" }, "waterway/canal": { "name": "運河", @@ -1879,23 +2633,28 @@ "terms": "ダム" }, "waterway/ditch": { - "name": "堀, 用水路" + "name": "排水路", + "terms": "排水路" }, "waterway/drain": { - "name": "排水路" + "name": "放水路", + "terms": "放水路" }, "waterway/river": { "name": "河川", "terms": "川,河川" }, "waterway/riverbank": { - "name": "河川流域" + "name": "河岸", + "terms": "河岸" }, "waterway/stream": { - "name": "小川" + "name": "小川", + "terms": "小川,せせらぎ" }, "waterway/weir": { - "name": "堰" + "name": "堰", + "terms": "堰" } } } diff --git a/vendor/assets/iD/iD/locales/kn.json b/vendor/assets/iD/iD/locales/kn.json new file mode 100644 index 000000000..b8d30a1ed --- /dev/null +++ b/vendor/assets/iD/iD/locales/kn.json @@ -0,0 +1,54 @@ +{ + "modes": { + "add_area": { + "title": "ಪ್ರದೇಶ" + }, + "add_point": { + "title": "ಬಿಂದು" + } + }, + "help": { + "title": "ಸಹಾಯ" + }, + "presets": { + "fields": { + "address": { + "placeholders": { + "city": "ನಗರ" + } + }, + "atm": { + "label": "ATM" + }, + "religion": { + "options": { + "christian": "ಕ್ರೈಸ್ತ", + "hindu": "ಹಿಂದು" + } + }, + "source": { + "label": "ಮೂಲ" + } + }, + "presets": { + "amenity/bank": { + "name": "ಬ್ಯಾಂಕ್" + }, + "amenity/cinema": { + "name": "ಸಿನಿಮಾ" + }, + "amenity/hospital": { + "name": "ಆಸ್ಪತ್ರೆ" + }, + "amenity/library": { + "name": "ಗ್ರಂಥಾಲಯ" + }, + "amenity/school": { + "name": "ಶಾಲೆ" + }, + "highway/bus_stop": { + "name": "ಬಸ್ ನಿಲ್ದಾಣ" + } + } + } +} \ No newline at end of file diff --git a/vendor/assets/iD/iD/locales/ko.json b/vendor/assets/iD/iD/locales/ko.json index c288a0b77..45bf2d67b 100644 --- a/vendor/assets/iD/iD/locales/ko.json +++ b/vendor/assets/iD/iD/locales/ko.json @@ -252,7 +252,11 @@ "incomplete": "<다운로드되지 않음>", "feature_list": "기능 검색", "edit": "기능 편집", - "none": "없음" + "none": "없음", + "node": "노드", + "way": "길", + "relation": "관계", + "location": "위치" }, "background": { "title": "배경", @@ -312,6 +316,7 @@ "untagged_area": "태그되지 않은 지역", "many_deletions": "개체 {n}개를 삭제하고 있습니다. 이를 수행하겠습니까? 다른 사람이 openstreetmap.org에서 보는 지도에서 삭제됩니다.", "tag_suggests_area": "{tag} 태그 제안 선은 지역이여야 하지만 태그는 지역이 아닙니다", + "untagged_tooltip": "이 {geometry}가 무엇인지 설명하는 기능 유형을 선택하세요.", "deprecated_tags": "사용되지 않는 태그: {tags}" }, "zoom": { @@ -391,6 +396,9 @@ "category-building": { "name": "건물" }, + "category-golf": { + "name": "골프" + }, "category-landuse": { "name": "토지 이용" }, @@ -569,6 +577,10 @@ "generator/type": { "label": "유형" }, + "golf_hole": { + "label": "참고", + "placeholder": "홀 수 (1-18)" + }, "highway": { "label": "유형" }, @@ -584,6 +596,9 @@ "incline": { "label": "경사" }, + "information": { + "label": "유형" + }, "internet_access": { "label": "인터넷 액세스", "options": { @@ -650,6 +665,9 @@ "operator": { "label": "운영자" }, + "par": { + "placeholder": "3, 4, 5..." + }, "park_ride": { "label": "파크 앤드 라이드" }, @@ -935,6 +953,9 @@ "name": "관리소", "terms": "레인저 스테이션" }, + "amenity/recycling": { + "name": "재활용" + }, "amenity/restaurant": { "name": "음식점" }, @@ -1079,6 +1100,32 @@ "footway/sidewalk": { "name": "보도" }, + "golf/bunker": { + "name": "샌드 트랩", + "terms": "모래 함정" + }, + "golf/fairway": { + "name": "페어웨이" + }, + "golf/green": { + "name": "퍼팅 그린" + }, + "golf/hole": { + "name": "골프 홀", + "terms": "골프 구멍" + }, + "golf/lateral_water_hazard": { + "name": "래터럴 워터 해저드" + }, + "golf/rough": { + "name": "러프" + }, + "golf/tee": { + "name": "티 박스" + }, + "golf/water_hazard": { + "name": "워터 해저드" + }, "highway": { "name": "고속도로" }, diff --git a/vendor/assets/iD/iD/locales/lv.json b/vendor/assets/iD/iD/locales/lv.json index 1a6d367d7..75381511a 100644 --- a/vendor/assets/iD/iD/locales/lv.json +++ b/vendor/assets/iD/iD/locales/lv.json @@ -59,6 +59,7 @@ "not_closed": "Šo objektu nevar pārveidot par apļveida, jo tas nav pabeigts." }, "orthogonalize": { + "title": "Kvadrāts", "annotation": { "line": "Līnijas leņķi pārvedoti par taisnleņķiem.", "area": "Apgabala leņķi pārvedoti par taisnleņķiem." @@ -140,16 +141,25 @@ } }, "undo": { + "tooltip": "Atcelt: {action}", "nothing": "Nav nekā, ko atcelt" }, "redo": { + "tooltip": "Atgriezt: {action}", "nothing": "Nav nekā, ko atsaukt" }, "browser_notice": "Šis redaktors tiek atbalstīts ar Firefox, Chrome, Safari, Opera, un Internet Explorer 9 un jaunāku. Lūdzu, atjauniniet savu pārlūkprogrammu vai izmantojiet Potlatch 2 kartes rediģēšanai", + "translate": { + "translate": "Tulkot", + "localized_translation_language": "Izvelties valodu" + }, "zoom_in_edit": "Pietuvināt, lai labotu", "logout": "atslēgties", "loading_auth": "Savienojas ar OpenStreetMap...", "report_a_bug": "ziņot par kļūdu", + "status": { + "error": "Nevarēja savienoties ar API." + }, "commit": { "title": "Saglabāt izmaiņas", "description_placeholder": "Īss apraksts par jūsu ieguldījumu", @@ -174,6 +184,7 @@ "choose": "Izvēlieties objekta tipu", "results": "Atrasti {n} rezultāti meklējot {search}", "reference": "Skatīt OpenStreetMap wiki →", + "remove": "Noņemt ", "search": "Meklēt", "unknown": "Nezināms", "incomplete": "