// Up Arrow Key, or ↓
'↓': 40, down: 40, 'arrow-down': 40,
// odities, printing characters that come out wrong:
+ // Firefox Equals
+ 'ffequals': 61,
// Num-Multiply, or *
'*': 106, star: 106, asterisk: 106, multiply: 106,
// Num-Plus or +
'+': 107, 'plus': 107,
// Num-Subtract, or -
'-': 109, subtract: 109,
+ // Firefox Minus
+ 'ffplus': 171,
+ // Firefox Minus
+ 'ffminus': 173,
// Semicolon
- ';': 186, semicolon:186,
+ ';': 186, semicolon: 186,
// = or equals
'=': 187, 'equals': 187,
// Comma, or ,
function rbush(maxEntries, format) {
// jshint newcap: false, validthis: true
- if (!(this instanceof rbush)) { return new rbush(maxEntries, format); }
+ if (!(this instanceof rbush)) return new rbush(maxEntries, format);
// max entries in a node is 9 by default; min node fill is 40% for best performance
this._maxEntries = Math.max(4, maxEntries || 9);
search: function (bbox) {
var node = this.data,
- result = [];
+ result = [],
+ toBBox = this.toBBox;
- if (!this._intersects(bbox, node.bbox)) { return result; }
+ if (!intersects(bbox, node.bbox)) return result;
var nodesToSearch = [],
i, len, child, childBBox;
while (node) {
for (i = 0, len = node.children.length; i < len; i++) {
- child = node.children[i];
- childBBox = node.leaf ? this.toBBox(child) : child.bbox;
-
- if (this._intersects(bbox, childBBox)) {
-
- if (node.leaf) {
- result.push(child);
- } else if (this._contains(bbox, childBBox)) {
- this._all(child, result);
+ child = node.children[i];
+ childBBox = node.leaf ? toBBox(child) : child.bbox;
- } else {
- nodesToSearch.push(child);
- }
+ if (intersects(bbox, childBBox)) {
+ if (node.leaf) result.push(child);
+ else if (contains(bbox, childBBox)) this._all(child, result);
+ else nodesToSearch.push(child);
}
}
-
node = nodesToSearch.pop();
}
},
load: function (data) {
- if (!(data && data.length)) { return this; }
+ if (!(data && data.length)) return this;
if (data.length < this._minEntries) {
for (var i = 0, len = data.length; i < len; i++) {
}
// recursively build the tree with the given data from stratch using OMT algorithm
- var node = this._build(data.slice(), 0);
+ var node = this._build(data.slice(), 0, data.length - 1, 0);
if (!this.data.children.length) {
// save as is if tree is empty
},
insert: function (item) {
- if (item) {
- this._insert(item, this.data.height - 1);
- }
+ if (item) this._insert(item, this.data.height - 1);
return this;
},
clear: function () {
this.data = {
children: [],
- leaf: true,
- bbox: this._empty(),
- height: 1
+ height: 1,
+ bbox: empty(),
+ leaf: true
};
return this;
},
remove: function (item) {
- if (!item) { return this; }
+ if (!item) return this;
var node = this.data,
bbox = this.toBBox(item),
}
}
- if (!goingUp && !node.leaf && this._intersects(bbox, node.bbox)) { // go down
+ if (!goingUp && !node.leaf && contains(node.bbox, bbox)) { // go down
path.push(node);
indexes.push(i);
i = 0;
node = parent.children[i];
goingUp = false;
- } else { // nothing found
- node = null;
- }
+ } else node = null; // nothing found
}
return this;
_all: function (node, result) {
var nodesToSearch = [];
while (node) {
- if (node.leaf) {
- result.push.apply(result, node.children);
- } else {
- nodesToSearch.push.apply(nodesToSearch, node.children);
- }
+ if (node.leaf) result.push.apply(result, node.children);
+ else nodesToSearch.push.apply(nodesToSearch, node.children);
+
node = nodesToSearch.pop();
}
return result;
},
- _build: function (items, level, height) {
+ _build: function (items, left, right, level, height) {
- var N = items.length,
+ var N = right - left + 1,
M = this._maxEntries,
node;
if (N <= M) {
node = {
- children: items,
- leaf: true,
- height: 1
+ children: items.slice(left, right + 1),
+ height: 1,
+ bbox: null,
+ leaf: true
};
- this._calcBBox(node);
+ calcBBox(node, this.toBBox);
return node;
}
// target number of root entries to maximize storage utilization
M = Math.ceil(N / Math.pow(M, height - 1));
-
- items.sort(this.compareMinX);
}
// TODO eliminate recursion?
node = {
children: [],
- height: height
+ height: height,
+ bbox: null
};
- var N1 = Math.ceil(N / M) * Math.ceil(Math.sqrt(M)),
- N2 = Math.ceil(N / M),
- compare = level % 2 === 1 ? this.compareMinX : this.compareMinY,
- i, j, slice, sliceLen, childNode;
+ var N2 = Math.ceil(N / M),
+ N1 = N2 * Math.ceil(Math.sqrt(M)),
+ i, j, right2, childNode;
// split the items into M mostly square tiles
- for (i = 0; i < N; i += N1) {
- slice = items.slice(i, i + N1).sort(compare);
+ for (i = left; i <= right; i += N1) {
+
+ if (i + N1 <= right) partitionSort(items, i, right, i + N1, this.compareMinX);
+ right2 = Math.min(i + N1 - 1, right);
+
+ for (j = i; j <= right2; j += N2) {
+
+ if (j + N2 <= right2) partitionSort(items, j, right2, j + N2, this.compareMinY);
- for (j = 0, sliceLen = slice.length; j < sliceLen; j += N2) {
// pack each entry recursively
- childNode = this._build(slice.slice(j, j + N2), level + 1, height - 1);
+ childNode = this._build(items, j, Math.min(j + N2 - 1, right2), level + 1, height - 1);
node.children.push(childNode);
}
}
- this._calcBBox(node);
+ calcBBox(node, this.toBBox);
return node;
},
while (true) {
path.push(node);
- if (node.leaf || path.length - 1 === level) { break; }
+ if (node.leaf || path.length - 1 === level) break;
minArea = minEnlargement = Infinity;
for (i = 0, len = node.children.length; i < len; i++) {
child = node.children[i];
- area = this._area(child.bbox);
- enlargement = this._enlargedArea(bbox, child.bbox) - area;
+ area = bboxArea(child.bbox);
+ enlargement = enlargedArea(bbox, child.bbox) - area;
// choose entry with the least area enlargement
if (enlargement < minEnlargement) {
return node;
},
- _insert: function (item, level, isNode, root) {
+ _insert: function (item, level, isNode) {
- var bbox = isNode ? item.bbox : this.toBBox(item),
+ var toBBox = this.toBBox,
+ bbox = isNode ? item.bbox : toBBox(item),
insertPath = [];
// find the best node for accommodating the item, saving all nodes along the path too
- var node = this._chooseSubtree(bbox, root || this.data, level, insertPath),
- splitOccured;
+ var node = this._chooseSubtree(bbox, this.data, level, insertPath);
// put the item into the node
node.children.push(item);
- this._extend(node.bbox, bbox);
+ extend(node.bbox, bbox);
// split on node overflow; propagate upwards if necessary
- do {
- splitOccured = false;
+ while (level >= 0) {
if (insertPath[level].children.length > this._maxEntries) {
this._split(insertPath, level);
- splitOccured = true;
level--;
- }
- } while (level >= 0 && splitOccured);
+ } else break;
+ }
// adjust bboxes along the insertion path
this._adjustParentBBoxes(bbox, insertPath, level);
height: node.height
};
- if (node.leaf) {
- newNode.leaf = true;
- }
+ if (node.leaf) newNode.leaf = true;
- this._calcBBox(node);
- this._calcBBox(newNode);
+ calcBBox(node, this.toBBox);
+ calcBBox(newNode, this.toBBox);
- if (level) {
- insertPath[level - 1].children.push(newNode);
- } else {
- this._splitRoot(node, newNode);
- }
+ if (level) insertPath[level - 1].children.push(newNode);
+ else this._splitRoot(node, newNode);
},
_splitRoot: function (node, newNode) {
// split root node
- this.data = {};
- this.data.children = [node, newNode];
- this.data.height = node.height + 1;
- this._calcBBox(this.data);
+ this.data = {
+ children: [node, newNode],
+ height: node.height + 1
+ };
+ calcBBox(this.data, this.toBBox);
},
_chooseSplitIndex: function (node, m, M) {
minOverlap = minArea = Infinity;
for (i = m; i <= M - m; i++) {
- bbox1 = this._distBBox(node, 0, i);
- bbox2 = this._distBBox(node, i, M);
+ bbox1 = distBBox(node, 0, i, this.toBBox);
+ bbox2 = distBBox(node, i, M, this.toBBox);
- overlap = this._intersectionArea(bbox1, bbox2);
- area = this._area(bbox1) + this._area(bbox2);
+ overlap = intersectionArea(bbox1, bbox2);
+ area = bboxArea(bbox1) + bboxArea(bbox2);
// choose distribution with minimum overlap
if (overlap < minOverlap) {
// sorts node children by the best axis for split
_chooseSplitAxis: function (node, m, M) {
- var compareMinX = node.leaf ? this.compareMinX : this._compareNodeMinX,
- compareMinY = node.leaf ? this.compareMinY : this._compareNodeMinY,
+ var compareMinX = node.leaf ? this.compareMinX : compareNodeMinX,
+ compareMinY = node.leaf ? this.compareMinY : compareNodeMinY,
xMargin = this._allDistMargin(node, m, M, compareMinX),
yMargin = this._allDistMargin(node, m, M, compareMinY);
// if total distributions margin value is minimal for x, sort by minX,
// otherwise it's already sorted by minY
-
- if (xMargin < yMargin) {
- node.children.sort(compareMinX);
- }
+ if (xMargin < yMargin) node.children.sort(compareMinX);
},
// total margin of all possible split distributions where each node is at least m full
node.children.sort(compare);
- var leftBBox = this._distBBox(node, 0, m),
- rightBBox = this._distBBox(node, M - m, M),
- margin = this._margin(leftBBox) + this._margin(rightBBox),
+ var toBBox = this.toBBox,
+ leftBBox = distBBox(node, 0, m, toBBox),
+ rightBBox = distBBox(node, M - m, M, toBBox),
+ margin = bboxMargin(leftBBox) + bboxMargin(rightBBox),
i, child;
for (i = m; i < M - m; i++) {
child = node.children[i];
- this._extend(leftBBox, node.leaf ? this.toBBox(child) : child.bbox);
- margin += this._margin(leftBBox);
+ extend(leftBBox, node.leaf ? toBBox(child) : child.bbox);
+ margin += bboxMargin(leftBBox);
}
- for (i = M - m - 1; i >= 0; i--) {
+ for (i = M - m - 1; i >= m; i--) {
child = node.children[i];
- this._extend(rightBBox, node.leaf ? this.toBBox(child) : child.bbox);
- margin += this._margin(rightBBox);
+ extend(rightBBox, node.leaf ? toBBox(child) : child.bbox);
+ margin += bboxMargin(rightBBox);
}
return margin;
},
- // min bounding rectangle of node children from k to p-1
- _distBBox: function (node, k, p) {
- var bbox = this._empty();
-
- for (var i = k, child; i < p; i++) {
- child = node.children[i];
- this._extend(bbox, node.leaf ? this.toBBox(child) : child.bbox);
- }
-
- return bbox;
- },
-
- // calculate node's bbox from bboxes of its children
- _calcBBox: function (node) {
- node.bbox = this._empty();
-
- for (var i = 0, len = node.children.length, child; i < len; i++) {
- child = node.children[i];
- this._extend(node.bbox, node.leaf ? this.toBBox(child) : child.bbox);
- }
- },
-
_adjustParentBBoxes: function (bbox, path, level) {
// adjust bboxes along the given tree path
for (var i = level; i >= 0; i--) {
- this._extend(path[i].bbox, bbox);
+ extend(path[i].bbox, bbox);
}
},
_condense: function (path) {
// go through the path, removing empty nodes and updating bboxes
- for (var i = path.length - 1, parent; i >= 0; i--) {
+ for (var i = path.length - 1, siblings; i >= 0; i--) {
if (path[i].children.length === 0) {
if (i > 0) {
- parent = path[i - 1].children;
- parent.splice(parent.indexOf(path[i]), 1);
- } else {
- this.clear();
- }
- } else {
- this._calcBBox(path[i]);
- }
- }
- },
+ siblings = path[i - 1].children;
+ siblings.splice(siblings.indexOf(path[i]), 1);
- _contains: function(a, b) {
- return a[0] <= b[0] &&
- a[1] <= b[1] &&
- b[2] <= a[2] &&
- b[3] <= a[3];
- },
+ } else this.clear();
- _intersects: function (a, b) {
- return b[0] <= a[2] &&
- b[1] <= a[3] &&
- b[2] >= a[0] &&
- b[3] >= a[1];
- },
-
- _extend: function (a, b) {
- a[0] = Math.min(a[0], b[0]);
- a[1] = Math.min(a[1], b[1]);
- a[2] = Math.max(a[2], b[2]);
- a[3] = Math.max(a[3], b[3]);
- return a;
- },
-
- _area: function (a) { return (a[2] - a[0]) * (a[3] - a[1]); },
- _margin: function (a) { return (a[2] - a[0]) + (a[3] - a[1]); },
-
- _enlargedArea: function (a, b) {
- return (Math.max(b[2], a[2]) - Math.min(b[0], a[0])) *
- (Math.max(b[3], a[3]) - Math.min(b[1], a[1]));
- },
-
- _intersectionArea: function (a, b) {
- var minX = Math.max(a[0], b[0]),
- minY = Math.max(a[1], b[1]),
- maxX = Math.min(a[2], b[2]),
- maxY = Math.min(a[3], b[3]);
-
- return Math.max(0, maxX - minX) *
- Math.max(0, maxY - minY);
+ } else calcBBox(path[i], this.toBBox);
+ }
},
- _empty: function () { return [Infinity, Infinity, -Infinity, -Infinity]; },
-
- _compareNodeMinX: function (a, b) { return a.bbox[0] - b.bbox[0]; },
- _compareNodeMinY: function (a, b) { return a.bbox[1] - b.bbox[1]; },
-
_initFormat: function (format) {
// data format (minX, minY, maxX, maxY accessors)
}
};
-if (typeof define === 'function' && define.amd) {
- define(function() {
- return rbush;
- });
-} else if (typeof module !== 'undefined') {
- module.exports = rbush;
-} else if (typeof self !== 'undefined') {
- self.rbush = rbush;
-} else {
- window.rbush = rbush;
+// calculate node's bbox from bboxes of its children
+function calcBBox(node, toBBox) {
+ node.bbox = distBBox(node, 0, node.children.length, toBBox);
}
-})();
-(function(e){if("function"==typeof bootstrap)bootstrap("sexagesimal",e);else if("object"==typeof exports)module.exports=e();else if("function"==typeof define&&define.amd)define(e);else if("undefined"!=typeof ses){if(!ses.ok())return;ses.makeSexagesimal=e}else"undefined"!=typeof window?window.sexagesimal=e():global.sexagesimal=e()})(function(){var define,ses,bootstrap,module,exports;
+// min bounding rectangle of node children from k to p-1
+function distBBox(node, k, p, toBBox) {
+ var bbox = empty();
+
+ for (var i = k, child; i < p; i++) {
+ child = node.children[i];
+ extend(bbox, node.leaf ? toBBox(child) : child.bbox);
+ }
+
+ return bbox;
+}
+
+
+function empty() { return [Infinity, Infinity, -Infinity, -Infinity]; }
+
+function extend(a, b) {
+ a[0] = Math.min(a[0], b[0]);
+ a[1] = Math.min(a[1], b[1]);
+ a[2] = Math.max(a[2], b[2]);
+ a[3] = Math.max(a[3], b[3]);
+ return a;
+}
+
+function compareNodeMinX(a, b) { return a.bbox[0] - b.bbox[0]; }
+function compareNodeMinY(a, b) { return a.bbox[1] - b.bbox[1]; }
+
+function bboxArea(a) { return (a[2] - a[0]) * (a[3] - a[1]); }
+function bboxMargin(a) { return (a[2] - a[0]) + (a[3] - a[1]); }
+
+function enlargedArea(a, b) {
+ return (Math.max(b[2], a[2]) - Math.min(b[0], a[0])) *
+ (Math.max(b[3], a[3]) - Math.min(b[1], a[1]));
+}
+
+function intersectionArea (a, b) {
+ var minX = Math.max(a[0], b[0]),
+ minY = Math.max(a[1], b[1]),
+ maxX = Math.min(a[2], b[2]),
+ maxY = Math.min(a[3], b[3]);
+
+ return Math.max(0, maxX - minX) *
+ Math.max(0, maxY - minY);
+}
+
+function contains(a, b) {
+ return a[0] <= b[0] &&
+ a[1] <= b[1] &&
+ b[2] <= a[2] &&
+ b[3] <= a[3];
+}
+
+function intersects (a, b) {
+ return b[0] <= a[2] &&
+ b[1] <= a[3] &&
+ b[2] >= a[0] &&
+ b[3] >= a[1];
+}
+
+
+function partitionSort(arr, left, right, k, compare) {
+ var pivot;
+
+ while (true) {
+ pivot = Math.floor((left + right) / 2);
+ pivot = partition(arr, left, right, pivot, compare);
+
+ if (k === pivot) break;
+ else if (k < pivot) right = pivot - 1;
+ else left = pivot + 1;
+ }
+
+ partition(arr, left, right, k, compare);
+}
+
+function partition(arr, left, right, pivot, compare) {
+ var k = left,
+ value = arr[pivot];
+
+ swap(arr, pivot, right);
+
+ for (var i = left; i < right; i++) {
+ if (compare(arr[i], value) < 0) {
+ swap(arr, k, i);
+ k++;
+ }
+ }
+ swap(arr, right, k);
+
+ return k;
+}
+
+function swap(arr, i, j) {
+ var tmp = arr[i];
+ arr[i] = arr[j];
+ arr[j] = tmp;
+}
+
+
+// export as AMD/CommonJS module or global variable
+if (typeof define === 'function' && define.amd) define(function() { return rbush; });
+else if (typeof module !== 'undefined') module.exports = rbush;
+else if (typeof self !== 'undefined') self.rbush = rbush;
+else window.rbush = rbush;
+
+})();(function(e){if("function"==typeof bootstrap)bootstrap("sexagesimal",e);else if("object"==typeof exports)module.exports=e();else if("function"==typeof define&&define.amd)define(e);else if("undefined"!=typeof ses){if(!ses.ok())return;ses.makeSexagesimal=e}else"undefined"!=typeof window?window.sexagesimal=e():global.sexagesimal=e()})(function(){var define,ses,bootstrap,module,exports;
return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
module.exports = element;
module.exports.pair = pair;
}
};
+ /* Accessor for setting minimum zoom for editing features. */
+
+ var minEditableZoom = 16;
+ context.minEditableZoom = function(_) {
+ if (!arguments.length) return minEditableZoom;
+ minEditableZoom = _;
+ connection.tileZoom(_);
+ return context;
+ };
+
var history = iD.History(context),
dispatch = d3.dispatch('enter', 'exit'),
mode,
context.flush = function() {
connection.flush();
+ features.reset();
history.reset();
return context;
};
});
};
- context.editable = function() {
- return map.editable() && mode && mode.id !== 'save';
- };
/* Behaviors */
context.install = function(behavior) {
context.surface().call(behavior.off);
};
+ /* Copy/Paste */
+ var copiedIDs = [];
+ context.copiedIDs = function(_) {
+ if (!arguments.length) return copiedIDs;
+ copiedIDs = _;
+ return context;
+ };
+
/* Projection */
context.projection = iD.geo.RawMercator();
var background = iD.Background(context);
context.background = function() { return background; };
+ /* Features */
+ var features = iD.Features(context);
+ context.features = function() { return features; };
+ context.hasHiddenConnections = function(id) {
+ var graph = history.graph(),
+ entity = graph.entity(id);
+ return features.hasHiddenConnections(entity, graph);
+ };
+
/* Map */
var map = iD.Map(context);
context.map = function() { return map; };
context.layers = function() { return map.layers; };
context.surface = function() { return map.surface; };
+ context.editable = function() { return map.editable(); };
context.mouse = map.mouse;
context.extent = map.extent;
context.pan = map.pan;
};
/* Presets */
- var presets = iD.presets()
- .load(iD.data.presets);
+ var presets = iD.presets();
- context.presets = function() {
- return presets;
+ context.presets = function(_) {
+ if (!arguments.length) return presets;
+ presets.load(_);
+ iD.areaKeys = presets.areaKeys();
+ return context;
+ };
+
+ context.imagery = function(_) {
+ background.load(_);
+ return context;
};
context.container = function(_) {
return context;
};
+ /* Taginfo */
+ var taginfo;
+ context.taginfo = function(_) {
+ if (!arguments.length) return taginfo;
+ taginfo = _;
+ return context;
+ };
+
var embed = false;
context.embed = function(_) {
if (!arguments.length) return embed;
return d3.rebind(context, dispatch, 'on');
};
-iD.version = '1.5.3';
+iD.version = '1.7.0';
(function() {
var detected = {};
taginfo.keys = function(parameters, callback) {
var debounce = parameters.debounce;
- parameters = clean(shorten(setSort(setFilter(parameters))));
+ parameters = clean(shorten(setSort(parameters)));
request(endpoint + 'keys/all?' +
iD.util.qsString(_.extend({
rp: 10,
};
iD.util.qsString = function(obj, noencode) {
- function softEncode(s) { return s.replace('&', '%26'); }
+ function softEncode(s) {
+ // encode everything except special characters used in certain hash parameters:
+ // "/" in map states, ":", ",", {" and "}" in background
+ return encodeURIComponent(s).replace(/(%2F|%3A|%2C|%7B|%7D)/g, decodeURIComponent);
+ }
return Object.keys(obj).sort().map(function(key) {
return encodeURIComponent(key) + '=' + (
noencode ? softEncode(obj[key]) : encodeURIComponent(obj[key]));
};
iD.geo.polygonIntersectsPolygon = function(outer, inner) {
+ function testSegments(outer, inner) {
+ for (var i = 0; i < outer.length - 1; i++) {
+ for (var j = 0; j < inner.length - 1; j++) {
+ var a = [ outer[i], outer[i+1] ],
+ b = [ inner[j], inner[j+1] ];
+ if (iD.geo.lineIntersection(a, b)) return true;
+ }
+ }
+ return false;
+ }
+
return _.some(inner, function(point) {
return iD.geo.pointInPolygon(point, outer);
- });
+ }) || testSegments(outer, inner);
};
iD.geo.pathLength = function(path) {
}
};
-iD.geo.Extent.prototype = [[], []];
+iD.geo.Extent.prototype = new Array(2);
_.extend(iD.geo.Extent.prototype, {
+ equals: function (obj) {
+ return this[0][0] === obj[0][0] &&
+ this[0][1] === obj[0][1] &&
+ this[1][0] === obj[1][0] &&
+ this[1][1] === obj[1][1];
+ },
+
extend: function(obj) {
if (!(obj instanceof iD.geo.Extent)) obj = new iD.geo.Extent(obj);
return iD.geo.Extent([Math.min(obj[0][0], this[0][0]),
Math.max(obj[1][1], this[1][1])]);
},
+ _extend: function(extent) {
+ this[0][0] = Math.min(extent[0][0], this[0][0]);
+ this[0][1] = Math.min(extent[0][1], this[0][1]);
+ this[1][0] = Math.max(extent[1][0], this[1][0]);
+ this[1][1] = Math.max(extent[1][1], this[1][1]);
+ },
+
area: function() {
return Math.abs((this[1][0] - this[0][0]) * (this[1][1] - this[0][1]));
},
return intersection;
};
-iD.geo.inferRestriction = function(from, via, to, projection) {
- var angle = iD.geo.angle(via, from, projection) -
- iD.geo.angle(via, to, projection);
+
+iD.geo.inferRestriction = function(graph, from, via, to, projection) {
+ var fromWay = graph.entity(from.way),
+ fromNode = graph.entity(from.node),
+ toWay = graph.entity(to.way),
+ toNode = graph.entity(to.node),
+ viaNode = graph.entity(via.node),
+ fromOneWay = (fromWay.tags.oneway === 'yes' && fromWay.last() === via.node) ||
+ (fromWay.tags.oneway === '-1' && fromWay.first() === via.node),
+ toOneWay = (toWay.tags.oneway === 'yes' && toWay.first() === via.node) ||
+ (toWay.tags.oneway === '-1' && toWay.last() === via.node),
+ angle = iD.geo.angle(viaNode, fromNode, projection) -
+ iD.geo.angle(viaNode, toNode, projection);
angle = angle * 180 / Math.PI;
while (angle < 0)
angle += 360;
- if (angle < 23)
+ if (fromNode === toNode)
+ return 'no_u_turn';
+ if ((angle < 23 || angle > 336) && fromOneWay && toOneWay)
return 'no_u_turn';
if (angle < 158)
return 'no_right_turn';
- if (angle < 202)
- return 'no_straight_on';
- if (angle < 336)
+ if (angle > 202)
return 'no_left_turn';
- return 'no_u_turn';
+ return 'no_straight_on';
};
// For fixing up rendering of multipolygons with tags on the outer member.
// https://github.com/openstreetmap/iD/issues/613
return graph;
};
};
+iD.actions.CopyEntity = function(entity, deep) {
+ var newEntities = [];
+
+ var action = function(graph) {
+ newEntities = entity.copy(deep, graph);
+
+ for (var i = 0; i < newEntities.length; i++) {
+ graph = graph.replace(newEntities[i]);
+ }
+
+ return graph;
+ };
+
+ action.newEntities = function() {
+ return newEntities;
+ };
+
+ return action;
+};
iD.actions.DeleteMember = function(relationId, memberIndex) {
return function(graph) {
var relation = graph.entity(relationId)
// `from.node` in `from.way` toward `to.node` in `to.way` via `via.node`.
// (The action does not check that these entities form a valid intersection.)
//
-// If `restriction` is not provided, it is automatically determined by the
-// angle of the turn:
-//
-// 0-23 degrees: no_u_turn
-// 23-158 degrees: no_right_turn
-// 158-202 degrees: no_straight_on
-// 202-326 degrees: no_left_turn
-// 336-360 degrees: no_u_turn
+// If `restriction` is not provided, it is automatically determined by
+// iD.geo.inferRestriction.
//
// If necessary, the `from` and `to` ways are split. In these cases, `from.node`
// and `to.node` are used to determine which portion of the split ways become
type: 'restriction',
restriction: turn.restriction ||
iD.geo.inferRestriction(
- graph.entity(turn.from.node),
- via,
- graph.entity(turn.to.node),
+ graph,
+ turn.from,
+ turn.via,
+ turn.to,
projection)
},
members: [
return d3.rebind(addWay, event, 'on');
};
+iD.behavior.Copy = function(context) {
+ var keybinding = d3.keybinding('copy');
+
+ function groupEntities(ids, graph) {
+ var entities = ids.map(function (id) { return graph.entity(id); });
+ return _.extend({relation: [], way: [], node: []},
+ _.groupBy(entities, function(entity) { return entity.type; }));
+ }
+
+ function getDescendants(id, graph, descendants) {
+ var entity = graph.entity(id),
+ i, children;
+
+ descendants = descendants || {};
+
+ if (entity.type === 'relation') {
+ children = _.pluck(entity.members, 'id');
+ } else if (entity.type === 'way') {
+ children = entity.nodes;
+ } else {
+ children = [];
+ }
+
+ for (i = 0; i < children.length; i++) {
+ if (!descendants[children[i]]) {
+ descendants[children[i]] = true;
+ descendants = getDescendants(children[i], graph, descendants);
+ }
+ }
+
+ return descendants;
+ }
+
+ function doCopy() {
+ d3.event.preventDefault();
+
+ var graph = context.graph(),
+ selected = groupEntities(context.selectedIDs(), graph),
+ canCopy = [],
+ skip = {},
+ i, entity;
+
+ for (i = 0; i < selected.relation.length; i++) {
+ entity = selected.relation[i];
+ if (!skip[entity.id] && entity.isComplete(graph)) {
+ canCopy.push(entity.id);
+ skip = getDescendants(entity.id, graph, skip);
+ }
+ }
+ for (i = 0; i < selected.way.length; i++) {
+ entity = selected.way[i];
+ if (!skip[entity.id]) {
+ canCopy.push(entity.id);
+ skip = getDescendants(entity.id, graph, skip);
+ }
+ }
+ for (i = 0; i < selected.node.length; i++) {
+ entity = selected.node[i];
+ if (!skip[entity.id]) {
+ canCopy.push(entity.id);
+ }
+ }
+
+ context.copiedIDs(canCopy);
+ }
+
+ function copy() {
+ keybinding.on(iD.ui.cmd('⌘C'), doCopy);
+ d3.select(document).call(keybinding);
+ return copy;
+ }
+
+ copy.off = function() {
+ d3.select(document).call(keybinding.off);
+ };
+
+ return copy;
+};
/*
`iD.behavior.drag` is like `d3.behavior.drag`, with the following differences:
context.install(hover);
context.install(edit);
- if (!iD.behavior.Draw.usedTails[tail.text()]) {
+ if (!context.inIntro() && !iD.behavior.Draw.usedTails[tail.text()]) {
context.install(tail);
}
context.uninstall(hover);
context.uninstall(edit);
- if (!iD.behavior.Draw.usedTails[tail.text()]) {
+ if (!context.inIntro() && !iD.behavior.Draw.usedTails[tail.text()]) {
context.uninstall(tail);
iD.behavior.Draw.usedTails[tail.text()] = true;
}
iD.behavior.Edit = function(context) {
function edit() {
context.map()
- .minzoom(16);
+ .minzoom(context.minEditableZoom());
}
edit.off = function() {
center = map.center(),
zoom = map.zoom(),
precision = Math.max(0, Math.ceil(Math.log(zoom) / Math.LN2)),
- q = iD.util.stringQs(location.hash.substring(1)),
+ q = _.omit(iD.util.stringQs(location.hash.substring(1)), 'comment'),
newParams = {};
if (mode && mode.id === 'browse') {
if (location.hash) {
var q = iD.util.stringQs(location.hash.substring(1));
if (q.id) context.loadEntity(q.id.split(',')[0], !q.map);
+ if (q.comment) context.storage('comment', q.comment);
hashchange();
if (q.map) hash.hadHash = true;
}
return behavior;
};
+iD.behavior.Paste = function(context) {
+ var keybinding = d3.keybinding('paste');
+
+ function omitTag(v, k) {
+ return (
+ k === 'phone' ||
+ k === 'fax' ||
+ k === 'email' ||
+ k === 'website' ||
+ k === 'url' ||
+ k === 'note' ||
+ k === 'description' ||
+ k.indexOf('name') !== -1 ||
+ k.indexOf('wiki') === 0 ||
+ k.indexOf('addr:') === 0 ||
+ k.indexOf('contact:') === 0
+ );
+ }
+
+ function doPaste() {
+ d3.event.preventDefault();
+
+ var mouse = context.mouse(),
+ projection = context.projection,
+ viewport = iD.geo.Extent(projection.clipExtent()).polygon();
+
+ if (!iD.geo.pointInPolygon(mouse, viewport)) return;
+
+ var graph = context.graph(),
+ extent = iD.geo.Extent(),
+ oldIDs = context.copiedIDs(),
+ newIDs = [],
+ i, j;
+
+ for (i = 0; i < oldIDs.length; i++) {
+ var oldEntity = graph.entity(oldIDs[i]),
+ action = iD.actions.CopyEntity(oldEntity, true),
+ newEntities;
+
+ extent._extend(oldEntity.extent(graph));
+ context.perform(action);
+
+ // First element in `newEntities` contains the copied Entity,
+ // Subsequent array elements contain any descendants..
+ newEntities = action.newEntities();
+ newIDs.push(newEntities[0].id);
+
+ for (j = 0; j < newEntities.length; j++) {
+ var newEntity = newEntities[j],
+ tags = _.omit(newEntity.tags, omitTag);
+
+ context.perform(iD.actions.ChangeTags(newEntity.id, tags));
+ }
+ }
+
+ // Put pasted objects where mouse pointer is..
+ var center = projection(extent.center()),
+ delta = [ mouse[0] - center[0], mouse[1] - center[1] ];
+
+ context.perform(iD.actions.Move(newIDs, delta, projection));
+ context.enter(iD.modes.Move(context, newIDs));
+ }
+
+ function paste() {
+ keybinding.on(iD.ui.cmd('⌘V'), doPaste);
+ d3.select(document).call(keybinding);
+ return paste;
+ }
+
+ paste.off = function() {
+ d3.select(document).call(keybinding.off);
+ };
+
+ return paste;
+};
iD.behavior.Select = function(context) {
function keydown() {
if (d3.event && d3.event.shiftKey) {
}, sidebar;
var behaviors = [
+ iD.behavior.Paste(context),
iD.behavior.Hover(context)
.on('hover', context.ui().sidebar.hover),
iD.behavior.Select(context),
}
function start(entity) {
- cancelled = d3.event.sourceEvent.shiftKey;
+ cancelled = d3.event.sourceEvent.shiftKey ||
+ context.features().hasHiddenConnections(entity, context.graph());
+
if (cancelled) return behavior.cancel();
wasMidpoint = entity.type === 'midpoint';
confirm
.select('.modal-section.message-text')
.append('p')
- .text(err.responseText);
+ .text(err.responseText || t('save.unknown_error_details'));
} else {
context.flush();
success(e, changeset_id);
var keybinding = d3.keybinding('select'),
timeout = null,
behaviors = [
+ iD.behavior.Copy(context),
+ iD.behavior.Paste(context),
iD.behavior.Hover(context),
iD.behavior.Select(context),
iD.behavior.Lasso(context),
var wrap = context.container()
.select('.inspector-wrap');
+
function singular() {
if (selectedIDs.length === 1) {
return context.entity(selectedIDs[0]);
}
}
+ function closeMenu() {
+ if (radialMenu) {
+ context.surface().call(radialMenu.close);
+ }
+ }
+
function positionMenu() {
- var entity = singular();
+ if (suppressMenu || !radialMenu) { return; }
- if (entity && entity.type === 'node') {
+ var entity = singular();
+ if (entity && context.geometry(entity.id) === 'relation') {
+ suppressMenu = true;
+ } else if (entity && entity.type === 'node') {
radialMenu.center(context.projection(entity.loc));
} else {
- radialMenu.center(context.mouse());
+ var point = context.mouse(),
+ viewport = iD.geo.Extent(context.projection.clipExtent()).polygon();
+ if (iD.geo.pointInPolygon(point, viewport)) {
+ radialMenu.center(point);
+ } else {
+ suppressMenu = true;
+ }
}
}
function showMenu() {
- context.surface()
- .call(radialMenu.close)
- .call(radialMenu);
+ closeMenu();
+ if (!suppressMenu && radialMenu) {
+ context.surface().call(radialMenu);
+ }
}
mode.selectedIDs = function() {
};
mode.enter = function() {
- behaviors.forEach(function(behavior) {
- context.install(behavior);
- });
-
- var operations = _.without(d3.values(iD.operations), iD.operations.Delete)
- .map(function(o) { return o(selectedIDs, context); })
- .filter(function(o) { return o.available(); });
- operations.unshift(iD.operations.Delete(selectedIDs, context));
-
- keybinding.on('⎋', function() {
- context.enter(iD.modes.Browse(context));
- }, true);
-
- operations.forEach(function(operation) {
- operation.keys.forEach(function(key) {
- keybinding.on(key, function() {
- if (!operation.disabled()) {
- operation();
- }
- });
- });
- });
-
- context.ui().sidebar
- .select(singular() ? singular().id : null, newFeature);
-
- context.history()
- .on('undone.select', update)
- .on('redone.select', update);
-
function update() {
- context.surface().call(radialMenu.close);
-
+ closeMenu();
if (_.any(selectedIDs, function(id) { return !context.hasEntity(id); })) {
// Exit mode if selected entity gets undone
context.enter(iD.modes.Browse(context));
}
}
- context.map().on('move.select', function() {
- context.surface().call(radialMenu.close);
- });
-
function dblclick() {
var target = d3.select(d3.event.target),
datum = target.datum();
}
}
+ function selectElements(drawn) {
+ var entity = singular();
+ if (entity && context.geometry(entity.id) === 'relation') {
+ suppressMenu = true;
+ return;
+ }
+
+ var selection = context.surface()
+ .selectAll(iD.util.entityOrMemberSelector(selectedIDs, context.graph()));
+
+ if (selection.empty()) {
+ if (drawn) { // Exit mode if selected DOM elements have disappeared..
+ context.enter(iD.modes.Browse(context));
+ }
+ } else {
+ selection
+ .classed('selected', true);
+ }
+ }
+
+
+ behaviors.forEach(function(behavior) {
+ context.install(behavior);
+ });
+
+ var operations = _.without(d3.values(iD.operations), iD.operations.Delete)
+ .map(function(o) { return o(selectedIDs, context); })
+ .filter(function(o) { return o.available(); });
+
+ operations.unshift(iD.operations.Delete(selectedIDs, context));
+
+ keybinding.on('⎋', function() {
+ context.enter(iD.modes.Browse(context));
+ }, true);
+
+ operations.forEach(function(operation) {
+ operation.keys.forEach(function(key) {
+ keybinding.on(key, function() {
+ if (!operation.disabled()) {
+ operation();
+ }
+ });
+ });
+ });
+
d3.select(document)
.call(keybinding);
- function selectElements() {
- context.surface()
- .selectAll(iD.util.entityOrMemberSelector(selectedIDs, context.graph()))
- .classed('selected', true);
- }
+ radialMenu = iD.ui.RadialMenu(context, operations);
+
+ context.ui().sidebar
+ .select(singular() ? singular().id : null, newFeature);
+
+ context.history()
+ .on('undone.select', update)
+ .on('redone.select', update);
+
+ context.map()
+ .on('move.select', closeMenu)
+ .on('drawn.select', selectElements);
- context.map().on('drawn.select', selectElements);
selectElements();
- radialMenu = iD.ui.RadialMenu(context, operations);
var show = d3.event && !suppressMenu;
if (show) {
});
keybinding.off();
+ closeMenu();
+ radialMenu = undefined;
context.history()
.on('undone.select', null)
.on('redone.select', null);
context.surface()
- .call(radialMenu.close)
.on('dblclick.select', null)
.selectAll('.selected')
.classed('selected', false);
var reason;
if (extent.percentContainedIn(context.extent()) < 0.8) {
reason = 'too_large';
+ } else if (context.hasHiddenConnections(entityId)) {
+ reason = 'connected_to_hidden';
}
return action.disabled(context.graph()) || reason;
};
};
operation.available = function() {
- return geometries.vertex.length === 1 && geometries.line.length <= 1;
+ return geometries.vertex.length === 1 && geometries.line.length <= 1 &&
+ !context.features().hasHiddenConnections(vertex, context.graph());
};
operation.disabled = function() {
};
operation.disabled = function() {
- return action.disabled(context.graph());
+ var reason;
+ if (_.any(selectedIDs, context.hasHiddenConnections)) {
+ reason = 'connected_to_hidden';
+ }
+ return action.disabled(context.graph()) || reason;
};
operation.tooltip = function() {
};
operation.disabled = function() {
- return action.disabled(context.graph());
+ var reason;
+ if (_.any(selectedIDs, context.hasHiddenConnections)) {
+ reason = 'connected_to_hidden';
+ }
+ return action.disabled(context.graph()) || reason;
};
operation.tooltip = function() {
var reason;
if (extent.area() && extent.percentContainedIn(context.extent()) < 0.8) {
reason = 'too_large';
+ } else if (_.any(selectedIDs, context.hasHiddenConnections)) {
+ reason = 'connected_to_hidden';
}
return iD.actions.Move(selectedIDs).disabled(context.graph()) || reason;
};
var reason;
if (extent.percentContainedIn(context.extent()) < 0.8) {
reason = 'too_large';
+ } else if (context.hasHiddenConnections(entityId)) {
+ reason = 'connected_to_hidden';
}
return action.disabled(context.graph()) || reason;
};
operation.disabled = function() {
if (extent.percentContainedIn(context.extent()) < 0.8) {
return 'too_large';
+ } else if (context.hasHiddenConnections(entityId)) {
+ return 'connected_to_hidden';
} else {
return false;
}
};
operation.disabled = function() {
- return action.disabled(context.graph());
+ var reason;
+ if (_.any(selectedIDs, context.hasHiddenConnections)) {
+ reason = 'connected_to_hidden';
+ }
+ return action.disabled(context.graph()) || reason;
};
operation.tooltip = function() {
};
operation.disabled = function() {
- return action.disabled(context.graph());
+ var reason;
+ if (context.hasHiddenConnections(entityId)) {
+ reason = 'connected_to_hidden';
+ }
+ return action.disabled(context.graph()) || reason;
};
operation.tooltip = function() {
return operation;
};
-/* jshint -W109 */
-iD.areaKeys = {
- "aeroway": {
- "gate": true,
- "taxiway": true
- },
- "amenity": {
- "atm": true,
- "bbq": true,
- "bench": true,
- "clock": true,
- "drinking_water": true,
- "parking_entrance": true,
- "post_box": true,
- "telephone": true,
- "vending_machine": true,
- "waste_basket": true
- },
- "area": {},
- "barrier": {
- "block": true,
- "bollard": true,
- "cattle_grid": true,
- "cycle_barrier": true,
- "entrance": true,
- "fence": true,
- "gate": true,
- "kissing_gate": true,
- "lift_gate": true,
- "stile": true,
- "toll_booth": true
- },
- "building": {
- "entrance": true
- },
- "craft": {},
- "emergency": {
- "fire_hydrant": true,
- "phone": true
- },
- "golf": {
- "hole": true
- },
- "historic": {
- "boundary_stone": true
- },
- "landuse": {},
- "leisure": {
- "picnic_table": true,
- "slipway": true
- },
- "man_made": {
- "cutline": true,
- "embankment": true,
- "flagpole": true,
- "pipeline": true,
- "survey_point": true
- },
- "military": {},
- "natural": {
- "coastline": true,
- "peak": true,
- "spring": true,
- "tree": true
- },
- "office": {},
- "piste:type": {},
- "place": {},
- "power": {
- "line": true,
- "minor_line": true,
- "pole": true,
- "tower": true
- },
- "public_transport": {
- "stop_position": true
- },
- "shop": {},
- "tourism": {
- "viewpoint": true
- },
- "waterway": {
- "canal": true,
- "ditch": true,
- "drain": true,
- "river": true,
- "stream": true,
- "weir": true
- }
-};iD.Connection = function() {
+iD.Connection = function() {
var event = d3.dispatch('authenticating', 'authenticated', 'auth', 'loading', 'load', 'loaded'),
url = 'http://www.openstreetmap.org',
var source = sources[i];
for (var prop in source) {
if (Object.prototype.hasOwnProperty.call(source, prop)) {
- this[prop] = source[prop];
+ if (source[prop] === undefined) {
+ delete this[prop];
+ } else {
+ this[prop] = source[prop];
+ }
}
}
}
return this;
},
+ copy: function() {
+ // Returns an array so that we can support deep copying ways and relations.
+ // The first array element will contain this.copy, followed by any descendants.
+ return [iD.Entity(this, {id: undefined, user: undefined, version: undefined})];
+ },
+
osmId: function() {
return iD.Entity.id.toOSM(this.id);
},
},
parentWays: function(entity) {
- return _.map(this._parentWays[entity.id], this.entity, this);
+ var parents = this._parentWays[entity.id],
+ result = [];
+
+ if (parents) {
+ for (var i = 0, imax = parents.length; i !== imax; i++) {
+ result.push(this.entity(parents[i]));
+ }
+ }
+ return result;
},
isPoi: function(entity) {
},
parentRelations: function(entity) {
- return _.map(this._parentRels[entity.id], this.entity, this);
+ var parents = this._parentRels[entity.id],
+ result = [];
+
+ if (parents) {
+ for (var i = 0, imax = parents.length; i !== imax; i++) {
+ result.push(this.entity(parents[i]));
+ }
+ }
+ return result;
},
childNodes: function(entity) {
return this._childNodes[entity.id];
var nodes = [];
- for (var i = 0, l = entity.nodes.length; i < l; i++) {
- nodes[i] = this.entity(entity.nodes[i]);
+ if (entity.nodes) {
+ for (var i = 0, l = entity.nodes.length; i < l; i++) {
+ nodes[i] = this.entity(entity.nodes[i]);
+ }
}
if (iD.debug) Object.freeze(nodes);
// this merges originals for changed entities into the base of
// the stack even if the current stack doesn't have them (for
// example when iD has been restarted in a different region)
- var baseEntities = h.baseEntities.map(iD.Entity);
+ var baseEntities = h.baseEntities.map(function(entity) {
+ return iD.Entity(entity);
+ });
stack[0].graph.rebase(baseEntities, _.pluck(stack, 'graph'));
tree.rebase(baseEntities);
}
type: 'relation',
members: [],
+ copy: function(deep, resolver, replacements) {
+ var copy = iD.Entity.prototype.copy.call(this);
+ if (!deep || !resolver || !this.isComplete(resolver)) {
+ return copy;
+ }
+
+ var members = [],
+ i, oldmember, oldid, newid, children;
+
+ replacements = replacements || {};
+ replacements[this.id] = copy[0].id;
+
+ for (i = 0; i < this.members.length; i++) {
+ oldmember = this.members[i];
+ oldid = oldmember.id;
+ newid = replacements[oldid];
+ if (!newid) {
+ children = resolver.entity(oldid).copy(true, resolver, replacements);
+ newid = replacements[oldid] = children[0].id;
+ copy = copy.concat(children);
+ }
+ members.push({id: newid, type: oldmember.type, role: oldmember.role});
+ }
+
+ copy[0] = copy[0].update({members: members});
+ return copy;
+ },
+
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);
+
+ var extent = iD.geo.Extent();
+ for (var i = 0; i < this.members.length; i++) {
+ var member = resolver.hasEntity(this.members[i].id);
if (member) {
- return extent.extend(member.extent(resolver, memo));
- } else {
- return extent;
+ extent._extend(member.extent(resolver, memo));
}
- }, iD.geo.Extent());
+ }
+ return extent;
});
},
}
function updateParents(entity, insertions, memo) {
- if (memo && memo[entity.id]) return;
- memo = memo || {};
- memo[entity.id] = true;
-
head.parentWays(entity).forEach(function(parent) {
if (rectangles[parent.id]) {
rtree.remove(rectangles[parent.id]);
- insertions.push(parent);
+ insertions[parent.id] = parent;
}
});
head.parentRelations(entity).forEach(function(parent) {
+ if (memo[entity.id]) return;
+ memo[entity.id] = true;
if (rectangles[parent.id]) {
rtree.remove(rectangles[parent.id]);
- insertions.push(parent);
+ insertions[parent.id] = parent;
}
updateParents(parent, insertions, memo);
});
var tree = {};
tree.rebase = function(entities) {
- var insertions = [];
+ var insertions = {};
+
+ for (var i = 0; i < entities.length; i++) {
+ var entity = entities[i];
- entities.forEach(function(entity) {
if (head.entities.hasOwnProperty(entity.id) || rectangles[entity.id])
- return;
+ continue;
- insertions.push(entity);
- updateParents(entity, insertions);
- });
+ insertions[entity.id] = entity;
+ updateParents(entity, insertions, {});
+ }
- insertions = _.unique(insertions).map(entityRectangle);
- rtree.load(insertions);
+ rtree.load(_.map(insertions, entityRectangle));
return tree;
};
tree.intersects = function(extent, graph) {
if (graph !== head) {
var diff = iD.Difference(head, graph),
- insertions = [];
+ insertions = {};
head = graph;
diff.modified().forEach(function(entity) {
rtree.remove(rectangles[entity.id]);
- insertions.push(entity);
- updateParents(entity, insertions);
+ insertions[entity.id] = entity;
+ updateParents(entity, insertions, {});
});
diff.created().forEach(function(entity) {
- insertions.push(entity);
+ insertions[entity.id] = entity;
});
- insertions = _.unique(insertions).map(entityRectangle);
- rtree.load(insertions);
+ rtree.load(_.map(insertions, entityRectangle));
}
return rtree.search(extentRectangle(extent)).map(function(rect) {
type: 'way',
nodes: [],
+ copy: function(deep, resolver) {
+ var copy = iD.Entity.prototype.copy.call(this);
+
+ if (!deep || !resolver) {
+ return copy;
+ }
+
+ var nodes = [],
+ replacements = {},
+ i, oldid, newid, child;
+
+ for (i = 0; i < this.nodes.length; i++) {
+ oldid = this.nodes[i];
+ newid = replacements[oldid];
+ if (!newid) {
+ child = resolver.entity(oldid).copy();
+ newid = replacements[oldid] = child[0].id;
+ copy = copy.concat(child);
+ }
+ nodes.push(newid);
+ }
+
+ copy[0] = copy[0].update({nodes: nodes});
+ return copy;
+ },
+
extent: function(resolver) {
return resolver.transient(this, 'extent', function() {
- return this.nodes.reduce(function(extent, id) {
- var node = resolver.hasEntity(id);
+ var extent = iD.geo.Extent();
+ for (var i = 0; i < this.nodes.length; i++) {
+ var node = resolver.hasEntity(this.nodes[i]);
if (node) {
- return extent.extend(node.extent());
- } else {
- return extent;
+ extent._extend(node.extent());
}
- }, iD.geo.Extent());
+ }
+ return extent;
});
},
return resolver.transient(this, 'area', function() {
var nodes = resolver.childNodes(this);
- if (!this.isClosed() && nodes.length) {
- nodes = nodes.concat([nodes[0]]);
- }
-
var json = {
type: 'Polygon',
coordinates: [_.pluck(nodes, 'loc')]
};
+ if (!this.isClosed() && nodes.length) {
+ json.coordinates[0].push(nodes[0].loc);
+ }
+
var area = d3.geo.area(json);
// Heuristic for detecting counterclockwise winding order. Assumes
// that OpenStreetMap polygons are not hemisphere-spanning.
- if (d3.geo.area(json) > 2 * Math.PI) {
+ if (area > 2 * Math.PI) {
json.coordinates[0] = json.coordinates[0].reverse();
area = d3.geo.area(json);
}
.projection(context.projection),
gpxLayer = iD.GpxLayer(context, dispatch)
.projection(context.projection),
+ mapillaryLayer = iD.MapillaryLayer(context),
overlayLayers = [];
- var backgroundSources = iD.data.imagery.map(function(source) {
- if (source.type === 'bing') {
- return iD.BackgroundSource.Bing(source, dispatch);
- } else {
- return iD.BackgroundSource(source);
- }
- });
-
- backgroundSources.unshift(iD.BackgroundSource.None());
+ var backgroundSources;
function findSource(id) {
return _.find(backgroundSources, function(d) {
base.call(baseLayer);
- var gpx = selection.selectAll('.gpx-layer')
- .data([0]);
-
- gpx.enter().insert('div', '.layer-data')
- .attr('class', 'layer-layer gpx-layer');
-
- gpx.call(gpxLayer);
-
- var overlays = selection.selectAll('.overlay-layer')
+ var overlays = selection.selectAll('.layer-overlay')
.data(overlayLayers, function(d) { return d.source().name(); });
overlays.enter().insert('div', '.layer-data')
- .attr('class', 'layer-layer overlay-layer');
+ .attr('class', 'layer-layer layer-overlay');
overlays.each(function(layer) {
d3.select(this).call(layer);
overlays.exit()
.remove();
+
+ var gpx = selection.selectAll('.layer-gpx')
+ .data([0]);
+
+ gpx.enter().insert('div')
+ .attr('class', 'layer-layer layer-gpx');
+
+ gpx.call(gpxLayer);
+
+ var mapillary = selection.selectAll('.layer-mapillary')
+ .data([0]);
+
+ mapillary.enter().insert('div')
+ .attr('class', 'layer-layer layer-mapillary');
+
+ mapillary.call(mapillaryLayer);
}
background.sources = function(extent) {
background.dimensions = function(_) {
baseLayer.dimensions(_);
gpxLayer.dimensions(_);
+ mapillaryLayer.dimensions(_);
overlayLayers.forEach(function(layer) {
layer.dimensions(_);
background.zoomToGpxLayer = function() {
if (background.hasGpxLayer()) {
- var gpx = d3.geo.bounds(gpxLayer.geojson());
+ var viewport = context.map().extent().polygon(),
+ coords = _.reduce(gpxLayer.geojson().features, function(coords, feature) {
+ var c = feature.geometry.coordinates;
+ return _.union(coords, feature.geometry.type === 'Point' ? [c] : c);
+ }, []);
- if (!context.map().extent().intersects(gpx)) {
- context.map().extent(gpx);
+ if (!iD.geo.polygonIntersectsPolygon(viewport, coords)) {
+ context.map().extent(d3.geo.bounds(gpxLayer.geojson()));
}
}
};
dispatch.change();
};
+ background.showsMapillaryLayer = function() {
+ return mapillaryLayer.enable();
+ };
+
+ background.toggleMapillaryLayer = function() {
+ mapillaryLayer.enable(!mapillaryLayer.enable());
+ dispatch.change();
+ };
+
background.showsLayer = function(d) {
return d === baseLayer.source() ||
(d.id === 'custom' && baseLayer.source().id === 'custom') ||
return background;
};
- var q = iD.util.stringQs(location.hash.substring(1)),
- chosen = q.background || q.layer;
+ background.load = function(imagery) {
+ backgroundSources = imagery.map(function(source) {
+ if (source.type === 'bing') {
+ return iD.BackgroundSource.Bing(source, dispatch);
+ } else {
+ return iD.BackgroundSource(source);
+ }
+ });
- if (chosen && chosen.indexOf('custom:') === 0) {
- background.baseLayerSource(iD.BackgroundSource.Custom(chosen.replace(/^custom:/, '')));
- } else {
- background.baseLayerSource(findSource(chosen) || findSource('Bing'));
- }
+ backgroundSources.unshift(iD.BackgroundSource.None());
- var locator = _.find(backgroundSources, function(d) {
- return d.overlay && d.default;
- });
+ var q = iD.util.stringQs(location.hash.substring(1)),
+ chosen = q.background || q.layer;
- if (locator) {
- background.toggleOverlayLayer(locator);
- }
+ if (chosen && chosen.indexOf('custom:') === 0) {
+ background.baseLayerSource(iD.BackgroundSource.Custom(chosen.replace(/^custom:/, '')));
+ } else {
+ background.baseLayerSource(findSource(chosen) || findSource('Bing') || backgroundSources[1]);
+ }
- var overlays = (q.overlays || '').split(',');
- overlays.forEach(function(overlay) {
- overlay = findSource(overlay);
- if (overlay) background.toggleOverlayLayer(overlay);
- });
+ var locator = _.find(backgroundSources, function(d) {
+ return d.overlay && d.default;
+ });
- var gpx = q.gpx;
- if (gpx) {
- d3.text(gpx, function(err, gpxTxt) {
- gpxLayer.geojson(toGeoJSON.gpx(toDom(gpxTxt)));
- dispatch.change();
+ if (locator) {
+ background.toggleOverlayLayer(locator);
+ }
+
+ var overlays = (q.overlays || '').split(',');
+ overlays.forEach(function(overlay) {
+ overlay = findSource(overlay);
+ if (overlay) background.toggleOverlayLayer(overlay);
});
- }
+
+ var gpx = q.gpx;
+ if (gpx) {
+ d3.text(gpx, function(err, gpxTxt) {
+ gpxLayer.geojson(toGeoJSON.gpx(toDom(gpxTxt)));
+ dispatch.change();
+ });
+ }
+ };
return d3.rebind(background, dispatch, 'on');
};
return source;
};
+iD.Features = function(context) {
+ var major_roads = {
+ 'motorway': true,
+ 'motorway_link': true,
+ 'trunk': true,
+ 'trunk_link': true,
+ 'primary': true,
+ 'primary_link': true,
+ 'secondary': true,
+ 'secondary_link': true,
+ 'tertiary': true,
+ 'tertiary_link': true,
+ 'residential': true
+ };
+
+ var minor_roads = {
+ 'service': true,
+ 'living_street': true,
+ 'road': true,
+ 'unclassified': true,
+ 'track': true
+ };
+
+ var paths = {
+ 'path': true,
+ 'footway': true,
+ 'cycleway': true,
+ 'bridleway': true,
+ 'steps': true,
+ 'pedestrian': true
+ };
+
+ var past_futures = {
+ 'proposed': true,
+ 'construction': true,
+ 'abandoned': true,
+ 'dismantled': true,
+ 'disused': true,
+ 'razed': true,
+ 'demolished': true,
+ 'obliterated': true
+ };
+
+ var dispatch = d3.dispatch('change', 'redraw'),
+ _cullFactor = 1,
+ _cache = {},
+ _features = {},
+ _stats = {},
+ _keys = [],
+ _hidden = [];
+
+ function update() {
+ _hidden = features.hidden();
+ dispatch.change();
+ dispatch.redraw();
+ }
+
+ function defineFeature(k, filter, max) {
+ _keys.push(k);
+ _features[k] = {
+ filter: filter,
+ enabled: true, // whether the user wants it enabled..
+ count: 0,
+ currentMax: (max || Infinity),
+ defaultMax: (max || Infinity),
+ enable: function() { this.enabled = true; this.currentMax = this.defaultMax; },
+ disable: function() { this.enabled = false; this.currentMax = 0; },
+ hidden: function() { return !context.editable() || this.count > this.currentMax * _cullFactor; },
+ autoHidden: function() { return this.hidden() && this.currentMax > 0; }
+ };
+ }
+
+
+ defineFeature('points', function isPoint(entity, resolver, geometry) {
+ return geometry === 'point';
+ }, 200);
+
+ defineFeature('major_roads', function isMajorRoad(entity) {
+ return major_roads[entity.tags.highway];
+ });
+
+ defineFeature('minor_roads', function isMinorRoad(entity) {
+ return minor_roads[entity.tags.highway];
+ });
+
+ defineFeature('paths', function isPath(entity) {
+ return paths[entity.tags.highway];
+ });
+
+ defineFeature('buildings', function isBuilding(entity) {
+ return (
+ !!entity.tags['building:part'] ||
+ (!!entity.tags.building && entity.tags.building !== 'no') ||
+ entity.tags.amenity === 'shelter' ||
+ entity.tags.parking === 'multi-storey' ||
+ entity.tags.parking === 'sheds' ||
+ entity.tags.parking === 'carports' ||
+ entity.tags.parking === 'garage_boxes'
+ );
+ }, 250);
+
+ defineFeature('landuse', function isLanduse(entity, resolver, geometry) {
+ return geometry === 'area' &&
+ !_features.buildings.filter(entity) &&
+ !_features.water.filter(entity);
+ });
+
+ defineFeature('boundaries', function isBoundary(entity) {
+ return !!entity.tags.boundary;
+ });
+
+ defineFeature('water', function isWater(entity) {
+ return (
+ !!entity.tags.waterway ||
+ entity.tags.natural === 'water' ||
+ entity.tags.natural === 'coastline' ||
+ entity.tags.natural === 'bay' ||
+ entity.tags.landuse === 'pond' ||
+ entity.tags.landuse === 'basin' ||
+ entity.tags.landuse === 'reservoir' ||
+ entity.tags.landuse === 'salt_pond'
+ );
+ });
+
+ defineFeature('rail', function isRail(entity) {
+ return (
+ !!entity.tags.railway ||
+ entity.tags.landuse === 'railway'
+ ) && !(
+ major_roads[entity.tags.highway] ||
+ minor_roads[entity.tags.highway] ||
+ paths[entity.tags.highway]
+ );
+ });
+
+ defineFeature('power', function isPower(entity) {
+ return !!entity.tags.power;
+ });
+
+ // contains a past/future tag, but not in active use as a road/path/cycleway/etc..
+ defineFeature('past_future', function isPastFuture(entity) {
+ if (
+ major_roads[entity.tags.highway] ||
+ minor_roads[entity.tags.highway] ||
+ paths[entity.tags.highway]
+ ) { return false; }
+
+ var strings = Object.keys(entity.tags);
+
+ for (var i = 0, imax = strings.length; i !== imax; i++) {
+ var s = strings[i];
+ if (past_futures[s] || past_futures[entity.tags[s]]) { return true; }
+ }
+ return false;
+ });
+
+ // lines or areas that don't match another feature filter.
+ defineFeature('others', function isOther(entity, resolver, geometry) {
+ return (geometry === 'line' || geometry === 'area') && !(
+ _features.major_roads.filter(entity, resolver, geometry) ||
+ _features.minor_roads.filter(entity, resolver, geometry) ||
+ _features.paths.filter(entity, resolver, geometry) ||
+ _features.buildings.filter(entity, resolver, geometry) ||
+ _features.landuse.filter(entity, resolver, geometry) ||
+ _features.boundaries.filter(entity, resolver, geometry) ||
+ _features.water.filter(entity, resolver, geometry) ||
+ _features.rail.filter(entity, resolver, geometry) ||
+ _features.power.filter(entity, resolver, geometry) ||
+ _features.past_future.filter(entity, resolver, geometry)
+ );
+ });
+
+
+ function features() {}
+
+ features.keys = function() {
+ return _keys;
+ };
+
+ features.enabled = function(k) {
+ if (!arguments.length) {
+ return _.filter(_keys, function(k) { return _features[k].enabled; });
+ }
+ return _features[k] && _features[k].enabled;
+ };
+
+ features.disabled = function(k) {
+ if (!arguments.length) {
+ return _.reject(_keys, function(k) { return _features[k].enabled; });
+ }
+ return _features[k] && !_features[k].enabled;
+ };
+
+ features.hidden = function(k) {
+ if (!arguments.length) {
+ return _.filter(_keys, function(k) { return _features[k].hidden(); });
+ }
+ return _features[k] && _features[k].hidden();
+ };
+
+ features.autoHidden = function(k) {
+ if (!arguments.length) {
+ return _.filter(_keys, function(k) { return _features[k].autoHidden(); });
+ }
+ return _features[k] && _features[k].autoHidden();
+ };
+
+ features.enable = function(k) {
+ if (_features[k] && !_features[k].enabled) {
+ _features[k].enable();
+ update();
+ }
+ };
+
+ features.disable = function(k) {
+ if (_features[k] && _features[k].enabled) {
+ _features[k].disable();
+ update();
+ }
+ };
+
+ features.toggle = function(k) {
+ if (_features[k]) {
+ (function(f) { return f.enabled ? f.disable() : f.enable(); }(_features[k]));
+ update();
+ }
+ };
+
+ features.resetStats = function() {
+ _.each(_features, function(f) { f.count = 0; });
+ dispatch.change();
+ };
+
+ features.gatherStats = function(d, resolver, dimensions) {
+ var needsRedraw = false,
+ currHidden, geometry, matches;
+
+ _.each(_features, function(f) { f.count = 0; });
+
+ // adjust the threshold for point/building culling based on viewport size..
+ // a _cullFactor of 1 corresponds to a 1000x1000px viewport..
+ _cullFactor = dimensions[0] * dimensions[1] / 1000000;
+
+ for (var i = 0, imax = d.length; i !== imax; i++) {
+ geometry = d[i].geometry(resolver);
+ if (!(geometry === 'vertex' || geometry === 'relation')) {
+ matches = Object.keys(features.getMatches(d[i], resolver, geometry));
+ for (var j = 0, jmax = matches.length; j !== jmax; j++) {
+ _features[matches[j]].count++;
+ }
+ }
+ }
+
+ currHidden = features.hidden();
+ if (currHidden !== _hidden) {
+ _hidden = currHidden;
+ needsRedraw = true;
+ dispatch.change();
+ }
+
+ return needsRedraw;
+ };
+
+ features.stats = function() {
+ _.each(_keys, function(k) { _stats[k] = _features[k].count; });
+ return _stats;
+ };
+
+ features.clear = function(d) {
+ for (var i = 0, imax = d.length; i !== imax; i++) {
+ features.clearEntity(d[i]);
+ }
+ };
+
+ features.clearEntity = function(entity) {
+ delete _cache[iD.Entity.key(entity)];
+ };
+
+ features.reset = function() {
+ _cache = {};
+ };
+
+ features.getMatches = function(entity, resolver, geometry) {
+ var ent = iD.Entity.key(entity);
+
+ if (!_cache[ent]) {
+ _cache[ent] = {};
+ }
+ if (!_cache[ent].matches) {
+ var matches = {},
+ hasMatch = false;
+
+ if (!(geometry === 'vertex' || geometry === 'relation')) {
+ for (var i = 0, imax = _keys.length; i !== imax; i++) {
+ if (hasMatch && _keys[i] === 'others') {
+ continue;
+ }
+ if (_features[_keys[i]].filter(entity, resolver, geometry)) {
+ matches[_keys[i]] = hasMatch = true;
+ }
+ }
+ }
+ _cache[ent].matches = matches;
+ }
+ return _cache[ent].matches;
+ };
+
+ features.getParents = function(entity, resolver, geometry) {
+ var ent = iD.Entity.key(entity);
+
+ if (!_cache[ent]) {
+ _cache[ent] = {};
+ }
+ if (!_cache[ent].parents) {
+ var parents = [];
+
+ if (geometry !== 'point') {
+ if (geometry === 'vertex') {
+ parents = resolver.parentWays(entity);
+ } else { // 'line', 'area', 'relation'
+ parents = resolver.parentRelations(entity);
+ }
+ }
+ _cache[ent].parents = parents;
+ }
+ return _cache[ent].parents;
+ };
+
+ features.isHiddenFeature = function(entity, resolver, geometry) {
+ if (!entity.version) return false;
+
+ var matches = features.getMatches(entity, resolver, geometry);
+
+ for (var i = 0, imax = _hidden.length; i !== imax; i++) {
+ if (matches[_hidden[i]]) { return true; }
+ }
+ return false;
+ };
+
+ features.isHiddenChild = function(entity, resolver, geometry) {
+ if (!entity.version || geometry === 'point') { return false; }
+
+ var parents = features.getParents(entity, resolver, geometry);
+
+ if (!parents.length) { return false; }
+
+ for (var i = 0, imax = parents.length; i !== imax; i++) {
+ if (!features.isHidden(parents[i], resolver, parents[i].geometry(resolver))) {
+ return false;
+ }
+ }
+ return true;
+ };
+
+ features.hasHiddenConnections = function(entity, resolver) {
+ var childNodes, connections;
+
+ if (entity.type === 'midpoint') {
+ childNodes = [resolver.entity(entity.edge[0]), resolver.entity(entity.edge[1])];
+ connections = [];
+ } else {
+ childNodes = resolver.childNodes(entity);
+ connections = features.getParents(entity, resolver, entity.geometry(resolver));
+ }
+
+ // gather ways connected to child nodes..
+ connections = _.reduce(childNodes, function(result, e) {
+ return resolver.isShared(e) ? _.union(result, resolver.parentWays(e)) : result;
+ }, connections);
+
+ return connections.length ? _.any(connections, function(e) {
+ return features.isHidden(e, resolver, e.geometry(resolver));
+ }) : false;
+ };
+
+ features.isHidden = function(entity, resolver, geometry) {
+ if (!entity.version) return false;
+
+ if (geometry === 'vertex')
+ return features.isHiddenChild(entity, resolver, geometry);
+ if (geometry === 'point')
+ return features.isHiddenFeature(entity, resolver, geometry);
+
+ return features.isHiddenFeature(entity, resolver, geometry) ||
+ features.isHiddenChild(entity, resolver, geometry);
+ };
+
+ features.filter = function(d, resolver) {
+ if (!_hidden.length)
+ return d;
+
+ var result = [];
+ for (var i = 0, imax = d.length; i !== imax; i++) {
+ var entity = d[i];
+ if (!features.isHidden(entity, resolver, entity.geometry(resolver))) {
+ result.push(entity);
+ }
+ }
+ return result;
+ };
+
+ return d3.rebind(features, dispatch, 'on');
+};
iD.GpxLayer = function(context) {
var projection,
gj = {},
.on('change.map', redraw);
context.background()
.on('change.map', redraw);
+ context.features()
+ .on('redraw.map', redraw);
selection.call(zoom);
supersurface = selection.append('div')
.attr('id', 'supersurface');
- supersurface.call(context.background());
-
// Need a wrapper div because Opera can't cope with an absolutely positioned
// SVG element: http://bl.ocks.org/jfirebaugh/6fbfbd922552bf776c16
var dataLayer = supersurface.append('div')
.attr('id', 'surface')
.call(iD.svg.Surface(context));
+ supersurface.call(context.background());
+
surface.on('mousemove.map', function() {
mousemove = d3.event;
});
var all = context.intersects(map.extent()),
filter = d3.functor(true),
graph = context.graph();
+
+ all = context.features().filter(all, graph);
surface.call(vertices, graph, all, filter, map.extent(), map.zoom());
surface.call(midpoints, graph, all, filter, map.trimmedExtent());
dispatch.drawn({full: false});
function pxCenter() { return [dimensions[0] / 2, dimensions[1] / 2]; }
function drawVector(difference, extent) {
- var filter, all,
- graph = context.graph();
+ var graph = context.graph(),
+ features = context.features(),
+ all = context.intersects(map.extent()),
+ data, filter;
if (difference) {
var complete = difference.complete(map.extent());
- all = _.compact(_.values(complete));
+ data = _.compact(_.values(complete));
filter = function(d) { return d.id in complete; };
-
- } else if (extent) {
- all = context.intersects(map.extent().intersection(extent));
- var set = d3.set(_.pluck(all, 'id'));
- filter = function(d) { return set.has(d.id); };
+ features.clear(data);
} else {
- all = context.intersects(map.extent());
- filter = d3.functor(true);
+ // force a full redraw if gatherStats detects that a feature
+ // should be auto-hidden (e.g. points or buildings)..
+ if (features.gatherStats(all, graph, dimensions)) {
+ extent = undefined;
+ }
+
+ if (extent) {
+ data = context.intersects(map.extent().intersection(extent));
+ var set = d3.set(_.pluck(data, 'id'));
+ filter = function(d) { return set.has(d.id); };
+
+ } else {
+ data = all;
+ filter = d3.functor(true);
+ }
}
+ data = features.filter(data, graph);
+
surface
- .call(vertices, graph, all, filter, map.extent(), map.zoom())
- .call(lines, graph, all, filter)
- .call(areas, graph, all, filter)
- .call(midpoints, graph, all, filter, map.trimmedExtent())
- .call(labels, graph, all, filter, dimensions, !difference && !extent);
-
- if (points.points(context.intersects(map.extent()), 100).length >= 100) {
- surface.select('.layer-hit').selectAll('g.point').remove();
- } else {
- surface.call(points, points.points(all), filter);
- }
+ .call(vertices, graph, data, filter, map.extent(), map.zoom())
+ .call(lines, graph, data, filter)
+ .call(areas, graph, data, filter)
+ .call(midpoints, graph, data, filter, map.trimmedExtent())
+ .call(labels, graph, data, filter, dimensions, !difference && !extent)
+ .call(points, data, filter);
dispatch.drawn({full: true});
}
function editOff() {
- var mode = context.mode();
+ context.features().resetStats();
surface.selectAll('.layer *').remove();
dispatch.drawn({full: true});
- if (!(mode && mode.id === 'browse')) {
- context.enter(iD.modes.Browse(context));
- }
}
function zoomPan() {
iD.ui.flash(context.container())
.select('.content')
.text(t('cannot_zoom'));
- return setZoom(16, true);
+ return setZoom(context.minEditableZoom(), true);
}
projection
return redraw();
};
- map.zoomIn = function() { return map.zoom(Math.ceil(map.zoom() + 1)); };
- map.zoomOut = function() { return map.zoom(Math.floor(map.zoom() - 1)); };
+ map.zoomIn = function() { return map.zoom(~~map.zoom() + 1); };
+ map.zoomOut = function() { return map.zoom(~~map.zoom() - 1); };
map.center = function(loc) {
if (!arguments.length) {
return Math.max(Math.log(projection.scale() * 2 * Math.PI) / Math.LN2 - 8, 0);
}
+ if (z < minzoom) {
+ iD.ui.flash(context.container())
+ .select('.content')
+ .text(t('cannot_zoom'));
+ z = context.minEditableZoom();
+ }
+
if (setZoom(z)) {
dispatch.move(map);
}
map.zoomTo = function(entity, zoomLimits) {
var extent = entity.extent(context.graph()),
zoom = map.extentZoom(extent);
- zoomLimits = zoomLimits || [16, 20];
+ zoomLimits = zoomLimits || [context.minEditableZoom(), 20];
map.centerZoom(extent.center(), Math.min(Math.max(zoom, zoomLimits[0]), zoomLimits[1]));
};
};
map.editable = function() {
- return map.zoom() >= 16;
+ return map.zoom() >= context.minEditableZoom();
};
map.minzoom = function(_) {
return d3.rebind(map, dispatch, 'on');
};
+iD.MapillaryLayer = function (context) {
+ var enable = false,
+ currentImage,
+ svg, div, request;
+
+ function show(image) {
+ svg.selectAll('g')
+ .classed('selected', function(d) {
+ return currentImage && d.key === currentImage.key;
+ });
+
+ div.classed('hidden', false)
+ .classed('temp', image !== currentImage);
+
+ div.selectAll('img')
+ .attr('src', 'https://d1cuyjsrcm0gby.cloudfront.net/' + image.key + '/thumb-320.jpg');
+
+ div.selectAll('a')
+ .attr('href', 'http://mapillary.com/map/im/' + image.key);
+ }
+
+ function hide() {
+ currentImage = undefined;
+
+ svg.selectAll('g')
+ .classed('selected', false);
+
+ div.classed('hidden', true);
+ }
+
+ function transform(image) {
+ var t = 'translate(' + context.projection(image.loc) + ')';
+ if (image.ca) t += 'rotate(' + image.ca + ',0,0)';
+ return t;
+ }
+
+ function render(selection) {
+ svg = selection.selectAll('svg')
+ .data([0]);
+
+ svg.enter().append('svg')
+ .on('click', function() {
+ var image = d3.event.target.__data__;
+ if (currentImage === image) {
+ hide();
+ } else {
+ currentImage = image;
+ show(image);
+ }
+ })
+ .on('mouseover', function() {
+ show(d3.event.target.__data__);
+ })
+ .on('mouseout', function() {
+ if (currentImage) {
+ show(currentImage);
+ } else {
+ hide();
+ }
+ });
+
+ svg.style('display', enable ? 'block' : 'none');
+
+ div = context.container().selectAll('.mapillary-image')
+ .data([0]);
+
+ var enter = div.enter().append('div')
+ .attr('class', 'mapillary-image');
+
+ enter.append('button')
+ .on('click', hide)
+ .append('div')
+ .attr('class', 'icon close');
+
+ enter.append('img');
+
+ var link = enter.append('a')
+ .attr('class', 'link')
+ .attr('target', '_blank');
+
+ link.append('span')
+ .attr('class', 'icon icon-pre-text out-link');
+
+ link.append('span')
+ .text(t('mapillary.view_on_mapillary'));
+
+ if (!enable) {
+ hide();
+
+ svg.selectAll('g')
+ .remove();
+
+ return;
+ }
+
+ // Update existing images while waiting for new ones to load.
+ svg.selectAll('g')
+ .attr('transform', transform);
+
+ var extent = context.map().extent();
+
+ if (request)
+ request.abort();
+
+ request = d3.json('https://a.mapillary.com/v2/search/s/geojson?client_id=NzNRM2otQkR2SHJzaXJmNmdQWVQ0dzoxNjQ3MDY4ZTUxY2QzNGI2&min_lat=' +
+ extent[0][1] + '&max_lat=' + extent[1][1] + '&min_lon=' +
+ extent[0][0] + '&max_lon=' + extent[1][0] + '&max_results=100&geojson=true',
+ function (error, data) {
+ if (error) return;
+
+ var images = [];
+
+ for (var i = 0; i < data.features.length; i++) {
+ var sequence = data.features[i];
+ for (var j = 0; j < sequence.geometry.coordinates.length; j++) {
+ images.push({
+ key: sequence.properties.keys[j],
+ ca: sequence.properties.cas[j],
+ loc: sequence.geometry.coordinates[j]
+ });
+ if (images.length >= 1000) break;
+ }
+ }
+
+ var g = svg.selectAll('g')
+ .data(images, function(d) { return d.key; });
+
+ var enter = g.enter().append('g')
+ .attr('class', 'image');
+
+ enter.append('path')
+ .attr('d', 'M 0,-5 l 0,-20 l -5,30 l 10,0 l -5,-30');
+
+ enter.append('circle')
+ .attr('dx', '0')
+ .attr('dy', '0')
+ .attr('r', '8');
+
+ g.attr('transform', transform);
+
+ g.exit()
+ .remove();
+ });
+ }
+
+ render.enable = function(_) {
+ if (!arguments.length) return enable;
+ enable = _;
+ return render;
+ };
+
+ render.dimensions = function(_) {
+ if (!arguments.length) return svg.dimensions();
+ svg.dimensions(_);
+ return render;
+ };
+
+ return render;
+};
iD.TileLayer = function() {
var tileSize = 256,
tile = d3.geo.tile(),
function setPattern(d) {
for (var i = 0; i < patternKeys.length; i++) {
if (patterns.hasOwnProperty(d.tags[patternKeys[i]])) {
- this.style.fill = 'url("#pattern-' + patterns[d.tags[patternKeys[i]]] + '")';
+ this.style.fill = this.style.stroke = 'url("#pattern-' + patterns[d.tags[patternKeys[i]]] + '")';
return;
}
}
- this.style.fill = '';
+ this.style.fill = this.style.stroke = '';
}
return function drawAreas(surface, graph, entities, filter) {
});
var data = {
+ clip: areas,
shadow: strokes,
stroke: strokes,
fill: areas
};
+ var clipPaths = surface.selectAll('defs').selectAll('.clipPath')
+ .filter(filter)
+ .data(data.clip, iD.Entity.key);
+
+ clipPaths.enter()
+ .append('clipPath')
+ .attr('class', 'clipPath')
+ .attr('id', function(entity) { return entity.id + '-clippath'; })
+ .append('path');
+
+ clipPaths.selectAll('path')
+ .attr('d', path);
+
+ clipPaths.exit()
+ .remove();
+
var areagroup = surface
.select('.layer-areas')
.selectAll('g.areagroup')
this.setAttribute('class', entity.type + ' area ' + layer + ' ' + entity.id);
if (layer === 'fill') {
+ this.setAttribute('clip-path', 'url(#' + entity.id + '-clippath)');
setPattern.apply(this, arguments);
}
})
.filter(midpointFilter)
.data(_.values(midpoints), function(d) { return d.id; });
- var group = groups.enter()
+ var enter = groups.enter()
.insert('g', ':first-child')
.attr('class', 'midpoint');
- group.append('polygon')
+ enter.append('polygon')
.attr('points', '-6,8 10,0 -6,-8')
.attr('class', 'shadow');
- group.append('polygon')
+ enter.append('polygon')
.attr('points', '-3,4 5,0 -3,-4')
.attr('class', 'fill');
- groups.attr('transform', function(d) {
- var translate = iD.svg.PointTransform(projection),
- a = context.entity(d.edge[0]),
- b = context.entity(d.edge[1]),
- angle = Math.round(iD.geo.angle(a, b, projection) * (180 / Math.PI));
- return translate(d) + ' rotate(' + angle + ')';
- });
+ groups
+ .attr('transform', function(d) {
+ var translate = iD.svg.PointTransform(projection),
+ a = context.entity(d.edge[0]),
+ b = context.entity(d.edge[1]),
+ angle = Math.round(iD.geo.angle(a, b, projection) * (180 / Math.PI));
+ return translate(d) + ' rotate(' + angle + ')';
+ })
+ .call(iD.svg.TagClasses().tags(
+ function(d) { return d.parents[0].tags; }
+ ));
// Propagate data bindings.
groups.select('polygon.shadow');
return b.loc[1] - a.loc[1];
}
- function drawPoints(surface, points, filter) {
+ return function drawPoints(surface, entities, filter) {
+ var graph = context.graph(),
+ points = _.filter(entities, function(e) { return e.geometry(graph) === 'point'; });
+
points.sort(sortY);
var groups = surface.select('.layer-hit').selectAll('g.point')
groups.exit()
.remove();
- }
-
- drawPoints.points = function(entities, limit) {
- var graph = context.graph(),
- points = [];
-
- for (var i = 0; i < entities.length; i++) {
- var entity = entities[i];
- if (entity.geometry(graph) === 'point') {
- points.push(entity);
- if (limit && points.length >= limit) break;
- }
- }
-
- return points;
};
-
- return drawPoints;
};
iD.svg.Surface = function() {
return function (selection) {
+ selection.selectAll('defs')
+ .data([0])
+ .enter()
+ .append('defs');
+
var layers = selection.selectAll('.layer')
.data(['areas', 'lines', 'hit', 'halo', 'label']);
var vertices = {};
function addChildVertices(entity) {
- var i;
- if (entity.type === 'way') {
- for (i = 0; i < entity.nodes.length; i++) {
- addChildVertices(graph.entity(entity.nodes[i]));
- }
- } else if (entity.type === 'relation') {
- for (i = 0; i < entity.members.length; i++) {
- var member = context.hasEntity(entity.members[i].id);
- if (member) {
- addChildVertices(member);
+ if (!context.features().isHiddenFeature(entity, graph, entity.geometry(graph))) {
+ var i;
+ if (entity.type === 'way') {
+ for (i = 0; i < entity.nodes.length; i++) {
+ addChildVertices(graph.entity(entity.nodes[i]));
}
+ } else if (entity.type === 'relation') {
+ for (i = 0; i < entity.members.length; i++) {
+ var member = context.hasEntity(entity.members[i].id);
+ if (member) {
+ addChildVertices(member);
+ }
+ }
+ } else if (entity.intersects(extent, graph)) {
+ vertices[entity.id] = entity;
}
- } else if (entity.intersects(extent, graph)) {
- vertices[entity.id] = entity;
}
}
.attr('class', 'spinner')
.call(iD.ui.Spinner(context));
- content
- .call(iD.ui.Attribution(context));
-
- content.append('div')
- .style('display', 'none')
- .attr('class', 'help-wrap map-overlay fillL col5 content');
-
var controls = bar.append('div')
.attr('class', 'map-controls');
.attr('class', 'map-control background-control')
.call(iD.ui.Background(context));
+ controls.append('div')
+ .attr('class', 'map-control map-data-control')
+ .call(iD.ui.MapData(context));
+
controls.append('div')
.attr('class', 'map-control help-control')
.call(iD.ui.Help(context));
- var footer = content.append('div')
+ var about = content.append('div')
+ .attr('id', 'about');
+
+ about.append('div')
+ .attr('id', 'attrib')
+ .call(iD.ui.Attribution(context));
+
+ var footer = about.append('div')
.attr('id', 'footer')
.attr('class', 'fillD');
.attr('id', 'scale-block')
.call(iD.ui.Scale(context));
- var linkList = footer.append('div')
+ var aboutList = footer.append('div')
.attr('id', 'info-block')
.append('ul')
- .attr('id', 'about-list')
- .attr('class', 'link-list');
+ .attr('id', 'about-list');
if (!context.embed()) {
- linkList.call(iD.ui.Account(context));
+ aboutList.call(iD.ui.Account(context));
}
- linkList.append('li')
+ aboutList.append('li')
.append('a')
.attr('target', '_blank')
.attr('tabindex', -1)
.attr('href', 'http://github.com/openstreetmap/iD')
.text(iD.version);
- var bugReport = linkList.append('li')
+ var bugReport = aboutList.append('li')
.append('a')
.attr('target', '_blank')
.attr('tabindex', -1)
.placement('top')
);
- linkList.append('li')
+ aboutList.append('li')
+ .attr('class', 'feature-warning')
+ .attr('tabindex', -1)
+ .call(iD.ui.FeatureInfo(context));
+
+ aboutList.append('li')
.attr('class', 'user-list')
.attr('tabindex', -1)
.call(iD.ui.Contributors(context));
};
iD.ui.tooltipHtml = function(text, key) {
- return '<span>' + text + '</span>' + '<div class="keyhint-wrap">' + '<span> ' + (t('tooltip_keyhint')) + ' </span>' + '<span class="keyhint"> ' + key + '</span></div>';
+ var s = '<span>' + text + '</span>';
+ if (key) {
+ s += '<div class="keyhint-wrap">' +
+ '<span> ' + (t('tooltip_keyhint')) + ' </span>' +
+ '<span class="keyhint"> ' + key + '</span></div>';
+ }
+ return s;
};
iD.ui.Account = function(context) {
var connection = context.connection();
function update(selection) {
if (!connection.authenticated()) {
selection.selectAll('#userLink, #logoutLink')
- .style('display', 'none');
+ .classed('hide', true);
return;
}
if (err) return;
selection.selectAll('#userLink, #logoutLink')
- .style('display', 'list-item');
+ .classed('hide', false);
// Link
userLink.append('a')
return function(selection) {
selection.append('li')
.attr('id', 'logoutLink')
- .style('display', 'none');
+ .classed('hide', true);
selection.append('li')
.attr('id', 'userLink')
- .style('display', 'none');
+ .classed('hide', true);
connection.on('auth.account', function() { update(selection); });
update(selection);
};
};
iD.ui.Background = function(context) {
- var key = 'b',
+ var key = 'B',
opacities = [1, 0.75, 0.5, 0.25],
directions = [
['left', [1, 0]],
selectLayer();
}
- function clickGpx() {
- context.background().toggleGpxLayer();
- update();
- }
-
function drawList(layerList, type, change, filter) {
var sources = context.background()
.sources(context.map().extent())
backgroundList.call(drawList, 'radio', clickSetSource, function(d) { return !d.overlay; });
overlayList.call(drawList, 'checkbox', clickSetOverlay, function(d) { return d.overlay; });
- var hasGpx = context.background().hasGpxLayer(),
- showsGpx = context.background().showsGpxLayer();
-
- gpxLayerItem
- .classed('active', showsGpx)
- .selectAll('input')
- .property('disabled', !hasGpx)
- .property('checked', showsGpx);
-
selectLayer();
var source = context.background().baseLayerSource();
}
}
- var content = selection.append('div')
- .attr('class', 'fillL map-overlay col3 content hide'),
- tooltip = bootstrap.tooltip()
- .placement('left')
- .html(true)
- .title(iD.ui.tooltipHtml(t('background.description'), key));
-
function hide() { setVisible(false); }
function toggle() {
}
}
- var button = selection.append('button')
+
+ var content = selection.append('div')
+ .attr('class', 'fillL map-overlay col3 content hide'),
+ tooltip = bootstrap.tooltip()
+ .placement('left')
+ .html(true)
+ .title(iD.ui.tooltipHtml(t('background.description'), key)),
+ button = selection.append('button')
.attr('tabindex', -1)
.on('click', toggle)
.call(tooltip),
- opa = content
- .append('div')
- .attr('class', 'opacity-options-wrapper'),
shown = false;
button.append('span')
.attr('class', 'icon layers light');
+
+ var opa = content.append('div')
+ .attr('class', 'opacity-options-wrapper');
+
opa.append('h4')
.text(t('background.title'));
var overlayList = content.append('ul')
.attr('class', 'layer-list');
- var gpxLayerItem = content.append('ul')
- .style('display', iD.detect().filedrop ? 'block' : 'none')
- .attr('class', 'layer-list')
- .append('li')
- .classed('layer-toggle-gpx', true);
-
- gpxLayerItem.append('button')
- .attr('class', 'layer-extent')
- .call(bootstrap.tooltip()
- .title(t('gpx.zoom'))
- .placement('left'))
- .on('click', function() {
- d3.event.preventDefault();
- d3.event.stopPropagation();
- context.background().zoomToGpxLayer();
- })
- .append('span')
- .attr('class', 'icon geolocate');
-
- gpxLayerItem.append('button')
- .attr('class', 'layer-browse')
- .call(bootstrap.tooltip()
- .title(t('gpx.browse'))
- .placement('left'))
- .on('click', function() {
- d3.select(document.createElement('input'))
- .attr('type', 'file')
- .on('change', function() {
- context.background().gpxLayerFiles(d3.event.target.files);
- })
- .node().click();
- })
- .append('span')
- .attr('class', 'icon geocode');
-
- label = gpxLayerItem.append('label')
- .call(bootstrap.tooltip()
- .title(t('gpx.drag_drop'))
- .placement('top'));
-
- label.append('input')
- .attr('type', 'checkbox')
- .property('disabled', true)
- .on('change', clickGpx);
-
- label.append('span')
- .text(t('gpx.local_layer'));
-
var adjustments = content.append('div')
.attr('class', 'adjustments');
update();
setOpacity(opacityDefault);
- var keybinding = d3.keybinding('background');
- keybinding.on(key, toggle);
+ var keybinding = d3.keybinding('background')
+ .on(key, toggle)
+ .on('F', hide)
+ .on('H', hide);
d3.select(document)
.call(keybinding);
var commentField = commentSection.append('textarea')
.attr('placeholder', t('commit.description_placeholder'))
+ .attr('maxlength', 255)
.property('value', context.storage('comment') || '')
.on('blur.save', function () {
context.storage('comment', this.value);
.attr('class', 'commit-section modal-section fillL2');
changeSection.append('h3')
- .text(summary.length + ' Changes');
+ .text(t('commit.changes', {count: summary.length}));
var li = changeSection.append('ul')
.attr('class', 'changeset-list')
li.append('span')
.attr('class', 'change-type')
.text(function(d) {
- return d.changeType + ' ';
+ return t('commit.' + d.changeType) + ' ';
});
li.append('strong')
if (!arguments.length) return preset;
if (_ !== preset) {
preset = _;
- reference = iD.ui.TagReference(preset.reference(context.geometry(id)))
+ reference = iD.ui.TagReference(preset.reference(context.geometry(id)), context)
.showing(false);
}
return entityEditor;
return d3.rebind(entityEditor, event, 'on');
};
+iD.ui.FeatureInfo = function(context) {
+ function update(selection) {
+ var features = context.features(),
+ stats = features.stats(),
+ count = 0,
+ hiddenList = _.compact(_.map(features.hidden(), function(k) {
+ if (stats[k]) {
+ count += stats[k];
+ return String(stats[k]) + ' ' + t('feature.' + k + '.description');
+ }
+ }));
+
+ selection.html('');
+
+ if (hiddenList.length) {
+ var tooltip = bootstrap.tooltip()
+ .placement('top')
+ .html(true)
+ .title(function() {
+ return iD.ui.tooltipHtml(hiddenList.join('<br/>'));
+ });
+
+ var warning = selection.append('a')
+ .attr('href', '#')
+ .attr('tabindex', -1)
+ .html(t('feature_info.hidden_warning', { count: count }))
+ .call(tooltip)
+ .on('click', function() {
+ tooltip.hide(warning);
+ // open map data panel?
+ d3.event.preventDefault();
+ });
+ }
+
+ selection
+ .classed('hide', !hiddenList.length);
+ }
+
+ return function(selection) {
+ update(selection);
+
+ context.features().on('change.feature_info', function() {
+ update(selection);
+ });
+ };
+};
iD.ui.FeatureList = function(context) {
var geocodeResults;
};
};
iD.ui.Help = function(context) {
- var key = 'h';
+ var key = 'H';
var docKeys = [
'help.help',
});
function help(selection) {
- var shown = false;
function hide() {
setVisible(false);
if (show !== shown) {
button.classed('active', show);
shown = show;
+
if (show) {
+ selection.on('mousedown.help-inside', function() {
+ return d3.event.stopPropagation();
+ });
pane.style('display', 'block')
.style('right', '-500px')
.transition()
.each('end', function() {
d3.select(this).style('display', 'none');
});
+ selection.on('mousedown.help-inside', null);
}
}
}
setVisible(false);
}
- var tooltip = bootstrap.tooltip()
- .placement('left')
- .html(true)
- .title(iD.ui.tooltipHtml(t('help.title'), key));
- var button = selection.append('button')
- .attr('tabindex', -1)
- .on('click', toggle)
- .call(tooltip);
+ var pane = selection.append('div')
+ .attr('class', 'help-wrap map-overlay fillL col5 content hide'),
+ tooltip = bootstrap.tooltip()
+ .placement('left')
+ .html(true)
+ .title(iD.ui.tooltipHtml(t('help.title'), key)),
+ button = selection.append('button')
+ .attr('tabindex', -1)
+ .on('click', toggle)
+ .call(tooltip),
+ shown = false;
button.append('span')
.attr('class', 'icon help light');
- var pane = context.container()
- .select('.help-wrap');
var toc = pane.append('ul')
.attr('class', 'toc');
clickHelp(docs[0], 0);
var keybinding = d3.keybinding('help')
- .on(key, toggle);
+ .on(key, toggle)
+ .on('B', hide)
+ .on('F', hide);
d3.select(document)
.call(keybinding);
context.surface().on('mousedown.help-outside', hide);
- context.container().on('mousedown.b.help-outside', hide);
-
- pane.on('mousedown.help-inside', function() {
- return d3.event.stopPropagation();
- });
-
+ context.container().on('mousedown.help-outside', hide);
}
return help;
return loading;
};
+iD.ui.MapData = function(context) {
+ var key = 'F',
+ features = context.features().keys(),
+ fills = ['wireframe', 'partial', 'full'],
+ fillDefault = context.storage('area-fill') || 'partial',
+ fillSelected = fillDefault;
+
+ function map_data(selection) {
+
+ function showsFeature(d) {
+ return autoHiddenFeature(d) ? null : context.features().enabled(d);
+ }
+
+ function autoHiddenFeature(d) {
+ return context.features().autoHidden(d);
+ }
+
+ function clickFeature(d) {
+ context.features().toggle(d);
+ update();
+ }
+
+ function showsFill(d) {
+ return fillSelected === d;
+ }
+
+ function setFill(d) {
+ _.each(fills, function(opt) {
+ context.surface().classed('fill-' + opt, Boolean(opt === d));
+ });
+
+ fillSelected = d;
+ if (d !== 'wireframe') {
+ fillDefault = d;
+ context.storage('area-fill', d);
+ }
+ update();
+ }
+
+ function clickGpx() {
+ context.background().toggleGpxLayer();
+ update();
+ }
+
+ function clickMapillary() {
+ context.background().toggleMapillaryLayer();
+ update();
+ }
+
+ function drawList(selection, data, type, name, change, active) {
+ var items = selection.selectAll('li')
+ .data(data);
+
+ //enter
+ var enter = items.enter()
+ .append('li')
+ .attr('class', 'layer')
+ .call(bootstrap.tooltip()
+ .html(true)
+ .title(function(d) {
+ var tip = t(name + '.' + d + '.tooltip'),
+ key = (d === 'wireframe' ? 'W' : null);
+
+ if (name === 'feature' && autoHiddenFeature(d)) {
+ tip += '<div>' + t('map_data.autohidden') + '</div>';
+ }
+ return iD.ui.tooltipHtml(tip, key);
+ })
+ .placement('top')
+ );
+
+ var label = enter.append('label');
+
+ label.append('input')
+ .attr('type', type)
+ .attr('name', name)
+ .on('change', change);
+
+ label.append('span')
+ .text(function(d) { return t(name + '.' + d + '.description'); });
+
+ //update
+ items
+ .classed('active', active)
+ .selectAll('input')
+ .property('checked', active);
+
+ if (name === 'feature') {
+ items
+ .selectAll('input')
+ .property('indeterminate', autoHiddenFeature);
+ }
+
+ //exit
+ items.exit()
+ .remove();
+ }
+
+ function update() {
+ featureList.call(drawList, features, 'checkbox', 'feature', clickFeature, showsFeature);
+ fillList.call(drawList, fills, 'radio', 'area_fill', setFill, showsFill);
+
+ var hasGpx = context.background().hasGpxLayer(),
+ showsGpx = context.background().showsGpxLayer(),
+ showsMapillary = context.background().showsMapillaryLayer();
+
+ gpxLayerItem
+ .classed('active', showsGpx)
+ .selectAll('input')
+ .property('disabled', !hasGpx)
+ .property('checked', showsGpx);
+
+ mapillaryLayerItem
+ .classed('active', showsMapillary)
+ .selectAll('input')
+ .property('checked', showsMapillary);
+ }
+
+ function hidePanel() { setVisible(false); }
+
+ function togglePanel() {
+ if (d3.event) d3.event.preventDefault();
+ tooltip.hide(button);
+ setVisible(!button.classed('active'));
+ }
+
+ function toggleWireframe() {
+ if (d3.event) {
+ d3.event.preventDefault();
+ d3.event.stopPropagation();
+ }
+ setFill((fillSelected === 'wireframe' ? fillDefault : 'wireframe'));
+ }
+
+ function setVisible(show) {
+ if (show !== shown) {
+ button.classed('active', show);
+ shown = show;
+
+ if (show) {
+ selection.on('mousedown.map_data-inside', function() {
+ return d3.event.stopPropagation();
+ });
+ content.style('display', 'block')
+ .style('right', '-300px')
+ .transition()
+ .duration(200)
+ .style('right', '0px');
+ } else {
+ content.style('display', 'block')
+ .style('right', '0px')
+ .transition()
+ .duration(200)
+ .style('right', '-300px')
+ .each('end', function() {
+ d3.select(this).style('display', 'none');
+ });
+ selection.on('mousedown.map_data-inside', null);
+ }
+ }
+ }
+
+
+ var content = selection.append('div')
+ .attr('class', 'fillL map-overlay col3 content hide'),
+ tooltip = bootstrap.tooltip()
+ .placement('left')
+ .html(true)
+ .title(iD.ui.tooltipHtml(t('map_data.description'), key)),
+ button = selection.append('button')
+ .attr('tabindex', -1)
+ .on('click', togglePanel)
+ .call(tooltip),
+ shown = false;
+
+ button.append('span')
+ .attr('class', 'icon data light');
+
+ content.append('h4')
+ .text(t('map_data.title'));
+
+
+ // data layers
+ content.append('a')
+ .text(t('map_data.data_layers'))
+ .attr('href', '#')
+ .classed('hide-toggle', true)
+ .classed('expanded', true)
+ .on('click', function() {
+ var exp = d3.select(this).classed('expanded');
+ layerContainer.style('display', exp ? 'none' : 'block');
+ d3.select(this).classed('expanded', !exp);
+ d3.event.preventDefault();
+ });
+
+ var layerContainer = content.append('div')
+ .attr('class', 'filters')
+ .style('display', 'block');
+
+ // mapillary
+ var mapillaryLayerItem = layerContainer.append('ul')
+ .attr('class', 'layer-list')
+ .append('li');
+
+ var label = mapillaryLayerItem.append('label')
+ .call(bootstrap.tooltip()
+ .title(t('mapillary.tooltip'))
+ .placement('top'));
+
+ label.append('input')
+ .attr('type', 'checkbox')
+ .on('change', clickMapillary);
+
+ label.append('span')
+ .text(t('mapillary.title'));
+
+ // gpx
+ var gpxLayerItem = layerContainer.append('ul')
+ .style('display', iD.detect().filedrop ? 'block' : 'none')
+ .attr('class', 'layer-list')
+ .append('li')
+ .classed('layer-toggle-gpx', true);
+
+ gpxLayerItem.append('button')
+ .attr('class', 'layer-extent')
+ .call(bootstrap.tooltip()
+ .title(t('gpx.zoom'))
+ .placement('left'))
+ .on('click', function() {
+ d3.event.preventDefault();
+ d3.event.stopPropagation();
+ context.background().zoomToGpxLayer();
+ })
+ .append('span')
+ .attr('class', 'icon geolocate');
+
+ gpxLayerItem.append('button')
+ .attr('class', 'layer-browse')
+ .call(bootstrap.tooltip()
+ .title(t('gpx.browse'))
+ .placement('left'))
+ .on('click', function() {
+ d3.select(document.createElement('input'))
+ .attr('type', 'file')
+ .on('change', function() {
+ context.background().gpxLayerFiles(d3.event.target.files);
+ })
+ .node().click();
+ })
+ .append('span')
+ .attr('class', 'icon geocode');
+
+ label = gpxLayerItem.append('label')
+ .call(bootstrap.tooltip()
+ .title(t('gpx.drag_drop'))
+ .placement('top'));
+
+ label.append('input')
+ .attr('type', 'checkbox')
+ .property('disabled', true)
+ .on('change', clickGpx);
+
+ label.append('span')
+ .text(t('gpx.local_layer'));
+
+
+ // area fills
+ content.append('a')
+ .text(t('map_data.fill_area'))
+ .attr('href', '#')
+ .classed('hide-toggle', true)
+ .classed('expanded', false)
+ .on('click', function() {
+ var exp = d3.select(this).classed('expanded');
+ fillContainer.style('display', exp ? 'none' : 'block');
+ d3.select(this).classed('expanded', !exp);
+ d3.event.preventDefault();
+ });
+
+ var fillContainer = content.append('div')
+ .attr('class', 'filters')
+ .style('display', 'none');
+
+ var fillList = fillContainer.append('ul')
+ .attr('class', 'layer-list');
+
+
+ // feature filters
+ content.append('a')
+ .text(t('map_data.map_features'))
+ .attr('href', '#')
+ .classed('hide-toggle', true)
+ .classed('expanded', false)
+ .on('click', function() {
+ var exp = d3.select(this).classed('expanded');
+ featureContainer.style('display', exp ? 'none' : 'block');
+ d3.select(this).classed('expanded', !exp);
+ d3.event.preventDefault();
+ });
+
+ var featureContainer = content.append('div')
+ .attr('class', 'filters')
+ .style('display', 'none');
+
+ var featureList = featureContainer.append('ul')
+ .attr('class', 'layer-list');
+
+
+ context.features()
+ .on('change.map_data-update', update);
+
+ update();
+ setFill(fillDefault);
+
+ var keybinding = d3.keybinding('features')
+ .on(key, togglePanel)
+ .on('W', toggleWireframe)
+ .on('B', hidePanel)
+ .on('H', hidePanel);
+
+ d3.select(document)
+ .call(keybinding);
+
+ context.surface().on('mousedown.map_data-outside', hidePanel);
+ context.container().on('mousedown.map_data-outside', hidePanel);
+ }
+
+ return map_data;
+};
iD.ui.modal = function(selection, blocking) {
var previous = selection.select('div.modal');
iD.modes.AddLine(context),
iD.modes.AddArea(context)];
+ function editable() {
+ return context.editable() && context.mode().id !== 'save';
+ }
+
return function(selection) {
var buttons = selection.selectAll('button.add-button')
.data(modes);
context
.on('enter.modes', update);
- update();
-
buttons.append('span')
.attr('class', function(mode) { return mode.id + ' icon icon-pre-text'; });
var keybinding = d3.keybinding('mode-buttons');
modes.forEach(function(m) {
- keybinding.on(m.key, function() { if (context.editable()) context.enter(m); });
+ keybinding.on(m.key, function() { if (editable()) context.enter(m); });
});
d3.select(document)
.call(keybinding);
function update() {
- buttons.property('disabled', !context.editable());
+ buttons.property('disabled', !editable());
}
};
};
var button = div.append('button')
.attr('class', 'zoom-to notice')
- .on('click', function() { context.map().zoom(16); });
+ .on('click', function() { context.map().zoom(context.minEditableZoom()); });
button.append('span')
.attr('class', 'icon zoom-in-invert');
.text(t('zoom_in_edit'));
function disableTooHigh() {
- div.style('display', context.map().editable() ? 'none' : 'block');
+ div.style('display', context.editable() ? 'none' : 'block');
}
context.map()
// Enter
var $enter = $fields.enter()
- .insert('div', '.more-buttons')
+ .append('div')
.attr('class', function(field) {
return 'form-field form-field-' + field.id;
});
return field.present();
})
.each(function(field) {
- var reference = iD.ui.TagReference(field.reference || {key: field.key});
+ var reference = iD.ui.TagReference(field.reference || {key: field.key}, context);
if (state === 'hover') {
reference.showing(false);
$fields.exit()
.remove();
- var $more = selection.selectAll('.more-buttons')
- .data([0]);
+ notShown = notShown.map(function(field) {
+ return {
+ title: field.label(),
+ value: field.label(),
+ field: field
+ };
+ });
+
+ var $more = selection.selectAll('.more-fields')
+ .data((notShown.length > 0) ? [0] : []);
$more.enter().append('div')
- .attr('class', 'more-buttons inspector-inner');
+ .attr('class', 'more-fields')
+ .append('label')
+ .text(t('inspector.add_fields'));
- var $buttons = $more.selectAll('.preset-add-field')
- .data(notShown, fieldKey);
+ var $input = $more.selectAll('.value')
+ .data([0]);
- $buttons.enter()
- .append('button')
- .attr('class', 'preset-add-field')
- .call(bootstrap.tooltip()
- .placement('top')
- .title(function(d) { return d.label(); }))
- .append('span')
- .attr('class', function(d) { return 'icon ' + d.icon; });
+ $input.enter().append('input')
+ .attr('class', 'value')
+ .attr('type', 'text');
+
+ $input.value('')
+ .attr('placeholder', function() {
+ var placeholder = [];
+ for (var field in notShown) {
+ placeholder.push(notShown[field].title);
+ }
+ return placeholder.slice(0,3).join(', ') + ((placeholder.length > 3) ? '…' : '');
+ })
+ .call(d3.combobox().data(notShown)
+ .minItems(1)
+ .on('accept', show));
- $buttons.on('click', show);
+ $more.exit()
+ .remove();
- $buttons.exit()
+ $input.exit()
.remove();
function show(field) {
+ field = field.field;
field.show = true;
presets(selection);
field.input.focus();
};
item.preset = preset;
- item.reference = iD.ui.TagReference(preset.reference(context.geometry(id)));
+ item.reference = iD.ui.TagReference(preset.reference(context.geometry(id)), context);
return item;
}
};
iD.ui.RawTagEditor = function(context) {
var event = d3.dispatch('change'),
- taginfo = iD.taginfo(),
showBlank = false,
state,
preset,
selection.call(iD.ui.Disclosure()
.title(t('inspector.all_tags') + ' (' + count + ')')
- .expanded(iD.ui.RawTagEditor.expanded || preset.isFallback())
+ .expanded(context.storage('raw_tag_editor.expanded') === 'true' || preset.isFallback())
.on('toggled', toggled)
.content(content));
function toggled(expanded) {
- iD.ui.RawTagEditor.expanded = expanded;
+ context.storage('raw_tag_editor.expanded', expanded);
if (expanded) {
selection.node().parentNode.scrollTop += 200;
}
.append('span')
.attr('class', 'icon delete');
- $enter.each(bindTypeahead);
+ if (context.taginfo()) {
+ $enter.each(bindTypeahead);
+ }
// Update
$items.order();
$items.each(function(tag) {
- var reference = iD.ui.TagReference({key: tag.key});
+ var reference = iD.ui.TagReference({key: tag.key}, context);
if (state === 'hover') {
reference.showing(false);
key.call(d3.combobox()
.fetcher(function(value, callback) {
- taginfo.keys({
+ context.taginfo().keys({
debounce: true,
geometry: context.geometry(id),
query: value
value.call(d3.combobox()
.fetcher(function(value, callback) {
- taginfo.values({
+ context.taginfo().values({
debounce: true,
key: key.value(),
geometry: context.geometry(id),
var tag = {};
tag[d.key] = undefined;
event.change(tag);
+ d3.select(this.parentNode).remove();
}
function addTag() {
.text('0');
var keybinding = d3.keybinding('undo-redo')
- .on(key, save);
+ .on(key, save, true);
d3.select(document)
.call(keybinding);
return d3.rebind(success, event, 'on');
};
-iD.ui.TagReference = function(tag) {
+iD.ui.TagReference = function(tag, context) {
var tagReference = {},
- taginfo = iD.taginfo(),
button,
body,
loaded,
function load() {
button.classed('tag-reference-loading', true);
- taginfo.docs(tag, function(err, docs) {
+ context.taginfo().docs(tag, function(err, docs) {
if (!err && docs) {
docs = findLocal(docs);
}
} else if (loaded) {
show();
} else {
- load();
+ if (context.taginfo()) {
+ load();
+ }
}
});
};
button.append('span')
.attr('class', function(d) { return d.id + ' icon'; });
- var keybinding = d3.keybinding('zoom')
- .on('+', function() { context.zoomIn(); })
- .on('-', function() { context.zoomOut(); })
- .on('⇧=', function() { context.zoomIn(); })
- .on('dash', function() { context.zoomOut(); });
+ var keybinding = d3.keybinding('zoom');
+
+ _.each(['=','ffequals','plus','ffplus'], function(key) {
+ keybinding.on(key, function() { context.zoomIn(); });
+ keybinding.on('⇧' + key, function() { context.zoomIn(); });
+ });
+ _.each(['-','ffminus','_','dash'], function(key) {
+ keybinding.on(key, function() { context.zoomOut(); });
+ keybinding.on('⇧' + key, function() { context.zoomOut(); });
+ });
d3.select(document)
.call(keybinding);
housenumber: 1/3,
street: 2/3,
city: 2/3,
+ state: 1/4,
postcode: 1/3
};
}
function address(selection) {
+ isInitialized = false;
+
selection.selectAll('.preset-input-wrap')
.remove();
};
address.focus = function() {
- wrap.selectAll('input').node().focus();
+ var node = wrap.selectAll('input').node();
+ if (node) node.focus();
};
return d3.rebind(address, event, 'on');
return d3.rebind(check, event, 'on');
};
iD.ui.preset.combo =
-iD.ui.preset.typeCombo = function(field) {
+iD.ui.preset.typeCombo = function(field, context) {
var event = d3.dispatch('change'),
optstrings = field.strings && field.strings.options,
optarray = field.options,
strings[k] = k.replace(/_+/g, ' ');
});
stringsLoaded();
- } else {
- iD.taginfo().values({key: field.key}, function(err, data) {
+ } else if (context.taginfo()) {
+ context.taginfo().values({key: field.key}, function(err, data) {
if (!err) {
_.each(_.pluck(data, 'value'), function(k) {
strings[k] = k.replace(/_+/g, ' ');
} else {
preset = presets.item('type/restriction/' +
iD.geo.inferRestriction(
- graph.entity(datum.from.node),
- graph.entity(datum.via.node),
- graph.entity(datum.to.node),
+ graph,
+ datum.from,
+ datum.via,
+ datum.to,
projection));
}
return match || all.item(geometry);
};
+ // Because of the open nature of tagging, iD will never have a complete
+ // list of tags used in OSM, so we want it to have logic like "assume
+ // that a closed way with an amenity tag is an area, unless the amenity
+ // is one of these specific types". This function computes a structure
+ // that allows testing of such conditions, based on the presets designated
+ // as as supporting (or not supporting) the area geometry.
+ //
+ // The returned object L is a whitelist/blacklist of tags. A closed way
+ // with a tag (k, v) is considered to be an area if `k in L && !(v in L[k])`
+ // (see `iD.Way#isArea()`). In other words, the keys of L form the whitelist,
+ // and the subkeys form the blacklist.
+ all.areaKeys = function() {
+ var areaKeys = {};
+
+ all.collection.forEach(function(d) {
+ if (d.suggestion) return;
+
+ for (var key in d.tags) break;
+ if (!key) return;
+ var value = d.tags[key];
+
+ if (['highway', 'footway', 'railway', 'type'].indexOf(key) === -1) {
+ if (d.geometry.indexOf('area') >= 0) {
+ areaKeys[key] = areaKeys[key] || {};
+ } else if (key in areaKeys && value !== '*') {
+ areaKeys[key][value] = true;
+ }
+ }
+ });
+
+ return areaKeys;
+ };
+
all.load = function(d) {
if (d.fields) {
"yh:WIDTH_RANK",
"SK53_bulk:load"
],
- "imagery": [
- {
- "name": "7th Series (OS7)",
- "type": "tms",
- "template": "http://ooc.openstreetmap.org/os7/{zoom}/{x}/{y}.jpg",
- "polygon": [
- [
- [
- -9,
- 49.8
- ],
- [
- -9,
- 61.1
- ],
- [
- 1.9,
- 61.1
- ],
- [
- 1.9,
- 49.8
- ],
- [
- -9,
- 49.8
- ]
- ]
- ]
- },
- {
- "name": "AGRI black-and-white 2.5m",
- "type": "tms",
- "template": "http://agri.openstreetmap.org/{zoom}/{x}/{y}.png",
- "polygon": [
- [
- [
- 112.28778,
- -28.784589
- ],
- [
- 112.71488,
- -31.13894
- ],
- [
- 114.11263,
- -34.178287
- ],
- [
- 113.60788,
- -37.39012
- ],
- [
- 117.17992,
- -37.451794
- ],
- [
- 119.31538,
- -37.42096
- ],
- [
- 121.72262,
- -36.708394
- ],
- [
- 123.81925,
- -35.76893
- ],
- [
- 125.9547,
- -34.3066
- ],
- [
- 127.97368,
- -33.727398
- ],
- [
- 130.07031,
- -33.24166
- ],
- [
- 130.10913,
- -33.888704
- ],
- [
- 131.00214,
- -34.049705
- ],
- [
- 131.0798,
- -34.72257
- ],
- [
- 132.28342,
- -35.39
- ],
- [
- 134.18591,
- -35.61126
- ],
- [
- 133.8753,
- -37.1119
- ],
- [
- 134.8459,
- -37.6365
- ],
- [
- 139.7769,
- -37.82075
- ],
- [
- 139.93223,
- -39.4283
- ],
- [
- 141.6017,
- -39.8767
- ],
- [
- 142.3783,
- -39.368294
- ],
- [
- 142.3783,
- -40.64702
- ],
- [
- 142.49478,
- -42.074874
- ],
- [
- 144.009,
- -44.060127
- ],
- [
- 147.23161,
- -44.03222
- ],
- [
- 149.05645,
- -42.534313
- ],
- [
- 149.52237,
- -40.99959
- ],
- [
- 149.9494,
- -40.852921
- ],
- [
- 150.8036,
- -38.09627
- ],
- [
- 151.81313,
- -38.12682
- ],
- [
- 156.20052,
- -22.667706
- ],
- [
- 156.20052,
- -20.10109
- ],
- [
- 156.62761,
- -17.417627
- ],
- [
- 155.26869,
- -17.19521
- ],
- [
- 154.14272,
- -19.51662
- ],
- [
- 153.5215,
- -18.34139
- ],
- [
- 153.05558,
- -16.5636
- ],
- [
- 152.78379,
- -15.256768
- ],
- [
- 152.27905,
- -13.4135
- ],
- [
- 151.3472,
- -12.391767
- ],
- [
- 149.48354,
- -12.05024
- ],
- [
- 146.9598,
- -9.992408
- ],
- [
- 135.9719,
- -9.992408
- ],
- [
- 130.3032,
- -10.33636
- ],
- [
- 128.09016,
- -12.164136
- ],
- [
- 125.91588,
- -12.315912
- ],
- [
- 124.3239,
- -11.860326
- ],
- [
- 122.03323,
- -11.974295
- ],
- [
- 118.26706,
- -16.9353
- ],
- [
- 115.93747,
- -19.11357
- ],
- [
- 114.0738,
- -21.11863
- ],
- [
- 113.49141,
- -22.596033
- ],
- [
- 112.28778,
- -28.784589
- ]
- ]
- ],
- "terms_text": "AGRI"
- },
- {
- "name": "Bing aerial imagery",
- "type": "bing",
- "description": "Satellite and aerial imagery.",
- "template": "http://www.bing.com/maps/",
- "scaleExtent": [
- 0,
- 22
- ],
- "id": "Bing",
- "default": true
- },
- {
- "name": "British Columbia Mosaic",
- "type": "tms",
- "template": "http://{switch:a,b,c,d}.imagery.paulnorman.ca/tiles/bc_mosaic/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 9,
- 20
- ],
- "polygon": [
- [
- [
- -123.3176032,
- 49.3272567
- ],
- [
- -123.4405258,
- 49.3268222
- ],
- [
- -123.440717,
- 49.3384429
- ],
- [
- -123.4398375,
- 49.3430357
- ],
- [
- -123.4401258,
- 49.3435398
- ],
- [
- -123.4401106,
- 49.3439946
- ],
- [
- -123.4406265,
- 49.3444493
- ],
- [
- -123.4404747,
- 49.3455762
- ],
- [
- -123.4397768,
- 49.3460606
- ],
- [
- -123.4389726,
- 49.3461298
- ],
- [
- -123.4372904,
- 49.3567236
- ],
- [
- -123.4374774,
- 49.3710843
- ],
- [
- -123.4335292,
- 49.3709446
- ],
- [
- -123.4330357,
- 49.373725
- ],
- [
- -123.4332717,
- 49.3751221
- ],
- [
- -123.4322847,
- 49.3761001
- ],
- [
- -123.4317482,
- 49.3791736
- ],
- [
- -123.4314264,
- 49.3795927
- ],
- [
- -123.4307826,
- 49.3823866
- ],
- [
- -123.4313405,
- 49.3827358
- ],
- [
- -123.4312118,
- 49.3838533
- ],
- [
- -123.4300415,
- 49.3845883
- ],
- [
- -123.4189858,
- 49.3847087
- ],
- [
- -123.4192235,
- 49.4135198
- ],
- [
- -123.3972532,
- 49.4135691
- ],
- [
- -123.3972758,
- 49.4243473
- ],
- [
- -123.4006929,
- 49.4243314
- ],
- [
- -123.4007741,
- 49.5703491
- ],
- [
- -123.4000812,
- 49.570345
- ],
- [
- -123.4010761,
- 49.5933838
- ],
- [
- -123.3760399,
- 49.5932848
- ],
- [
- -123.3769811,
- 49.6756063
- ],
- [
- -123.3507288,
- 49.6756396
- ],
- [
- -123.3507969,
- 49.7086751
- ],
- [
- -123.332887,
- 49.708722
- ],
- [
- -123.3327888,
- 49.7256288
- ],
- [
- -123.3007111,
- 49.7255625
- ],
- [
- -123.3009164,
- 49.7375384
- ],
- [
- -123.2885986,
- 49.737638
- ],
- [
- -123.2887823,
- 49.8249207
- ],
- [
- -123.2997955,
- 49.8249207
- ],
- [
- -123.3011721,
- 49.8497814
- ],
- [
- -123.3218218,
- 49.850669
- ],
- [
- -123.3273284,
- 49.8577696
- ],
- [
- -123.3276726,
- 49.9758852
- ],
- [
- -123.3008279,
- 49.9752212
- ],
- [
- -123.3007204,
- 50.0997002
- ],
- [
- -123.2501716,
- 50.100735
- ],
- [
- -123.25091,
- 50.2754901
- ],
- [
- -123.0224338,
- 50.2755598
- ],
- [
- -123.0224879,
- 50.3254853
- ],
- [
- -123.0009318,
- 50.3254689
- ],
- [
- -123.0007778,
- 50.3423899
- ],
- [
- -122.9775023,
- 50.3423408
- ],
- [
- -122.9774766,
- 50.3504306
- ],
- [
- -122.9508137,
- 50.3504961
- ],
- [
- -122.950795,
- 50.3711984
- ],
- [
- -122.9325221,
- 50.3711521
- ],
- [
- -122.9321048,
- 50.399793
- ],
- [
- -122.8874234,
- 50.3999748
- ],
- [
- -122.8873385,
- 50.4256108
- ],
- [
- -122.6620152,
- 50.4256959
- ],
- [
- -122.6623083,
- 50.3994506
- ],
- [
- -122.5990316,
- 50.3992413
- ],
- [
- -122.5988274,
- 50.3755206
- ],
- [
- -122.5724832,
- 50.3753706
- ],
- [
- -122.5735621,
- 50.2493891
- ],
- [
- -122.5990415,
- 50.2494643
- ],
- [
- -122.5991504,
- 50.2265663
- ],
- [
- -122.6185016,
- 50.2266359
- ],
- [
- -122.6185741,
- 50.2244081
- ],
- [
- -122.6490609,
- 50.2245126
- ],
- [
- -122.6492181,
- 50.1993528
- ],
- [
- -122.7308575,
- 50.1993758
- ],
- [
- -122.7311583,
- 50.1244287
- ],
- [
- -122.7490352,
- 50.1245109
- ],
- [
- -122.7490541,
- 50.0903032
- ],
- [
- -122.7687806,
- 50.0903435
- ],
- [
- -122.7689801,
- 49.9494546
- ],
- [
- -122.999047,
- 49.9494706
- ],
- [
- -122.9991199,
- 49.8754553
- ],
- [
- -122.9775894,
- 49.8754553
- ],
- [
- -122.9778145,
- 49.6995098
- ],
- [
- -122.9992362,
- 49.6994781
- ],
- [
- -122.9992524,
- 49.6516526
- ],
- [
- -123.0221525,
- 49.6516526
- ],
- [
- -123.0221162,
- 49.5995096
- ],
- [
- -123.0491898,
- 49.5994625
- ],
- [
- -123.0491898,
- 49.5940523
- ],
- [
- -123.0664647,
- 49.5940405
- ],
- [
- -123.0663594,
- 49.5451868
- ],
- [
- -123.0699906,
- 49.5451202
- ],
- [
- -123.0699008,
- 49.5413153
- ],
- [
- -123.0706835,
- 49.5392837
- ],
- [
- -123.0708888,
- 49.5379931
- ],
- [
- -123.0711454,
- 49.5368773
- ],
- [
- -123.0711069,
- 49.5358115
- ],
- [
- -123.0713764,
- 49.532822
- ],
- [
- -123.0716458,
- 49.5321141
- ],
- [
- -123.07171,
- 49.5313896
- ],
- [
- -123.0720308,
- 49.5304153
- ],
- [
- -123.0739554,
- 49.5303486
- ],
- [
- -123.0748023,
- 49.5294992
- ],
- [
- -123.0748151,
- 49.5288079
- ],
- [
- -123.0743403,
- 49.5280584
- ],
- [
- -123.073532,
- 49.5274588
- ],
- [
- -123.0733652,
- 49.5270423
- ],
- [
- -123.0732882,
- 49.5255932
- ],
- [
- -123.0737116,
- 49.5249602
- ],
- [
- -123.0736218,
- 49.5244938
- ],
- [
- -123.0992583,
- 49.5244854
- ],
- [
- -123.0991649,
- 49.4754502
- ],
- [
- -123.071052,
- 49.4755252
- ],
- [
- -123.071088,
- 49.4663034
- ],
- [
- -123.0739204,
- 49.4663054
- ],
- [
- -123.07422,
- 49.4505028
- ],
- [
- -123.0746319,
- 49.4500858
- ],
- [
- -123.074651,
- 49.449329
- ],
- [
- -123.0745999,
- 49.449018
- ],
- [
- -123.0744619,
- 49.4486927
- ],
- [
- -123.0743336,
- 49.4479899
- ],
- [
- -123.0742427,
- 49.4477688
- ],
- [
- -123.0743061,
- 49.4447473
- ],
- [
- -123.0747103,
- 49.4447556
- ],
- [
- -123.0746384,
- 49.4377306
- ],
- [
- -122.9996506,
- 49.4377363
- ],
- [
- -122.9996506,
- 49.4369214
- ],
- [
- -122.8606163,
- 49.4415314
- ],
- [
- -122.8102616,
- 49.4423972
- ],
- [
- -122.8098984,
- 49.3766739
- ],
- [
- -122.4036093,
- 49.3766617
- ],
- [
- -122.4036341,
- 49.3771944
- ],
- [
- -122.264739,
- 49.3773028
- ],
- [
- -122.263542,
- 49.2360088
- ],
- [
- -122.2155742,
- 49.236139
- ],
- [
- -122.0580956,
- 49.235878
- ],
- [
- -121.9538274,
- 49.2966525
- ],
- [
- -121.9400911,
- 49.3045389
- ],
- [
- -121.9235761,
- 49.3142257
- ],
- [
- -121.8990871,
- 49.3225436
- ],
- [
- -121.8883447,
- 49.3259752
- ],
- [
- -121.8552982,
- 49.3363575
- ],
- [
- -121.832697,
- 49.3441519
- ],
- [
- -121.7671336,
- 49.3654361
- ],
- [
- -121.6736683,
- 49.3654589
- ],
- [
- -121.6404153,
- 49.3743775
- ],
- [
- -121.5961976,
- 49.3860493
- ],
- [
- -121.5861178,
- 49.3879193
- ],
- [
- -121.5213684,
- 49.3994649
- ],
- [
- -121.5117375,
- 49.4038378
- ],
- [
- -121.4679302,
- 49.4229024
- ],
- [
- -121.4416803,
- 49.4345607
- ],
- [
- -121.422429,
- 49.4345788
- ],
- [
- -121.3462885,
- 49.3932312
- ],
- [
- -121.3480144,
- 49.3412388
- ],
- [
- -121.5135035,
- 49.320577
- ],
- [
- -121.6031683,
- 49.2771727
- ],
- [
- -121.6584065,
- 49.1856125
- ],
- [
- -121.679953,
- 49.1654109
- ],
- [
- -121.7815793,
- 49.0702559
- ],
- [
- -121.8076228,
- 49.0622471
- ],
- [
- -121.9393997,
- 49.0636219
- ],
- [
- -121.9725524,
- 49.0424179
- ],
- [
- -121.9921394,
- 49.0332869
- ],
- [
- -122.0035289,
- 49.0273413
- ],
- [
- -122.0178564,
- 49.0241067
- ],
- [
- -122.1108634,
- 48.9992786
- ],
- [
- -122.1493067,
- 48.9995305
- ],
- [
- -122.1492705,
- 48.9991498
- ],
- [
- -122.1991447,
- 48.9996019
- ],
- [
- -122.199181,
- 48.9991974
- ],
- [
- -122.234365,
- 48.9994829
- ],
- [
- -122.234365,
- 49.000173
- ],
- [
- -122.3994722,
- 49.0012385
- ],
- [
- -122.4521338,
- 49.0016326
- ],
- [
- -122.4521338,
- 49.000883
- ],
- [
- -122.4584089,
- 49.0009306
- ],
- [
- -122.4584814,
- 48.9993124
- ],
- [
- -122.4992458,
- 48.9995022
- ],
- [
- -122.4992458,
- 48.9992906
- ],
- [
- -122.5492618,
- 48.9995107
- ],
- [
- -122.5492564,
- 48.9993206
- ],
- [
- -122.6580785,
- 48.9994212
- ],
- [
- -122.6581061,
- 48.9954007
- ],
- [
- -122.7067604,
- 48.9955344
- ],
- [
- -122.7519761,
- 48.9956392
- ],
- [
- -122.7922063,
- 48.9957204
- ],
- [
- -122.7921907,
- 48.9994331
- ],
- [
- -123.0350417,
- 48.9995724
- ],
- [
- -123.0350437,
- 49.0000958
- ],
- [
- -123.0397091,
- 49.0000536
- ],
- [
- -123.0397444,
- 49.0001812
- ],
- [
- -123.0485506,
- 49.0001348
- ],
- [
- -123.0485329,
- 49.0004712
- ],
- [
- -123.0557122,
- 49.000448
- ],
- [
- -123.0556324,
- 49.0002284
- ],
- [
- -123.0641365,
- 49.0001293
- ],
- [
- -123.064158,
- 48.9999421
- ],
- [
- -123.074899,
- 48.9996928
- ],
- [
- -123.0750717,
- 49.0006218
- ],
- [
- -123.0899573,
- 49.0003726
- ],
- [
- -123.109229,
- 48.9999421
- ],
- [
- -123.1271193,
- 49.0003046
- ],
- [
- -123.1359953,
- 48.9998741
- ],
- [
- -123.1362716,
- 49.0005765
- ],
- [
- -123.153851,
- 48.9998061
- ],
- [
- -123.1540533,
- 49.0006806
- ],
- [
- -123.1710015,
- 49.0001274
- ],
- [
- -123.2000916,
- 48.9996849
- ],
- [
- -123.2003446,
- 49.0497785
- ],
- [
- -123.2108845,
- 49.0497232
- ],
- [
- -123.2112218,
- 49.051989
- ],
- [
- -123.2070479,
- 49.0520857
- ],
- [
- -123.2078911,
- 49.0607884
- ],
- [
- -123.2191688,
- 49.0600978
- ],
- [
- -123.218958,
- 49.0612719
- ],
- [
- -123.2251766,
- 49.0612719
- ],
- [
- -123.2253874,
- 49.0622388
- ],
- [
- -123.2297088,
- 49.0620316
- ],
- [
- -123.2298142,
- 49.068592
- ],
- [
- -123.2331869,
- 49.0687301
- ],
- [
- -123.2335031,
- 49.0705945
- ],
- [
- -123.249313,
- 49.0702493
- ],
- [
- -123.2497346,
- 49.0802606
- ],
- [
- -123.2751358,
- 49.0803986
- ],
- [
- -123.2751358,
- 49.0870947
- ],
- [
- -123.299483,
- 49.0873018
- ],
- [
- -123.29944,
- 49.080253
- ],
- [
- -123.3254508,
- 49.0803944
- ],
- [
- -123.3254353,
- 49.1154662
- ],
- [
- -123.2750966,
- 49.1503341
- ],
- [
- -123.275181,
- 49.1873267
- ],
- [
- -123.2788067,
- 49.1871063
- ],
- [
- -123.278891,
- 49.1910741
- ],
- [
- -123.3004767,
- 49.1910741
- ],
- [
- -123.3004186,
- 49.2622933
- ],
- [
- -123.3126185,
- 49.2622416
- ],
- [
- -123.3125958,
- 49.2714948
- ],
- [
- -123.3154251,
- 49.2714727
- ],
- [
- -123.3156628,
- 49.2818906
- ],
- [
- -123.3174735,
- 49.2818832
- ],
- [
- -123.3174961,
- 49.2918488
- ],
- [
- -123.3190353,
- 49.2918488
- ],
- [
- -123.3190692,
- 49.298602
- ],
- [
- -123.3202349,
- 49.2985651
- ],
- [
- -123.3202786,
- 49.3019749
- ],
- [
- -123.3222679,
- 49.3019605
- ],
- [
- -123.3223943,
- 49.3118263
- ],
- [
- -123.3254002,
- 49.3118086
- ],
- [
- -123.3253898,
- 49.3201721
- ],
- [
- -123.3192695,
- 49.3201957
- ],
- [
- -123.3192242,
- 49.3246748
- ],
- [
- -123.3179437,
- 49.3246596
- ],
- [
- -123.3179861,
- 49.3254065
- ]
- ]
- ],
- "terms_url": "http://imagery.paulnorman.ca/tiles/about.html",
- "terms_text": "Copyright Province of British Columbia, City of Surrey"
- },
- {
- "name": "Cambodia, Laos, Thailand, Vietnam bilingual",
- "type": "tms",
- "template": "http://{switch:a,b,c,d}.tile.osm-tools.org/osm_then/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 19
- ],
- "polygon": [
- [
- [
- 97.3,
- 5.6
- ],
- [
- 97.3,
- 23.4
- ],
- [
- 109.6,
- 23.4
- ],
- [
- 109.6,
- 5.6
- ],
- [
- 97.3,
- 5.6
- ]
- ]
- ],
- "terms_url": "http://www.osm-tools.org/",
- "terms_text": "© osm-tools.org & OpenStreetMap contributors, CC-BY-SA"
- },
- {
- "name": "Freemap.sk Car",
- "type": "tms",
- "template": "http://t{switch:1,2,3,4}.freemap.sk/A/{zoom}/{x}/{y}.jpeg",
- "scaleExtent": [
- 8,
- 16
- ],
- "polygon": [
- [
- [
- 19.83682,
- 49.25529
- ],
- [
- 19.80075,
- 49.42385
- ],
- [
- 19.60437,
- 49.48058
- ],
- [
- 19.49179,
- 49.63961
- ],
- [
- 19.21831,
- 49.52604
- ],
- [
- 19.16778,
- 49.42521
- ],
- [
- 19.00308,
- 49.42236
- ],
- [
- 18.97611,
- 49.5308
- ],
- [
- 18.54685,
- 49.51425
- ],
- [
- 18.31432,
- 49.33818
- ],
- [
- 18.15913,
- 49.2961
- ],
- [
- 18.05564,
- 49.11134
- ],
- [
- 17.56396,
- 48.84938
- ],
- [
- 17.17929,
- 48.88816
- ],
- [
- 17.058,
- 48.81105
- ],
- [
- 16.90426,
- 48.61947
- ],
- [
- 16.79685,
- 48.38561
- ],
- [
- 17.06762,
- 48.01116
- ],
- [
- 17.32787,
- 47.97749
- ],
- [
- 17.51699,
- 47.82535
- ],
- [
- 17.74776,
- 47.73093
- ],
- [
- 18.29515,
- 47.72075
- ],
- [
- 18.67959,
- 47.75541
- ],
- [
- 18.89755,
- 47.81203
- ],
- [
- 18.79463,
- 47.88245
- ],
- [
- 18.84318,
- 48.04046
- ],
- [
- 19.46212,
- 48.05333
- ],
- [
- 19.62064,
- 48.22938
- ],
- [
- 19.89585,
- 48.09387
- ],
- [
- 20.33766,
- 48.2643
- ],
- [
- 20.55395,
- 48.52358
- ],
- [
- 20.82335,
- 48.55714
- ],
- [
- 21.10271,
- 48.47096
- ],
- [
- 21.45863,
- 48.55513
- ],
- [
- 21.74536,
- 48.31435
- ],
- [
- 22.15293,
- 48.37179
- ],
- [
- 22.61255,
- 49.08914
- ],
- [
- 22.09997,
- 49.23814
- ],
- [
- 21.9686,
- 49.36363
- ],
- [
- 21.6244,
- 49.46989
- ],
- [
- 21.06873,
- 49.46402
- ],
- [
- 20.94336,
- 49.31088
- ],
- [
- 20.73052,
- 49.44006
- ],
- [
- 20.22804,
- 49.41714
- ],
- [
- 20.05234,
- 49.23052
- ],
- [
- 19.83682,
- 49.25529
- ]
- ]
- ],
- "terms_text": "Copyright ©2007-2012 Freemap Slovakia (www.freemap.sk). Some rights reserved."
- },
- {
- "name": "Freemap.sk Cyclo",
- "type": "tms",
- "template": "http://t{switch:1,2,3,4}.freemap.sk/C/{zoom}/{x}/{y}.jpeg",
- "scaleExtent": [
- 8,
- 16
- ],
- "polygon": [
- [
- [
- 19.83682,
- 49.25529
- ],
- [
- 19.80075,
- 49.42385
- ],
- [
- 19.60437,
- 49.48058
- ],
- [
- 19.49179,
- 49.63961
- ],
- [
- 19.21831,
- 49.52604
- ],
- [
- 19.16778,
- 49.42521
- ],
- [
- 19.00308,
- 49.42236
- ],
- [
- 18.97611,
- 49.5308
- ],
- [
- 18.54685,
- 49.51425
- ],
- [
- 18.31432,
- 49.33818
- ],
- [
- 18.15913,
- 49.2961
- ],
- [
- 18.05564,
- 49.11134
- ],
- [
- 17.56396,
- 48.84938
- ],
- [
- 17.17929,
- 48.88816
- ],
- [
- 17.058,
- 48.81105
- ],
- [
- 16.90426,
- 48.61947
- ],
- [
- 16.79685,
- 48.38561
- ],
- [
- 17.06762,
- 48.01116
- ],
- [
- 17.32787,
- 47.97749
- ],
- [
- 17.51699,
- 47.82535
- ],
- [
- 17.74776,
- 47.73093
- ],
- [
- 18.29515,
- 47.72075
- ],
- [
- 18.67959,
- 47.75541
- ],
- [
- 18.89755,
- 47.81203
- ],
- [
- 18.79463,
- 47.88245
- ],
- [
- 18.84318,
- 48.04046
- ],
- [
- 19.46212,
- 48.05333
- ],
- [
- 19.62064,
- 48.22938
- ],
- [
- 19.89585,
- 48.09387
- ],
- [
- 20.33766,
- 48.2643
- ],
- [
- 20.55395,
- 48.52358
- ],
- [
- 20.82335,
- 48.55714
- ],
- [
- 21.10271,
- 48.47096
- ],
- [
- 21.45863,
- 48.55513
- ],
- [
- 21.74536,
- 48.31435
- ],
- [
- 22.15293,
- 48.37179
- ],
- [
- 22.61255,
- 49.08914
- ],
- [
- 22.09997,
- 49.23814
- ],
- [
- 21.9686,
- 49.36363
- ],
- [
- 21.6244,
- 49.46989
- ],
- [
- 21.06873,
- 49.46402
- ],
- [
- 20.94336,
- 49.31088
- ],
- [
- 20.73052,
- 49.44006
- ],
- [
- 20.22804,
- 49.41714
- ],
- [
- 20.05234,
- 49.23052
- ],
- [
- 19.83682,
- 49.25529
- ]
- ]
- ],
- "terms_text": "Copyright ©2007-2012 Freemap Slovakia (www.freemap.sk). Some rights reserved."
- },
- {
- "name": "Freemap.sk Hiking",
- "type": "tms",
- "template": "http://t{switch:1,2,3,4}.freemap.sk/T/{zoom}/{x}/{y}.jpeg",
- "scaleExtent": [
- 8,
- 16
- ],
- "polygon": [
- [
- [
- 19.83682,
- 49.25529
- ],
- [
- 19.80075,
- 49.42385
- ],
- [
- 19.60437,
- 49.48058
- ],
- [
- 19.49179,
- 49.63961
- ],
- [
- 19.21831,
- 49.52604
- ],
- [
- 19.16778,
- 49.42521
- ],
- [
- 19.00308,
- 49.42236
- ],
- [
- 18.97611,
- 49.5308
- ],
- [
- 18.54685,
- 49.51425
- ],
- [
- 18.31432,
- 49.33818
- ],
- [
- 18.15913,
- 49.2961
- ],
- [
- 18.05564,
- 49.11134
- ],
- [
- 17.56396,
- 48.84938
- ],
- [
- 17.17929,
- 48.88816
- ],
- [
- 17.058,
- 48.81105
- ],
- [
- 16.90426,
- 48.61947
- ],
- [
- 16.79685,
- 48.38561
- ],
- [
- 17.06762,
- 48.01116
- ],
- [
- 17.32787,
- 47.97749
- ],
- [
- 17.51699,
- 47.82535
- ],
- [
- 17.74776,
- 47.73093
- ],
- [
- 18.29515,
- 47.72075
- ],
- [
- 18.67959,
- 47.75541
- ],
- [
- 18.89755,
- 47.81203
- ],
- [
- 18.79463,
- 47.88245
- ],
- [
- 18.84318,
- 48.04046
- ],
- [
- 19.46212,
- 48.05333
- ],
- [
- 19.62064,
- 48.22938
- ],
- [
- 19.89585,
- 48.09387
- ],
- [
- 20.33766,
- 48.2643
- ],
- [
- 20.55395,
- 48.52358
- ],
- [
- 20.82335,
- 48.55714
- ],
- [
- 21.10271,
- 48.47096
- ],
- [
- 21.45863,
- 48.55513
- ],
- [
- 21.74536,
- 48.31435
- ],
- [
- 22.15293,
- 48.37179
- ],
- [
- 22.61255,
- 49.08914
- ],
- [
- 22.09997,
- 49.23814
- ],
- [
- 21.9686,
- 49.36363
- ],
- [
- 21.6244,
- 49.46989
- ],
- [
- 21.06873,
- 49.46402
- ],
- [
- 20.94336,
- 49.31088
- ],
- [
- 20.73052,
- 49.44006
- ],
- [
- 20.22804,
- 49.41714
- ],
- [
- 20.05234,
- 49.23052
- ],
- [
- 19.83682,
- 49.25529
- ]
- ]
- ],
- "terms_text": "Copyright ©2007-2012 Freemap Slovakia (www.freemap.sk). Some rights reserved."
- },
- {
- "name": "Freemap.sk Ski",
- "type": "tms",
- "template": "http://t{switch:1,2,3,4}.freemap.sk/K/{zoom}/{x}/{y}.jpeg",
- "scaleExtent": [
- 8,
- 16
- ],
- "polygon": [
- [
- [
- 19.83682,
- 49.25529
- ],
- [
- 19.80075,
- 49.42385
- ],
- [
- 19.60437,
- 49.48058
- ],
- [
- 19.49179,
- 49.63961
- ],
- [
- 19.21831,
- 49.52604
- ],
- [
- 19.16778,
- 49.42521
- ],
- [
- 19.00308,
- 49.42236
- ],
- [
- 18.97611,
- 49.5308
- ],
- [
- 18.54685,
- 49.51425
- ],
- [
- 18.31432,
- 49.33818
- ],
- [
- 18.15913,
- 49.2961
- ],
- [
- 18.05564,
- 49.11134
- ],
- [
- 17.56396,
- 48.84938
- ],
- [
- 17.17929,
- 48.88816
- ],
- [
- 17.058,
- 48.81105
- ],
- [
- 16.90426,
- 48.61947
- ],
- [
- 16.79685,
- 48.38561
- ],
- [
- 17.06762,
- 48.01116
- ],
- [
- 17.32787,
- 47.97749
- ],
- [
- 17.51699,
- 47.82535
- ],
- [
- 17.74776,
- 47.73093
- ],
- [
- 18.29515,
- 47.72075
- ],
- [
- 18.67959,
- 47.75541
- ],
- [
- 18.89755,
- 47.81203
- ],
- [
- 18.79463,
- 47.88245
- ],
- [
- 18.84318,
- 48.04046
- ],
- [
- 19.46212,
- 48.05333
- ],
- [
- 19.62064,
- 48.22938
- ],
- [
- 19.89585,
- 48.09387
- ],
- [
- 20.33766,
- 48.2643
- ],
- [
- 20.55395,
- 48.52358
- ],
- [
- 20.82335,
- 48.55714
- ],
- [
- 21.10271,
- 48.47096
- ],
- [
- 21.45863,
- 48.55513
- ],
- [
- 21.74536,
- 48.31435
- ],
- [
- 22.15293,
- 48.37179
- ],
- [
- 22.61255,
- 49.08914
- ],
- [
- 22.09997,
- 49.23814
- ],
- [
- 21.9686,
- 49.36363
- ],
- [
- 21.6244,
- 49.46989
- ],
- [
- 21.06873,
- 49.46402
- ],
- [
- 20.94336,
- 49.31088
- ],
- [
- 20.73052,
- 49.44006
- ],
- [
- 20.22804,
- 49.41714
- ],
- [
- 20.05234,
- 49.23052
- ],
- [
- 19.83682,
- 49.25529
- ]
- ]
- ],
- "terms_text": "Copyright ©2007-2012 Freemap Slovakia (www.freemap.sk). Some rights reserved."
- },
- {
- "name": "Fugro (Denmark)",
- "type": "tms",
- "template": "http://{switch:a,b,c}.tile.openstreetmap.dk/fugro2005/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 19
- ],
- "polygon": [
- [
- [
- 8.3743941,
- 54.9551655
- ],
- [
- 8.3683809,
- 55.4042149
- ],
- [
- 8.2103997,
- 55.4039795
- ],
- [
- 8.2087314,
- 55.4937345
- ],
- [
- 8.0502655,
- 55.4924731
- ],
- [
- 8.0185123,
- 56.7501399
- ],
- [
- 8.1819161,
- 56.7509948
- ],
- [
- 8.1763274,
- 57.0208898
- ],
- [
- 8.3413329,
- 57.0219872
- ],
- [
- 8.3392467,
- 57.1119574
- ],
- [
- 8.5054433,
- 57.1123212
- ],
- [
- 8.5033923,
- 57.2020499
- ],
- [
- 9.3316304,
- 57.2027636
- ],
- [
- 9.3319079,
- 57.2924835
- ],
- [
- 9.4978864,
- 57.2919578
- ],
- [
- 9.4988593,
- 57.3820608
- ],
- [
- 9.6649749,
- 57.3811615
- ],
- [
- 9.6687295,
- 57.5605591
- ],
- [
- 9.8351961,
- 57.5596265
- ],
- [
- 9.8374896,
- 57.6493322
- ],
- [
- 10.1725726,
- 57.6462818
- ],
- [
- 10.1754245,
- 57.7367768
- ],
- [
- 10.5118282,
- 57.7330269
- ],
- [
- 10.5152095,
- 57.8228945
- ],
- [
- 10.6834853,
- 57.8207722
- ],
- [
- 10.6751613,
- 57.6412021
- ],
- [
- 10.5077045,
- 57.6433097
- ],
- [
- 10.5039992,
- 57.5535088
- ],
- [
- 10.671038,
- 57.5514113
- ],
- [
- 10.6507805,
- 57.1024538
- ],
- [
- 10.4857673,
- 57.1045138
- ],
- [
- 10.4786236,
- 56.9249051
- ],
- [
- 10.3143981,
- 56.9267573
- ],
- [
- 10.3112341,
- 56.8369269
- ],
- [
- 10.4750295,
- 56.83509
- ],
- [
- 10.4649016,
- 56.5656681
- ],
- [
- 10.9524239,
- 56.5589761
- ],
- [
- 10.9479249,
- 56.4692243
- ],
- [
- 11.1099335,
- 56.4664675
- ],
- [
- 11.1052639,
- 56.376833
- ],
- [
- 10.9429901,
- 56.3795284
- ],
- [
- 10.9341235,
- 56.1994768
- ],
- [
- 10.7719685,
- 56.2020244
- ],
- [
- 10.7694751,
- 56.1120103
- ],
- [
- 10.6079695,
- 56.1150259
- ],
- [
- 10.4466742,
- 56.116717
- ],
- [
- 10.2865948,
- 56.118675
- ],
- [
- 10.2831527,
- 56.0281851
- ],
- [
- 10.4439274,
- 56.0270388
- ],
- [
- 10.4417713,
- 55.7579243
- ],
- [
- 10.4334961,
- 55.6693533
- ],
- [
- 10.743814,
- 55.6646861
- ],
- [
- 10.743814,
- 55.5712253
- ],
- [
- 10.8969041,
- 55.5712253
- ],
- [
- 10.9051793,
- 55.3953852
- ],
- [
- 11.0613726,
- 55.3812841
- ],
- [
- 11.0593038,
- 55.1124061
- ],
- [
- 11.0458567,
- 55.0318621
- ],
- [
- 11.2030844,
- 55.0247474
- ],
- [
- 11.2030844,
- 55.117139
- ],
- [
- 11.0593038,
- 55.1124061
- ],
- [
- 11.0613726,
- 55.3812841
- ],
- [
- 11.0789572,
- 55.5712253
- ],
- [
- 10.8969041,
- 55.5712253
- ],
- [
- 10.9258671,
- 55.6670198
- ],
- [
- 10.743814,
- 55.6646861
- ],
- [
- 10.7562267,
- 55.7579243
- ],
- [
- 10.4417713,
- 55.7579243
- ],
- [
- 10.4439274,
- 56.0270388
- ],
- [
- 10.4466742,
- 56.116717
- ],
- [
- 10.6079695,
- 56.1150259
- ],
- [
- 10.6052053,
- 56.0247462
- ],
- [
- 10.9258671,
- 56.0201215
- ],
- [
- 10.9197132,
- 55.9309388
- ],
- [
- 11.0802782,
- 55.92792
- ],
- [
- 11.0858066,
- 56.0178284
- ],
- [
- 11.7265047,
- 56.005058
- ],
- [
- 11.7319981,
- 56.0952142
- ],
- [
- 12.0540333,
- 56.0871256
- ],
- [
- 12.0608477,
- 56.1762576
- ],
- [
- 12.7023469,
- 56.1594405
- ],
- [
- 12.6611131,
- 55.7114318
- ],
- [
- 12.9792318,
- 55.7014026
- ],
- [
- 12.9612912,
- 55.5217294
- ],
- [
- 12.3268659,
- 55.5412096
- ],
- [
- 12.3206071,
- 55.4513655
- ],
- [
- 12.4778226,
- 55.447067
- ],
- [
- 12.4702432,
- 55.3570479
- ],
- [
- 12.6269738,
- 55.3523837
- ],
- [
- 12.6200898,
- 55.2632576
- ],
- [
- 12.4627339,
- 55.26722
- ],
- [
- 12.4552949,
- 55.1778223
- ],
- [
- 12.2987046,
- 55.1822303
- ],
- [
- 12.2897344,
- 55.0923641
- ],
- [
- 12.6048608,
- 55.0832904
- ],
- [
- 12.5872011,
- 54.9036285
- ],
- [
- 12.2766618,
- 54.9119031
- ],
- [
- 12.2610181,
- 54.7331602
- ],
- [
- 12.1070691,
- 54.7378161
- ],
- [
- 12.0858621,
- 54.4681655
- ],
- [
- 11.7794953,
- 54.4753579
- ],
- [
- 11.7837381,
- 54.5654783
- ],
- [
- 11.1658525,
- 54.5782155
- ],
- [
- 11.1706443,
- 54.6686508
- ],
- [
- 10.8617173,
- 54.6733956
- ],
- [
- 10.8651245,
- 54.7634667
- ],
- [
- 10.7713646,
- 54.7643888
- ],
- [
- 10.7707276,
- 54.7372807
- ],
- [
- 10.7551428,
- 54.7375776
- ],
- [
- 10.7544039,
- 54.7195666
- ],
- [
- 10.7389074,
- 54.7197588
- ],
- [
- 10.7384368,
- 54.7108482
- ],
- [
- 10.7074486,
- 54.7113045
- ],
- [
- 10.7041094,
- 54.6756741
- ],
- [
- 10.5510973,
- 54.6781698
- ],
- [
- 10.5547184,
- 54.7670245
- ],
- [
- 10.2423994,
- 54.7705935
- ],
- [
- 10.2459845,
- 54.8604673
- ],
- [
- 10.0902268,
- 54.8622134
- ],
- [
- 10.0873731,
- 54.7723851
- ],
- [
- 9.1555798,
- 54.7769557
- ],
- [
- 9.1562752,
- 54.8675369
- ],
- [
- 8.5321973,
- 54.8663765
- ],
- [
- 8.531432,
- 54.95516
- ]
- ],
- [
- [
- 11.4577738,
- 56.819554
- ],
- [
- 11.7849181,
- 56.8127385
- ],
- [
- 11.7716715,
- 56.6332796
- ],
- [
- 11.4459621,
- 56.6401087
- ]
- ],
- [
- [
- 11.3274736,
- 57.3612962
- ],
- [
- 11.3161808,
- 57.1818004
- ],
- [
- 11.1508692,
- 57.1847276
- ],
- [
- 11.1456628,
- 57.094962
- ],
- [
- 10.8157703,
- 57.1001693
- ],
- [
- 10.8290599,
- 57.3695272
- ]
- ],
- [
- [
- 11.5843266,
- 56.2777928
- ],
- [
- 11.5782882,
- 56.1880397
- ],
- [
- 11.7392309,
- 56.1845765
- ],
- [
- 11.7456428,
- 56.2743186
- ]
- ],
- [
- [
- 14.6825922,
- 55.3639405
- ],
- [
- 14.8395247,
- 55.3565231
- ],
- [
- 14.8263755,
- 55.2671261
- ],
- [
- 15.1393406,
- 55.2517359
- ],
- [
- 15.1532015,
- 55.3410836
- ],
- [
- 15.309925,
- 55.3330556
- ],
- [
- 15.295719,
- 55.2437356
- ],
- [
- 15.1393406,
- 55.2517359
- ],
- [
- 15.1255631,
- 55.1623802
- ],
- [
- 15.2815819,
- 55.1544167
- ],
- [
- 15.2535578,
- 54.9757646
- ],
- [
- 14.6317464,
- 55.0062496
- ]
- ]
- ],
- "terms_url": "http://wiki.openstreetmap.org/wiki/Fugro",
- "terms_text": "Fugro Aerial Mapping"
- },
- {
- "name": "Geodatastyrelsen (Denmark)",
- "type": "tms",
- "template": "http://mapproxy.gpweb.dk/tiles/1.0.0/kortforsyningen_ortoforaar/EPSG3857/{zoom}/{x}/{y}.jpeg",
- "scaleExtent": [
- 0,
- 21
- ],
- "polygon": [
- [
- [
- 8.3743941,
- 54.9551655
- ],
- [
- 8.3683809,
- 55.4042149
- ],
- [
- 8.2103997,
- 55.4039795
- ],
- [
- 8.2087314,
- 55.4937345
- ],
- [
- 8.0502655,
- 55.4924731
- ],
- [
- 8.0185123,
- 56.7501399
- ],
- [
- 8.1819161,
- 56.7509948
- ],
- [
- 8.1763274,
- 57.0208898
- ],
- [
- 8.3413329,
- 57.0219872
- ],
- [
- 8.3392467,
- 57.1119574
- ],
- [
- 8.5054433,
- 57.1123212
- ],
- [
- 8.5033923,
- 57.2020499
- ],
- [
- 9.3316304,
- 57.2027636
- ],
- [
- 9.3319079,
- 57.2924835
- ],
- [
- 9.4978864,
- 57.2919578
- ],
- [
- 9.4988593,
- 57.3820608
- ],
- [
- 9.6649749,
- 57.3811615
- ],
- [
- 9.6687295,
- 57.5605591
- ],
- [
- 9.8351961,
- 57.5596265
- ],
- [
- 9.8374896,
- 57.6493322
- ],
- [
- 10.1725726,
- 57.6462818
- ],
- [
- 10.1754245,
- 57.7367768
- ],
- [
- 10.5118282,
- 57.7330269
- ],
- [
- 10.5152095,
- 57.8228945
- ],
- [
- 10.6834853,
- 57.8207722
- ],
- [
- 10.6751613,
- 57.6412021
- ],
- [
- 10.5077045,
- 57.6433097
- ],
- [
- 10.5039992,
- 57.5535088
- ],
- [
- 10.671038,
- 57.5514113
- ],
- [
- 10.6507805,
- 57.1024538
- ],
- [
- 10.4857673,
- 57.1045138
- ],
- [
- 10.4786236,
- 56.9249051
- ],
- [
- 10.3143981,
- 56.9267573
- ],
- [
- 10.3112341,
- 56.8369269
- ],
- [
- 10.4750295,
- 56.83509
- ],
- [
- 10.4649016,
- 56.5656681
- ],
- [
- 10.9524239,
- 56.5589761
- ],
- [
- 10.9479249,
- 56.4692243
- ],
- [
- 11.1099335,
- 56.4664675
- ],
- [
- 11.1052639,
- 56.376833
- ],
- [
- 10.9429901,
- 56.3795284
- ],
- [
- 10.9341235,
- 56.1994768
- ],
- [
- 10.7719685,
- 56.2020244
- ],
- [
- 10.7694751,
- 56.1120103
- ],
- [
- 10.6079695,
- 56.1150259
- ],
- [
- 10.4466742,
- 56.116717
- ],
- [
- 10.2865948,
- 56.118675
- ],
- [
- 10.2831527,
- 56.0281851
- ],
- [
- 10.4439274,
- 56.0270388
- ],
- [
- 10.4417713,
- 55.7579243
- ],
- [
- 10.4334961,
- 55.6693533
- ],
- [
- 10.743814,
- 55.6646861
- ],
- [
- 10.743814,
- 55.5712253
- ],
- [
- 10.8969041,
- 55.5712253
- ],
- [
- 10.9051793,
- 55.3953852
- ],
- [
- 11.0613726,
- 55.3812841
- ],
- [
- 11.0593038,
- 55.1124061
- ],
- [
- 11.0458567,
- 55.0318621
- ],
- [
- 11.2030844,
- 55.0247474
- ],
- [
- 11.2030844,
- 55.117139
- ],
- [
- 11.0593038,
- 55.1124061
- ],
- [
- 11.0613726,
- 55.3812841
- ],
- [
- 11.0789572,
- 55.5712253
- ],
- [
- 10.8969041,
- 55.5712253
- ],
- [
- 10.9258671,
- 55.6670198
- ],
- [
- 10.743814,
- 55.6646861
- ],
- [
- 10.7562267,
- 55.7579243
- ],
- [
- 10.4417713,
- 55.7579243
- ],
- [
- 10.4439274,
- 56.0270388
- ],
- [
- 10.4466742,
- 56.116717
- ],
- [
- 10.6079695,
- 56.1150259
- ],
- [
- 10.6052053,
- 56.0247462
- ],
- [
- 10.9258671,
- 56.0201215
- ],
- [
- 10.9197132,
- 55.9309388
- ],
- [
- 11.0802782,
- 55.92792
- ],
- [
- 11.0858066,
- 56.0178284
- ],
- [
- 11.7265047,
- 56.005058
- ],
- [
- 11.7319981,
- 56.0952142
- ],
- [
- 12.0540333,
- 56.0871256
- ],
- [
- 12.0608477,
- 56.1762576
- ],
- [
- 12.7023469,
- 56.1594405
- ],
- [
- 12.6611131,
- 55.7114318
- ],
- [
- 12.9792318,
- 55.7014026
- ],
- [
- 12.9612912,
- 55.5217294
- ],
- [
- 12.3268659,
- 55.5412096
- ],
- [
- 12.3206071,
- 55.4513655
- ],
- [
- 12.4778226,
- 55.447067
- ],
- [
- 12.4702432,
- 55.3570479
- ],
- [
- 12.6269738,
- 55.3523837
- ],
- [
- 12.6200898,
- 55.2632576
- ],
- [
- 12.4627339,
- 55.26722
- ],
- [
- 12.4552949,
- 55.1778223
- ],
- [
- 12.2987046,
- 55.1822303
- ],
- [
- 12.2897344,
- 55.0923641
- ],
- [
- 12.6048608,
- 55.0832904
- ],
- [
- 12.5872011,
- 54.9036285
- ],
- [
- 12.2766618,
- 54.9119031
- ],
- [
- 12.2610181,
- 54.7331602
- ],
- [
- 12.1070691,
- 54.7378161
- ],
- [
- 12.0858621,
- 54.4681655
- ],
- [
- 11.7794953,
- 54.4753579
- ],
- [
- 11.7837381,
- 54.5654783
- ],
- [
- 11.1658525,
- 54.5782155
- ],
- [
- 11.1706443,
- 54.6686508
- ],
- [
- 10.8617173,
- 54.6733956
- ],
- [
- 10.8651245,
- 54.7634667
- ],
- [
- 10.7713646,
- 54.7643888
- ],
- [
- 10.7707276,
- 54.7372807
- ],
- [
- 10.7551428,
- 54.7375776
- ],
- [
- 10.7544039,
- 54.7195666
- ],
- [
- 10.7389074,
- 54.7197588
- ],
- [
- 10.7384368,
- 54.7108482
- ],
- [
- 10.7074486,
- 54.7113045
- ],
- [
- 10.7041094,
- 54.6756741
- ],
- [
- 10.5510973,
- 54.6781698
- ],
- [
- 10.5547184,
- 54.7670245
- ],
- [
- 10.2423994,
- 54.7705935
- ],
- [
- 10.2459845,
- 54.8604673
- ],
- [
- 10.0902268,
- 54.8622134
- ],
- [
- 10.0873731,
- 54.7723851
- ],
- [
- 9.1555798,
- 54.7769557
- ],
- [
- 9.1562752,
- 54.8675369
- ],
- [
- 8.5321973,
- 54.8663765
- ],
- [
- 8.531432,
- 54.95516
- ]
- ],
- [
- [
- 11.4577738,
- 56.819554
- ],
- [
- 11.7849181,
- 56.8127385
- ],
- [
- 11.7716715,
- 56.6332796
- ],
- [
- 11.4459621,
- 56.6401087
- ]
- ],
- [
- [
- 11.3274736,
- 57.3612962
- ],
- [
- 11.3161808,
- 57.1818004
- ],
- [
- 11.1508692,
- 57.1847276
- ],
- [
- 11.1456628,
- 57.094962
- ],
- [
- 10.8157703,
- 57.1001693
- ],
- [
- 10.8290599,
- 57.3695272
- ]
- ],
- [
- [
- 11.5843266,
- 56.2777928
- ],
- [
- 11.5782882,
- 56.1880397
- ],
- [
- 11.7392309,
- 56.1845765
- ],
- [
- 11.7456428,
- 56.2743186
- ]
- ],
- [
- [
- 14.6825922,
- 55.3639405
- ],
- [
- 14.8395247,
- 55.3565231
- ],
- [
- 14.8263755,
- 55.2671261
- ],
- [
- 15.1393406,
- 55.2517359
- ],
- [
- 15.1532015,
- 55.3410836
- ],
- [
- 15.309925,
- 55.3330556
- ],
- [
- 15.295719,
- 55.2437356
- ],
- [
- 15.1393406,
- 55.2517359
- ],
- [
- 15.1255631,
- 55.1623802
- ],
- [
- 15.2815819,
- 55.1544167
- ],
- [
- 15.2535578,
- 54.9757646
- ],
- [
- 14.6317464,
- 55.0062496
- ]
- ]
- ],
- "terms_url": "http://download.kortforsyningen.dk/content/vilkaar-og-betingelser",
- "terms_text": "Geodatastyrelsen og Danske Kommuner"
- },
- {
- "name": "Geoimage.at MaxRes",
- "type": "tms",
- "template": "http://geoimage.openstreetmap.at/4d80de696cd562a63ce463a58a61488d/{zoom}/{x}/{y}.jpg",
- "polygon": [
- [
- [
- 16.5073284,
- 46.9929304
- ],
- [
- 16.283417,
- 46.9929304
- ],
- [
- 16.135839,
- 46.8713046
- ],
- [
- 15.9831722,
- 46.8190947
- ],
- [
- 16.0493278,
- 46.655175
- ],
- [
- 15.8610387,
- 46.7180116
- ],
- [
- 15.7592608,
- 46.6900933
- ],
- [
- 15.5607938,
- 46.6796202
- ],
- [
- 15.5760605,
- 46.6342132
- ],
- [
- 15.4793715,
- 46.6027553
- ],
- [
- 15.4335715,
- 46.6516819
- ],
- [
- 15.2249267,
- 46.6342132
- ],
- [
- 15.0468154,
- 46.6481886
- ],
- [
- 14.9908376,
- 46.5887681
- ],
- [
- 14.9603042,
- 46.6237293
- ],
- [
- 14.8534374,
- 46.6027553
- ],
- [
- 14.8330818,
- 46.5012666
- ],
- [
- 14.7516595,
- 46.4977636
- ],
- [
- 14.6804149,
- 46.4381781
- ],
- [
- 14.6142593,
- 46.4381781
- ],
- [
- 14.578637,
- 46.3785275
- ],
- [
- 14.4412369,
- 46.4311638
- ],
- [
- 14.1613476,
- 46.4276563
- ],
- [
- 14.1257253,
- 46.4767409
- ],
- [
- 14.0188585,
- 46.4767409
- ],
- [
- 13.9119917,
- 46.5257813
- ],
- [
- 13.8254805,
- 46.5047694
- ],
- [
- 13.4438134,
- 46.560783
- ],
- [
- 13.3064132,
- 46.5502848
- ],
- [
- 13.1283019,
- 46.5887681
- ],
- [
- 12.8433237,
- 46.6132433
- ],
- [
- 12.7262791,
- 46.6412014
- ],
- [
- 12.5125455,
- 46.6656529
- ],
- [
- 12.3598787,
- 46.7040543
- ],
- [
- 12.3649676,
- 46.7703197
- ],
- [
- 12.2886341,
- 46.7772902
- ],
- [
- 12.2733674,
- 46.8852187
- ],
- [
- 12.2072118,
- 46.8747835
- ],
- [
- 12.1308784,
- 46.9026062
- ],
- [
- 12.1156117,
- 46.9998721
- ],
- [
- 12.2530119,
- 47.0657733
- ],
- [
- 12.2123007,
- 47.0934969
- ],
- [
- 11.9833004,
- 47.0449712
- ],
- [
- 11.7339445,
- 46.9616816
- ],
- [
- 11.6321666,
- 47.010283
- ],
- [
- 11.5405665,
- 46.9755722
- ],
- [
- 11.4998553,
- 47.0068129
- ],
- [
- 11.418433,
- 46.9651546
- ],
- [
- 11.2555884,
- 46.9755722
- ],
- [
- 11.1130993,
- 46.913036
- ],
- [
- 11.0418548,
- 46.7633482
- ],
- [
- 10.8891879,
- 46.7598621
- ],
- [
- 10.7416099,
- 46.7842599
- ],
- [
- 10.7059877,
- 46.8643462
- ],
- [
- 10.5787653,
- 46.8399847
- ],
- [
- 10.4566318,
- 46.8504267
- ],
- [
- 10.4769874,
- 46.9269392
- ],
- [
- 10.3853873,
- 46.9894592
- ],
- [
- 10.2327204,
- 46.8643462
- ],
- [
- 10.1207647,
- 46.8330223
- ],
- [
- 9.8663199,
- 46.9408389
- ],
- [
- 9.9019422,
- 47.0033426
- ],
- [
- 9.6831197,
- 47.0588402
- ],
- [
- 9.6118752,
- 47.0380354
- ],
- [
- 9.6322307,
- 47.128131
- ],
- [
- 9.5813418,
- 47.1662025
- ],
- [
- 9.5406306,
- 47.2664422
- ],
- [
- 9.6067863,
- 47.3492559
- ],
- [
- 9.6729419,
- 47.369939
- ],
- [
- 9.6424085,
- 47.4457079
- ],
- [
- 9.5660751,
- 47.4801122
- ],
- [
- 9.7136531,
- 47.5282405
- ],
- [
- 9.7848976,
- 47.5969187
- ],
- [
- 9.8357866,
- 47.5454185
- ],
- [
- 9.9477423,
- 47.538548
- ],
- [
- 10.0902313,
- 47.4491493
- ],
- [
- 10.1105869,
- 47.3664924
- ],
- [
- 10.2428982,
- 47.3871688
- ],
- [
- 10.1869203,
- 47.2698953
- ],
- [
- 10.3243205,
- 47.2975125
- ],
- [
- 10.4820763,
- 47.4491493
- ],
- [
- 10.4311873,
- 47.4869904
- ],
- [
- 10.4413651,
- 47.5900549
- ],
- [
- 10.4871652,
- 47.5522881
- ],
- [
- 10.5482319,
- 47.5351124
- ],
- [
- 10.5991209,
- 47.5660246
- ],
- [
- 10.7568766,
- 47.5316766
- ],
- [
- 10.8891879,
- 47.5454185
- ],
- [
- 10.9400769,
- 47.4869904
- ],
- [
- 10.9960547,
- 47.3906141
- ],
- [
- 11.2352328,
- 47.4422662
- ],
- [
- 11.2810328,
- 47.3975039
- ],
- [
- 11.4235219,
- 47.5144941
- ],
- [
- 11.5761888,
- 47.5076195
- ],
- [
- 11.6067221,
- 47.5900549
- ],
- [
- 11.8357224,
- 47.5866227
- ],
- [
- 12.003656,
- 47.6243647
- ],
- [
- 12.2072118,
- 47.6037815
- ],
- [
- 12.1614117,
- 47.6963421
- ],
- [
- 12.2581008,
- 47.7442718
- ],
- [
- 12.2530119,
- 47.6792136
- ],
- [
- 12.4311232,
- 47.7100408
- ],
- [
- 12.4921899,
- 47.631224
- ],
- [
- 12.5685234,
- 47.6277944
- ],
- [
- 12.6295901,
- 47.6894913
- ],
- [
- 12.7720792,
- 47.6689338
- ],
- [
- 12.8331459,
- 47.5419833
- ],
- [
- 12.975635,
- 47.4732332
- ],
- [
- 13.0417906,
- 47.4938677
- ],
- [
- 13.0367017,
- 47.5557226
- ],
- [
- 13.0977685,
- 47.6415112
- ],
- [
- 13.0316128,
- 47.7100408
- ],
- [
- 12.9043905,
- 47.7203125
- ],
- [
- 13.0061684,
- 47.84683
- ],
- [
- 12.9451016,
- 47.9355501
- ],
- [
- 12.8636793,
- 47.9594103
- ],
- [
- 12.8636793,
- 48.0036929
- ],
- [
- 12.7517236,
- 48.0989418
- ],
- [
- 12.8738571,
- 48.2109733
- ],
- [
- 12.9603683,
- 48.2109733
- ],
- [
- 13.0417906,
- 48.2652035
- ],
- [
- 13.1842797,
- 48.2990682
- ],
- [
- 13.2606131,
- 48.2922971
- ],
- [
- 13.3980133,
- 48.3565867
- ],
- [
- 13.4438134,
- 48.417418
- ],
- [
- 13.4387245,
- 48.5523383
- ],
- [
- 13.509969,
- 48.5860123
- ],
- [
- 13.6117469,
- 48.5725454
- ],
- [
- 13.7287915,
- 48.5118999
- ],
- [
- 13.7847694,
- 48.5725454
- ],
- [
- 13.8203916,
- 48.6263915
- ],
- [
- 13.7949471,
- 48.7171267
- ],
- [
- 13.850925,
- 48.7741724
- ],
- [
- 14.0595697,
- 48.6633774
- ],
- [
- 14.0137696,
- 48.6331182
- ],
- [
- 14.0748364,
- 48.5927444
- ],
- [
- 14.2173255,
- 48.5961101
- ],
- [
- 14.3649034,
- 48.5489696
- ],
- [
- 14.4666813,
- 48.6499311
- ],
- [
- 14.5582815,
- 48.5961101
- ],
- [
- 14.5989926,
- 48.6263915
- ],
- [
- 14.7211261,
- 48.5759124
- ],
- [
- 14.7211261,
- 48.6868997
- ],
- [
- 14.822904,
- 48.7271983
- ],
- [
- 14.8178151,
- 48.777526
- ],
- [
- 14.9647227,
- 48.7851754
- ],
- [
- 14.9893637,
- 49.0126611
- ],
- [
- 15.1485933,
- 48.9950306
- ],
- [
- 15.1943934,
- 48.9315502
- ],
- [
- 15.3063491,
- 48.9850128
- ],
- [
- 15.3928603,
- 48.9850128
- ],
- [
- 15.4844604,
- 48.9282069
- ],
- [
- 15.749083,
- 48.8545973
- ],
- [
- 15.8406831,
- 48.8880697
- ],
- [
- 16.0086166,
- 48.7808794
- ],
- [
- 16.2070835,
- 48.7339115
- ],
- [
- 16.3953727,
- 48.7372678
- ],
- [
- 16.4920617,
- 48.8110498
- ],
- [
- 16.6905286,
- 48.7741724
- ],
- [
- 16.7057953,
- 48.7339115
- ],
- [
- 16.8991733,
- 48.713769
- ],
- [
- 16.9755067,
- 48.515271
- ],
- [
- 16.8482844,
- 48.4511817
- ],
- [
- 16.8533733,
- 48.3464411
- ],
- [
- 16.9551512,
- 48.2516513
- ],
- [
- 16.9907734,
- 48.1498955
- ],
- [
- 17.0925513,
- 48.1397088
- ],
- [
- 17.0823736,
- 48.0241182
- ],
- [
- 17.1739737,
- 48.0207146
- ],
- [
- 17.0823736,
- 47.8741447
- ],
- [
- 16.9856845,
- 47.8673174
- ],
- [
- 17.0823736,
- 47.8092489
- ],
- [
- 17.0925513,
- 47.7031919
- ],
- [
- 16.7414176,
- 47.6792136
- ],
- [
- 16.7057953,
- 47.7511153
- ],
- [
- 16.5378617,
- 47.7545368
- ],
- [
- 16.5480395,
- 47.7066164
- ],
- [
- 16.4208172,
- 47.6689338
- ],
- [
- 16.573484,
- 47.6175045
- ],
- [
- 16.670173,
- 47.631224
- ],
- [
- 16.7108842,
- 47.538548
- ],
- [
- 16.6599952,
- 47.4491493
- ],
- [
- 16.5429506,
- 47.3940591
- ],
- [
- 16.4615283,
- 47.3940591
- ],
- [
- 16.4920617,
- 47.276801
- ],
- [
- 16.425906,
- 47.1973317
- ],
- [
- 16.4717061,
- 47.1489007
- ],
- [
- 16.5480395,
- 47.1489007
- ],
- [
- 16.476795,
- 47.0796369
- ],
- [
- 16.527684,
- 47.0588402
- ]
- ]
- ],
- "terms_text": "geoimage.at",
- "id": "geoimage.at"
- },
- {
- "name": "Imagerie Drone (Haiti)",
- "type": "tms",
- "template": "http://wms.openstreetmap.fr/tms/1.0.0/iomhaiti/{zoom}/{x}/{y}",
- "polygon": [
- [
- [
- -72.1547401,
- 19.6878969
- ],
- [
- -72.162234,
- 19.689011
- ],
- [
- -72.164995,
- 19.6932445
- ],
- [
- -72.1657838,
- 19.6979977
- ],
- [
- -72.161603,
- 19.7035677
- ],
- [
- -72.1487449,
- 19.7028993
- ],
- [
- -72.1477194,
- 19.7026765
- ],
- [
- -72.1485082,
- 19.7001514
- ],
- [
- -72.1436963,
- 19.7011169
- ],
- [
- -72.1410143,
- 19.7000029
- ],
- [
- -72.139476,
- 19.6973664
- ],
- [
- -72.1382533,
- 19.6927617
- ],
- [
- -72.1386872,
- 19.6923161
- ],
- [
- -72.1380561,
- 19.6896423
- ],
- [
- -72.1385294,
- 19.6894938
- ],
- [
- -72.1388055,
- 19.6901251
- ],
- [
- -72.1388844,
- 19.6876741
- ],
- [
- -72.1378195,
- 19.6872656
- ],
- [
- -72.13778,
- 19.6850003
- ],
- [
- -72.1369517,
- 19.6855945
- ],
- [
- -72.136794,
- 19.6840719
- ],
- [
- -72.135729,
- 19.6835148
- ],
- [
- -72.1355713,
- 19.6740817
- ],
- [
- -72.1366362,
- 19.6708133
- ],
- [
- -72.1487843,
- 19.6710733
- ],
- [
- -72.1534779,
- 19.6763843
- ],
- [
- -72.1530835,
- 19.6769414
- ],
- [
- -72.1533251,
- 19.6769768
- ],
- [
- -72.1532807,
- 19.6796525
- ],
- [
- -72.1523834,
- 19.6797175
- ],
- [
- -72.1522749,
- 19.6803488
- ],
- [
- -72.1519101,
- 19.6803395
- ],
- [
- -72.1518608,
- 19.6805067
- ],
- [
- -72.1528173,
- 19.6806552
- ],
- [
- -72.1522299,
- 19.6833011
- ],
- [
- -72.1507801,
- 19.6831499
- ],
- [
- -72.1504457,
- 19.6847862
- ],
- [
- -72.1508591,
- 19.6843492
- ],
- [
- -72.1530087,
- 19.6849898
- ],
- [
- -72.1546258,
- 19.6854354
- ],
- [
- -72.1543103,
- 19.6870694
- ],
- [
- -72.1547244,
- 19.6868466
- ],
- [
- -72.1548501,
- 19.6877564
- ],
- [
- -72.1545814,
- 19.6877982
- ]
- ],
- [
- [
- -72.1310601,
- 19.6718929
- ],
- [
- -72.1259842,
- 19.6772765
- ],
- [
- -72.1255379,
- 19.6776179
- ],
- [
- -72.1216891,
- 19.6776442
- ],
- [
- -72.1149677,
- 19.672602
- ],
- [
- -72.1152745,
- 19.6687152
- ],
- [
- -72.1198205,
- 19.6627535
- ],
- [
- -72.1227768,
- 19.6625696
- ],
- [
- -72.1248965,
- 19.662701
- ],
- [
- -72.1285779,
- 19.6645394
- ],
- [
- -72.1308091,
- 19.6661677
- ],
- [
- -72.1316737,
- 19.668794
- ],
- [
- -72.1315621,
- 19.671
- ]
- ],
- [
- [
- -71.845795,
- 19.6709758
- ],
- [
- -71.8429354,
- 19.6759525
- ],
- [
- -71.8410027,
- 19.6759525
- ],
- [
- -71.8380249,
- 19.6755254
- ],
- [
- -71.8378671,
- 19.6745041
- ],
- [
- -71.8390504,
- 19.6743927
- ],
- [
- -71.8390109,
- 19.6741141
- ],
- [
- -71.8398392,
- 19.673947
- ],
- [
- -71.8389123,
- 19.6736127
- ],
- [
- -71.8380249,
- 19.67209
- ],
- [
- -71.8380052,
- 19.6726285
- ],
- [
- -71.8376699,
- 19.6727214
- ],
- [
- -71.8376305,
- 19.672545
- ],
- [
- -71.8354414,
- 19.6732135
- ],
- [
- -71.835333,
- 19.6729999
- ],
- [
- -71.8331242,
- 19.6734642
- ],
- [
- -71.8326706,
- 19.6716815
- ],
- [
- -71.8321579,
- 19.67209
- ],
- [
- -71.8307183,
- 19.6694902
- ],
- [
- -71.8306009,
- 19.6697594
- ],
- [
- -71.8302174,
- 19.6698907
- ],
- [
- -71.8291833,
- 19.6672095
- ],
- [
- -71.8290749,
- 19.6672095
- ],
- [
- -71.8289122,
- 19.6667916
- ],
- [
- -71.8289516,
- 19.6666199
- ],
- [
- -71.8288333,
- 19.6663506
- ],
- [
- -71.8285572,
- 19.6664759
- ],
- [
- -71.8288678,
- 19.6672466
- ],
- [
- -71.8287593,
- 19.6674138
- ],
- [
- -71.8277979,
- 19.6678177
- ],
- [
- -71.8277112,
- 19.6678586
- ],
- [
- -71.8278263,
- 19.6679637
- ],
- [
- -71.8271831,
- 19.6681212
- ],
- [
- -71.8271761,
- 19.6680917
- ],
- [
- -71.8264405,
- 19.6683921
- ],
- [
- -71.8264074,
- 19.6683231
- ],
- [
- -71.8261954,
- 19.6684253
- ],
- [
- -71.8261806,
- 19.6683556
- ],
- [
- -71.8258946,
- 19.6684206
- ],
- [
- -71.8258897,
- 19.6686574
- ],
- [
- -71.8251551,
- 19.6687549
- ],
- [
- -71.8254509,
- 19.6691588
- ],
- [
- -71.8229332,
- 19.6695739
- ],
- [
- -71.822713,
- 19.6696658
- ],
- [
- -71.8227688,
- 19.6697577
- ],
- [
- -71.8201751,
- 19.6709855
- ],
- [
- -71.8198474,
- 19.6704537
- ],
- [
- -71.8197985,
- 19.6706014
- ],
- [
- -71.8194674,
- 19.6707557
- ],
- [
- -71.8182472,
- 19.6713433
- ],
- [
- -71.8181426,
- 19.6711431
- ],
- [
- -71.8175813,
- 19.6714254
- ],
- [
- -71.816959,
- 19.6707672
- ],
- [
- -71.8176388,
- 19.6718965
- ],
- [
- -71.8171403,
- 19.6720376
- ],
- [
- -71.8158225,
- 19.6718045
- ],
- [
- -71.8138354,
- 19.6711874
- ],
- [
- -71.8123259,
- 19.6706982
- ],
- [
- -71.8121759,
- 19.6704258
- ],
- [
- -71.8124304,
- 19.6701467
- ],
- [
- -71.8119184,
- 19.6700141
- ],
- [
- -71.8118765,
- 19.6705828
- ],
- [
- -71.811169,
- 19.6703483
- ],
- [
- -71.8095938,
- 19.6698516
- ],
- [
- -71.8077992,
- 19.6692829
- ],
- [
- -71.8056028,
- 19.668612
- ],
- [
- -71.8051443,
- 19.6668942
- ],
- [
- -71.8051196,
- 19.6652322
- ],
- [
- -71.8052315,
- 19.661979
- ],
- [
- -71.8065603,
- 19.6523921
- ],
- [
- -71.8073412,
- 19.6482946
- ],
- [
- -71.8099686,
- 19.6468292
- ],
- [
- -71.8147517,
- 19.6454502
- ],
- [
- -71.8147726,
- 19.6455619
- ],
- [
- -71.8150027,
- 19.6455093
- ],
- [
- -71.8149469,
- 19.6453846
- ],
- [
- -71.8159928,
- 19.6450234
- ],
- [
- -71.8158882,
- 19.6448855
- ],
- [
- -71.8165854,
- 19.6446097
- ],
- [
- -71.8190119,
- 19.643802
- ],
- [
- -71.8211524,
- 19.643454
- ],
- [
- -71.8221564,
- 19.6433292
- ],
- [
- -71.8269046,
- 19.643211
- ],
- [
- -71.8280481,
- 19.6432241
- ],
- [
- -71.8304466,
- 19.6440778
- ],
- [
- -71.8306419,
- 19.6448592
- ],
- [
- -71.8295263,
- 19.6450365
- ],
- [
- -71.8296064,
- 19.6456111
- ],
- [
- -71.8299411,
- 19.6455651
- ],
- [
- -71.8303699,
- 19.6451744
- ],
- [
- -71.830471,
- 19.6453452
- ],
- [
- -71.8308092,
- 19.6451974
- ],
- [
- -71.8310184,
- 19.6451088
- ],
- [
- -71.8312519,
- 19.6458541
- ],
- [
- -71.8311125,
- 19.6458245
- ],
- [
- -71.831367,
- 19.6465862
- ],
- [
- -71.8328939,
- 19.646189
- ],
- [
- -71.8344566,
- 19.6457062
- ],
- [
- -71.8344664,
- 19.6463052
- ],
- [
- -71.834215,
- 19.6461938
- ],
- [
- -71.8342002,
- 19.6465513
- ],
- [
- -71.8346702,
- 19.6463
- ],
- [
- -71.8349118,
- 19.6463905
- ],
- [
- -71.8347984,
- 19.6462187
- ],
- [
- -71.8354393,
- 19.6458496
- ],
- [
- -71.8355034,
- 19.6458032
- ],
- [
- -71.8364747,
- 19.6461328
- ],
- [
- -71.8376382,
- 19.6472658
- ],
- [
- -71.8379143,
- 19.647888
- ],
- [
- -71.8390483,
- 19.6508039
- ],
- [
- -71.8456942,
- 19.6696203
- ]
- ],
- [
- [
- -72.098878,
- 18.54843
- ],
- [
- -72.096993,
- 18.5501994
- ],
- [
- -72.0972888,
- 18.5503209
- ],
- [
- -72.0968451,
- 18.5503489
- ],
- [
- -72.0955632,
- 18.551854
- ],
- [
- -72.0956428,
- 18.5526742
- ],
- [
- -72.0959914,
- 18.5533748
- ],
- [
- -72.0962145,
- 18.553203
- ],
- [
- -72.0962842,
- 18.5535665
- ],
- [
- -72.0964446,
- 18.5535533
- ],
- [
- -72.0965352,
- 18.5539764
- ],
- [
- -72.0965056,
- 18.554173
- ],
- [
- -72.0966085,
- 18.5541747
- ],
- [
- -72.0965178,
- 18.5542127
- ],
- [
- -72.0968769,
- 18.5546588
- ],
- [
- -72.0979018,
- 18.5552141
- ],
- [
- -72.1006211,
- 18.5555875
- ],
- [
- -72.1014926,
- 18.5556206
- ],
- [
- -72.1024339,
- 18.5555016
- ],
- [
- -72.103417,
- 18.5543515
- ],
- [
- -72.1034798,
- 18.5516215
- ],
- [
- -72.1030789,
- 18.5516149
- ],
- [
- -72.1033752,
- 18.5515224
- ],
- [
- -72.1035042,
- 18.5515224
- ],
- [
- -72.1035239,
- 18.5502417
- ],
- [
- -72.1028701,
- 18.5503062
- ],
- [
- -72.1029015,
- 18.55025
- ],
- [
- -72.1028457,
- 18.5501773
- ],
- [
- -72.1035081,
- 18.5500252
- ],
- [
- -72.103491,
- 18.5497396
- ],
- [
- -72.1035181,
- 18.5497361
- ],
- [
- -72.1035398,
- 18.5489039
- ],
- [
- -72.1034317,
- 18.5487056
- ],
- [
- -72.102717,
- 18.5481437
- ],
- [
- -72.1025601,
- 18.5481536
- ],
- [
- -72.10229,
- 18.5482751
- ],
- [
- -72.1022891,
- 18.5482569
- ],
- [
- -72.1025201,
- 18.5481396
- ],
- [
- -72.1023388,
- 18.5481321
- ],
- [
- -72.0999082,
- 18.5480901
- ],
- [
- -72.09907,
- 18.5483799
- ]
- ],
- [
- [
- -72.2542503,
- 18.568262
- ],
- [
- -72.2560252,
- 18.5717765
- ],
- [
- -72.2557886,
- 18.5748049
- ],
- [
- -72.2535009,
- 18.5755526
- ],
- [
- -72.2522782,
- 18.5755526
- ],
- [
- -72.2499906,
- 18.5740945
- ],
- [
- -72.2473874,
- 18.5698323
- ],
- [
- -72.2460069,
- 18.566729
- ],
- [
- -72.2458492,
- 18.5629527
- ],
- [
- -72.2479396,
- 18.5625414
- ],
- [
- -72.2501483,
- 18.5628031
- ],
- [
- -72.2519232,
- 18.5650839
- ]
- ],
- [
- [
- -72.303145,
- 18.5332749
- ],
- [
- -72.3031275,
- 18.5331799
- ],
- [
- -72.3048311,
- 18.5311081
- ],
- [
- -72.3097397,
- 18.5311081
- ],
- [
- -72.3164332,
- 18.5324302
- ],
- [
- -72.3234056,
- 18.5366083
- ],
- [
- -72.3261388,
- 18.5387765
- ],
- [
- -72.3261946,
- 18.5426371
- ],
- [
- -72.3170468,
- 18.5540596
- ],
- [
- -72.3130864,
- 18.5540596
- ],
- [
- -72.2987511,
- 18.5453342
- ],
- [
- -72.2988627,
- 18.5407333
- ],
- [
- -72.2962969,
- 18.5404689
- ],
- [
- -72.2954602,
- 18.5395169
- ],
- [
- -72.2961853,
- 18.5338582
- ],
- [
- -72.2971893,
- 18.5332235
- ],
- [
- -72.3007034,
- 18.5332764
- ],
- [
- -72.3022652,
- 18.5342284
- ],
- [
- -72.3028486,
- 18.5335189
- ],
- [
- -72.303104,
- 18.5333361
- ],
- [
- -72.303181,
- 18.5334007
- ],
- [
- -72.3035793,
- 18.5335614
- ],
- [
- -72.3030793,
- 18.5346463
- ],
- [
- -72.303715,
- 18.5339873
- ],
- [
- -72.3045286,
- 18.5344052
- ],
- [
- -72.3044015,
- 18.5345097
- ],
- [
- -72.3062747,
- 18.5352571
- ],
- [
- -72.3063107,
- 18.5352741
- ],
- [
- -72.3061219,
- 18.5357628
- ],
- [
- -72.3061219,
- 18.5358196
- ],
- [
- -72.30637,
- 18.5358928
- ],
- [
- -72.3062726,
- 18.5354869
- ],
- [
- -72.3066688,
- 18.5350891
- ],
- [
- -72.3061963,
- 18.5349706
- ],
- [
- -72.3058869,
- 18.5349385
- ],
- [
- -72.3055373,
- 18.5346833
- ],
- [
- -72.3054864,
- 18.534613
- ],
- [
- -72.3055585,
- 18.5345065
- ],
- [
- -72.3046749,
- 18.5342293
- ],
- [
- -72.3047617,
- 18.5338817
- ],
- [
- -72.3043252,
- 18.5337511
- ],
- [
- -72.3042595,
- 18.5336346
- ]
- ],
- [
- [
- -72.2981405,
- 18.477502
- ],
- [
- -72.2935652,
- 18.4948587
- ],
- [
- -72.2922242,
- 18.4964297
- ],
- [
- -72.2931708,
- 18.4972526
- ],
- [
- -72.2892266,
- 18.5057058
- ],
- [
- -72.2878067,
- 18.5080996
- ],
- [
- -72.2850458,
- 18.5119893
- ],
- [
- -72.2840203,
- 18.5113161
- ],
- [
- -72.2808649,
- 18.515879
- ],
- [
- -72.2773151,
- 18.5175994
- ],
- [
- -72.2723454,
- 18.5175246
- ],
- [
- -72.2662714,
- 18.5144578
- ],
- [
- -72.2665869,
- 18.5066783
- ],
- [
- -72.2692643,
- 18.5046154
- ],
- [
- -72.2661965,
- 18.5029756
- ],
- [
- -72.2688181,
- 18.4965222
- ],
- [
- -72.2691528,
- 18.4959403
- ],
- [
- -72.2702684,
- 18.4961519
- ],
- [
- -72.2702684,
- 18.4955964
- ],
- [
- -72.2690691,
- 18.49557
- ],
- [
- -72.2692922,
- 18.4937714
- ],
- [
- -72.2736988,
- 18.4859951
- ],
- [
- -72.2746749,
- 18.4850429
- ],
- [
- -72.2751769,
- 18.483403
- ],
- [
- -72.2765435,
- 18.4813398
- ],
- [
- -72.2773523,
- 18.4814985
- ],
- [
- -72.2783006,
- 18.4809694
- ],
- [
- -72.2778544,
- 18.4807049
- ],
- [
- -72.2771013,
- 18.480123
- ],
- [
- -72.2789978,
- 18.4775836
- ],
- [
- -72.279723,
- 18.4772927
- ],
- [
- -72.2806433,
- 18.4776365
- ],
- [
- -72.2813685,
- 18.4771604
- ],
- [
- -72.2808386,
- 18.4769752
- ],
- [
- -72.2812848,
- 18.4758378
- ],
- [
- -72.2823167,
- 18.4751765
- ],
- [
- -72.2851615,
- 18.4750971
- ],
- [
- -72.2849941,
- 18.4763668
- ],
- [
- -72.2854404,
- 18.4769752
- ],
- [
- -72.286277,
- 18.4756262
- ],
- [
- -72.2869325,
- 18.4754675
- ],
- [
- -72.2865978,
- 18.4751897
- ],
- [
- -72.2865978,
- 18.4750046
- ],
- [
- -72.2909765,
- 18.4747268
- ],
- [
- -72.2946579,
- 18.4749384
- ],
- [
- -72.2973911,
- 18.476843
- ]
- ],
- [
- [
- -72.3466657,
- 18.5222375
- ],
- [
- -72.346833,
- 18.5244325
- ],
- [
- -72.3475303,
- 18.5277645
- ],
- [
- -72.3455501,
- 18.5291131
- ],
- [
- -72.3403069,
- 18.5292189
- ],
- [
- -72.3383267,
- 18.5280289
- ],
- [
- -72.3369043,
- 18.530118
- ],
- [
- -72.3338086,
- 18.5296684
- ],
- [
- -72.3289279,
- 18.5270769
- ],
- [
- -72.328649,
- 18.5253316
- ],
- [
- -72.3292068,
- 18.5232689
- ],
- [
- -72.330406,
- 18.5220524
- ],
- [
- -72.3321631,
- 18.5221847
- ],
- [
- -72.3322467,
- 18.5191963
- ],
- [
- -72.3369183,
- 18.5183633
- ],
- [
- -72.3382012,
- 18.5184691
- ],
- [
- -72.3381454,
- 18.5181782
- ],
- [
- -72.3411993,
- 18.5177947
- ],
- [
- -72.3454943,
- 18.5171997
- ],
- [
- -72.3492595,
- 18.517279
- ],
- [
- -72.3504308,
- 18.5188922
- ],
- [
- -72.3503472,
- 18.5206112
- ],
- [
- -72.3496778,
- 18.5220392
- ]
- ],
- [
- [
- -72.3303078,
- 18.5486462
- ],
- [
- -72.3429687,
- 18.5508149
- ],
- [
- -72.3433236,
- 18.5530585
- ],
- [
- -72.3413121,
- 18.5614341
- ],
- [
- -72.3390639,
- 18.5613593
- ],
- [
- -72.3384723,
- 18.5638271
- ],
- [
- -72.3375257,
- 18.5654348
- ],
- [
- -72.3348436,
- 18.5650609
- ],
- [
- -72.3311755,
- 18.5638271
- ],
- [
- -72.3312149,
- 18.5616211
- ],
- [
- -72.3232082,
- 18.5606863
- ],
- [
- -72.3212361,
- 18.559602
- ],
- [
- -72.3208023,
- 18.5587046
- ],
- [
- -72.3208811,
- 18.557882
- ],
- [
- -72.3259493,
- 18.5580274
- ],
- [
- -72.3266186,
- 18.5581993
- ],
- [
- -72.3259214,
- 18.5577498
- ],
- [
- -72.3250986,
- 18.5573797
- ],
- [
- -72.3233767,
- 18.552263
- ],
- [
- -72.3245994,
- 18.5478507
- ],
- [
- -72.3288986,
- 18.5483742
- ],
- [
- -72.329979,
- 18.5489548
- ]
- ],
- [
- [
- -72.3231383,
- 18.5269828
- ],
- [
- -72.3223434,
- 18.528067
- ],
- [
- -72.3209629,
- 18.5279745
- ],
- [
- -72.3207816,
- 18.5271282
- ],
- [
- -72.3208513,
- 18.5253697
- ],
- [
- -72.3214649,
- 18.5249598
- ],
- [
- -72.3225666,
- 18.5248937
- ],
- [
- -72.3228454,
- 18.52533
- ],
- [
- -72.3232359,
- 18.5264804
- ]
- ],
- [
- [
- -72.2160832,
- 18.6457752
- ],
- [
- -72.2159649,
- 18.6553795
- ],
- [
- -72.2030279,
- 18.6558279
- ],
- [
- -72.1947057,
- 18.6553421
- ],
- [
- -72.1922208,
- 18.6545573
- ],
- [
- -72.1920631,
- 18.6521283
- ],
- [
- -72.193483,
- 18.6477559
- ],
- [
- -72.201253,
- 18.6385249
- ],
- [
- -72.2069327,
- 18.6388239
- ],
- [
- -72.2120996,
- 18.6424117
- ],
- [
- -72.2118068,
- 18.6430591
- ],
- [
- -72.2121693,
- 18.6426892
- ],
- [
- -72.2127968,
- 18.6427552
- ],
- [
- -72.2134662,
- 18.6431252
- ],
- [
- -72.2135638,
- 18.6437462
- ],
- [
- -72.2154176,
- 18.6443947
- ],
- [
- -72.2158909,
- 18.6450301
- ]
- ],
- [
- [
- -72.2867654,
- 18.6482017
- ],
- [
- -72.2900977,
- 18.6527446
- ],
- [
- -72.28981,
- 18.6536532
- ],
- [
- -72.2900738,
- 18.6542664
- ],
- [
- -72.290721,
- 18.6537667
- ],
- [
- -72.2910327,
- 18.6544709
- ],
- [
- -72.2912485,
- 18.654221
- ],
- [
- -72.29168,
- 18.6558905
- ],
- [
- -72.2912245,
- 18.656606
- ],
- [
- -72.2922673,
- 18.65597
- ],
- [
- -72.2926869,
- 18.6567536
- ],
- [
- -72.2930705,
- 18.6567309
- ],
- [
- -72.2941253,
- 18.6581846
- ],
- [
- -72.2960192,
- 18.6608421
- ],
- [
- -72.2959713,
- 18.6619096
- ],
- [
- -72.2932862,
- 18.664567
- ],
- [
- -72.2906731,
- 18.6659979
- ],
- [
- -72.2895943,
- 18.6661342
- ],
- [
- -72.2895943,
- 18.6665657
- ],
- [
- -72.2877004,
- 18.6664749
- ],
- [
- -72.2875805,
- 18.6676559
- ],
- [
- -72.2831214,
- 18.6697227
- ],
- [
- -72.2796453,
- 18.6696546
- ],
- [
- -72.2784311,
- 18.6690787
- ],
- [
- -72.2783972,
- 18.6687736
- ],
- [
- -72.277736,
- 18.6691671
- ],
- [
- -72.2774394,
- 18.669143
- ],
- [
- -72.2770071,
- 18.6683159
- ],
- [
- -72.2765575,
- 18.6681125
- ],
- [
- -72.2765385,
- 18.6680583
- ],
- [
- -72.2752319,
- 18.6685239
- ],
- [
- -72.2749292,
- 18.6674649
- ],
- [
- -72.2746416,
- 18.6674309
- ],
- [
- -72.2734668,
- 18.6682145
- ],
- [
- -72.2732271,
- 18.6682712
- ],
- [
- -72.2726757,
- 18.6671583
- ],
- [
- -72.2719147,
- 18.6674288
- ],
- [
- -72.2718808,
- 18.6673405
- ],
- [
- -72.2688149,
- 18.6681868
- ],
- [
- -72.2688269,
- 18.6671761
- ],
- [
- -72.2690786,
- 18.6668241
- ],
- [
- -72.2688149,
- 18.66679
- ],
- [
- -72.2681077,
- 18.6670739
- ],
- [
- -72.2676282,
- 18.6673805
- ],
- [
- -72.2675563,
- 18.6666878
- ],
- [
- -72.266861,
- 18.666949
- ],
- [
- -72.2655904,
- 18.6673578
- ],
- [
- -72.2654466,
- 18.6670058
- ],
- [
- -72.2647514,
- 18.6674146
- ],
- [
- -72.2629893,
- 18.6681868
- ],
- [
- -72.2628455,
- 18.6681754
- ],
- [
- -72.2626537,
- 18.6676076
- ],
- [
- -72.2623001,
- 18.6677098
- ],
- [
- -72.2624799,
- 18.6679199
- ],
- [
- -72.2624799,
- 18.6682322
- ],
- [
- -72.262306,
- 18.6682606
- ],
- [
- -72.2620963,
- 18.6679654
- ],
- [
- -72.2622761,
- 18.6689193
- ],
- [
- -72.2601484,
- 18.6688966
- ],
- [
- -72.2542749,
- 18.6687944
- ],
- [
- -72.2505388,
- 18.6683476
- ],
- [
- -72.2504371,
- 18.669536
- ],
- [
- -72.2477926,
- 18.6698893
- ],
- [
- -72.2415204,
- 18.669793
- ],
- [
- -72.2414187,
- 18.6741933
- ],
- [
- -72.2389167,
- 18.6739759
- ],
- [
- -72.2387249,
- 18.6734649
- ],
- [
- -72.2383653,
- 18.6733059
- ],
- [
- -72.2387009,
- 18.6739532
- ],
- [
- -72.2375502,
- 18.6738964
- ],
- [
- -72.2374183,
- 18.6735103
- ],
- [
- -72.237742,
- 18.67334
- ],
- [
- -72.2375142,
- 18.6732605
- ],
- [
- -72.236843,
- 18.6734876
- ],
- [
- -72.2364354,
- 18.6724088
- ],
- [
- -72.2355124,
- 18.6726019
- ],
- [
- -72.2354045,
- 18.6724202
- ],
- [
- -72.2353027,
- 18.6729028
- ],
- [
- -72.2345475,
- 18.6726871
- ],
- [
- -72.2343077,
- 18.6724599
- ],
- [
- -72.2342358,
- 18.6734706
- ],
- [
- -72.2334087,
- 18.6734592
- ],
- [
- -72.2332889,
- 18.6733003
- ],
- [
- -72.2327375,
- 18.6732889
- ],
- [
- -72.2327135,
- 18.6735047
- ],
- [
- -72.227703,
- 18.6725281
- ],
- [
- -72.2265283,
- 18.6716537
- ],
- [
- -72.226804,
- 18.6715742
- ],
- [
- -72.2274993,
- 18.6715855
- ],
- [
- -72.2274873,
- 18.6714493
- ],
- [
- -72.2272899,
- 18.6714623
- ],
- [
- -72.2272814,
- 18.6712977
- ],
- [
- -72.2272094,
- 18.671358
- ],
- [
- -72.2261785,
- 18.6713693
- ],
- [
- -72.2256032,
- 18.670881
- ],
- [
- -72.2255073,
- 18.6694502
- ],
- [
- -72.2261066,
- 18.6696886
- ],
- [
- -72.2261785,
- 18.6695949
- ],
- [
- -72.2259837,
- 18.6695495
- ],
- [
- -72.225777,
- 18.6691379
- ],
- [
- -72.2253335,
- 18.6694643
- ],
- [
- -72.2249739,
- 18.66947
- ],
- [
- -72.2245783,
- 18.6678802
- ],
- [
- -72.2235525,
- 18.6677046
- ],
- [
- -72.2235907,
- 18.6675921
- ],
- [
- -72.2224634,
- 18.6676283
- ],
- [
- -72.2223659,
- 18.667022
- ],
- [
- -72.2223277,
- 18.6670943
- ],
- [
- -72.2219209,
- 18.667026
- ],
- [
- -72.2208105,
- 18.6669015
- ],
- [
- -72.220809,
- 18.6665325
- ],
- [
- -72.2208705,
- 18.6663593
- ],
- [
- -72.2206023,
- 18.6668107
- ],
- [
- -72.2203895,
- 18.6666361
- ],
- [
- -72.2184341,
- 18.6650535
- ],
- [
- -72.21829,
- 18.6640979
- ],
- [
- -72.2183493,
- 18.6608376
- ],
- [
- -72.2187223,
- 18.6606541
- ],
- [
- -72.2186894,
- 18.660603
- ],
- [
- -72.2187253,
- 18.6604525
- ],
- [
- -72.2189771,
- 18.6603247
- ],
- [
- -72.2187823,
- 18.6601998
- ],
- [
- -72.2186984,
- 18.6602367
- ],
- [
- -72.2185815,
- 18.6600352
- ],
- [
- -72.2186085,
- 18.6600039
- ],
- [
- -72.2187823,
- 18.6601345
- ],
- [
- -72.218995,
- 18.6600181
- ],
- [
- -72.2189111,
- 18.6599131
- ],
- [
- -72.2189681,
- 18.6597938
- ],
- [
- -72.2183807,
- 18.6595837
- ],
- [
- -72.2184728,
- 18.6539662
- ],
- [
- -72.2201001,
- 18.6511554
- ],
- [
- -72.225796,
- 18.6469472
- ],
- [
- -72.2283048,
- 18.6457265
- ],
- [
- -72.2379335,
- 18.645855
- ],
- [
- -72.237764,
- 18.6446985
- ],
- [
- -72.2400355,
- 18.6432529
- ],
- [
- -72.2455958,
- 18.6433493
- ],
- [
- -72.2482742,
- 18.6450358
- ],
- [
- -72.2487488,
- 18.6436705
- ],
- [
- -72.2511067,
- 18.6429775
- ],
- [
- -72.2512385,
- 18.6433409
- ],
- [
- -72.2512625,
- 18.6431592
- ],
- [
- -72.2514843,
- 18.6431365
- ],
- [
- -72.2513284,
- 18.6429718
- ],
- [
- -72.2533602,
- 18.6423471
- ],
- [
- -72.253516,
- 18.6426765
- ],
- [
- -72.2539535,
- 18.6425402
- ],
- [
- -72.2541453,
- 18.642932
- ],
- [
- -72.2543851,
- 18.6428696
- ],
- [
- -72.2543791,
- 18.6427503
- ],
- [
- -72.2564168,
- 18.6423244
- ],
- [
- -72.2566925,
- 18.6431365
- ],
- [
- -72.2568783,
- 18.6428582
- ],
- [
- -72.2568184,
- 18.6425288
- ],
- [
- -72.258843,
- 18.6420991
- ],
- [
- -72.258885,
- 18.6422467
- ],
- [
- -72.2592626,
- 18.6422297
- ],
- [
- -72.2596461,
- 18.6424057
- ],
- [
- -72.2592206,
- 18.6406907
- ],
- [
- -72.2599545,
- 18.6404815
- ],
- [
- -72.2601156,
- 18.6406341
- ],
- [
- -72.2601156,
- 18.6399393
- ],
- [
- -72.2615268,
- 18.6394669
- ],
- [
- -72.2626056,
- 18.6391034
- ],
- [
- -72.2654465,
- 18.6387286
- ],
- [
- -72.2719433,
- 18.6386832
- ],
- [
- -72.272201,
- 18.6388649
- ],
- [
- -72.2730341,
- 18.6394158
- ],
- [
- -72.273166,
- 18.6412558
- ],
- [
- -72.2738732,
- 18.6410286
- ],
- [
- -72.2742208,
- 18.6416079
- ],
- [
- -72.2752187,
- 18.6416987
- ],
- [
- -72.2754524,
- 18.6415738
- ],
- [
- -72.2755513,
- 18.6416874
- ],
- [
- -72.2755394,
- 18.6417527
- ],
- [
- -72.2764713,
- 18.6418634
- ],
- [
- -72.276753,
- 18.6418975
- ],
- [
- -72.2762953,
- 18.6426002
- ],
- [
- -72.2774226,
- 18.6429978
- ],
- [
- -72.277982,
- 18.6427247
- ],
- [
- -72.2785796,
- 18.6431303
- ],
- [
- -72.2785669,
- 18.6432307
- ],
- [
- -72.2789017,
- 18.6433471
- ],
- [
- -72.279851,
- 18.6439655
- ],
- [
- -72.2858703,
- 18.6469651
- ]
- ],
- [
- [
- -72.5557247,
- 18.5305893
- ],
- [
- -72.5555866,
- 18.5367036
- ],
- [
- -72.554995,
- 18.537975
- ],
- [
- -72.5488026,
- 18.537919
- ],
- [
- -72.5486646,
- 18.5372832
- ],
- [
- -72.548842,
- 18.5306267
- ],
- [
- -72.5493745,
- 18.5301031
- ],
- [
- -72.555133,
- 18.5301218
- ]
- ],
- [
- [
- -72.6235278,
- 18.5079877
- ],
- [
- -72.6234441,
- 18.5095217
- ],
- [
- -72.6226074,
- 18.5104341
- ],
- [
- -72.6204878,
- 18.511849
- ],
- [
- -72.6183403,
- 18.5107514
- ],
- [
- -72.6162207,
- 18.5083183
- ],
- [
- -72.6162625,
- 18.506467
- ],
- [
- -72.618661,
- 18.5044438
- ],
- [
- -72.6204041,
- 18.5044967
- ],
- [
- -72.6228305,
- 18.506996
- ]
- ]
- ]
- },
- {
- "name": "Ireland Bartholomew Quarter-Inch 1940",
- "type": "tms",
- "template": "http://geo.nls.uk/maps/ireland/bartholomew/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 5,
- 13
- ],
- "polygon": [
- [
- [
- -8.8312773,
- 55.3963337
- ],
- [
- -7.3221271,
- 55.398605
- ],
- [
- -7.2891331,
- 55.4333162
- ],
- [
- -7.2368042,
- 55.4530757
- ],
- [
- -7.18881,
- 55.4497995
- ],
- [
- -7.1528144,
- 55.3968384
- ],
- [
- -6.90561,
- 55.394903
- ],
- [
- -6.9047153,
- 55.3842114
- ],
- [
- -5.8485282,
- 55.3922956
- ],
- [
- -5.8378629,
- 55.248676
- ],
- [
- -5.3614762,
- 55.2507024
- ],
- [
- -5.3899172,
- 53.8466464
- ],
- [
- -5.8734141,
- 53.8487436
- ],
- [
- -5.8983,
- 52.8256258
- ],
- [
- -6.0191742,
- 52.8256258
- ],
- [
- -6.0262844,
- 51.7712367
- ],
- [
- -8.1131422,
- 51.7712367
- ],
- [
- -8.1273627,
- 51.3268839
- ],
- [
- -10.6052842,
- 51.3091083
- ],
- [
- -10.6271879,
- 52.0328254
- ],
- [
- -10.6469845,
- 52.0322454
- ],
- [
- -10.6469845,
- 52.0440365
- ],
- [
- -10.6271879,
- 52.0448095
- ],
- [
- -10.6290733,
- 52.0745627
- ],
- [
- -10.6699234,
- 52.0743695
- ],
- [
- -10.6702376,
- 52.0876941
- ],
- [
- -10.6312729,
- 52.0898179
- ],
- [
- -10.6393128,
- 52.4147202
- ],
- [
- -10.3137689,
- 52.4185533
- ],
- [
- -10.3166401,
- 53.3341342
- ],
- [
- -10.3699669,
- 53.3330727
- ],
- [
- -10.385965,
- 54.3534472
- ],
- [
- -8.8163777,
- 54.3586265
- ],
- [
- -8.8173427,
- 54.6595721
- ],
- [
- -8.8413398,
- 54.6616284
- ],
- [
- -8.8422286,
- 54.6929749
- ],
- [
- -8.8315632,
- 54.7145436
- ],
- [
- -8.8151208,
- 54.7145436
- ]
- ]
- ],
- "terms_url": "http://geo.nls.uk/maps/",
- "terms_text": "National Library of Scotland Historic Maps"
- },
- {
- "name": "Ireland British War Office 1:25k GSGS 3906",
- "type": "tms",
- "template": "http://mapwarper.net/layers/tile/101/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 18
- ],
- "polygon": [
- [
- [
- -10.71,
- 51.32
- ],
- [
- -10.71,
- 55.46
- ],
- [
- -5.37,
- 55.46
- ],
- [
- -5.37,
- 51.32
- ],
- [
- -10.71,
- 51.32
- ]
- ]
- ],
- "terms_url": "http://wiki.openstreetmap.org/wiki/WikiProject_Ireland#Trinity_College_Dublin",
- "terms_text": "Glucksman Map Library, Trinity College Dublin",
- "id": "GSGS3906"
- },
- {
- "name": "Ireland British War Office One-Inch 1941-43 GSGS 4136",
- "type": "tms",
- "template": "http://geo.nls.uk/maps/ireland/gsgs4136/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 5,
- 15
- ],
- "polygon": [
- [
- [
- -10.0847426,
- 51.4147902
- ],
- [
- -10.0906535,
- 51.5064103
- ],
- [
- -10.4564222,
- 51.5003961
- ],
- [
- -10.5005905,
- 52.3043019
- ],
- [
- -10.0837522,
- 52.312741
- ],
- [
- -10.0840973,
- 52.3404698
- ],
- [
- -10.055802,
- 52.3408915
- ],
- [
- -10.0768509,
- 52.7628238
- ],
- [
- -9.7780248,
- 52.7684611
- ],
- [
- -9.7818205,
- 52.8577261
- ],
- [
- -9.6337877,
- 52.8596012
- ],
- [
- -9.6449626,
- 53.1294502
- ],
- [
- -10.0919663,
- 53.1227152
- ],
- [
- -10.1051422,
- 53.3912913
- ],
- [
- -10.4052593,
- 53.3866349
- ],
- [
- -10.4530828,
- 54.193502
- ],
- [
- -10.2998523,
- 54.1974988
- ],
- [
- -10.3149801,
- 54.4669592
- ],
- [
- -8.9276095,
- 54.4853897
- ],
- [
- -8.9339534,
- 54.7546562
- ],
- [
- -8.7773069,
- 54.755501
- ],
- [
- -8.7826749,
- 55.0252208
- ],
- [
- -8.9402974,
- 55.0238221
- ],
- [
- -8.9451773,
- 55.2934155
- ],
- [
- -7.528039,
- 55.2970274
- ],
- [
- -7.525599,
- 55.3874955
- ],
- [
- -7.0541955,
- 55.3841691
- ],
- [
- -7.0556595,
- 55.2939712
- ],
- [
- -6.3241545,
- 55.2859128
- ],
- [
- -6.3217146,
- 55.3253556
- ],
- [
- -6.1035807,
- 55.3223016
- ],
- [
- -6.1045566,
- 55.2828557
- ],
- [
- -5.7985836,
- 55.2772968
- ],
- [
- -5.8117595,
- 55.0087135
- ],
- [
- -5.656577,
- 55.0056351
- ],
- [
- -5.6721928,
- 54.7355021
- ],
- [
- -5.3618278,
- 54.729585
- ],
- [
- -5.3964755,
- 54.1917889
- ],
- [
- -5.855679,
- 54.2017807
- ],
- [
- -5.9220464,
- 52.8524504
- ],
- [
- -6.070885,
- 52.8551025
- ],
- [
- -6.1030927,
- 52.1373337
- ],
- [
- -6.8331336,
- 52.1463183
- ],
- [
- -6.8355736,
- 52.0578908
- ],
- [
- -7.5641506,
- 52.0617913
- ],
- [
- -7.5661026,
- 51.7921593
- ],
- [
- -8.147305,
- 51.792763
- ],
- [
- -8.146329,
- 51.7033331
- ],
- [
- -8.2912636,
- 51.7027283
- ],
- [
- -8.2897996,
- 51.5227274
- ],
- [
- -9.1174397,
- 51.516958
- ],
- [
- -9.1179277,
- 51.4625685
- ],
- [
- -9.3692452,
- 51.4616564
- ],
- [
- -9.3672933,
- 51.4254613
- ]
- ]
- ],
- "terms_url": "http://geo.nls.uk/maps/",
- "terms_text": "National Library of Scotland Historic Maps",
- "id": "GSGS4136"
- },
- {
- "name": "Ireland EEA CORINE 2006",
- "type": "tms",
- "template": "http://a.tile.openstreetmap.ie/tiles/corine/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 5,
- 16
- ],
- "polygon": [
- [
- [
- -5.842956,
- 53.8627976
- ],
- [
- -5.8341575,
- 53.7633541
- ],
- [
- -5.6267647,
- 53.5383692
- ],
- [
- -5.9648778,
- 52.1631197
- ],
- [
- -6.0453211,
- 52.0527275
- ],
- [
- -6.1823261,
- 51.9699475
- ],
- [
- -6.3960035,
- 51.9234618
- ],
- [
- -6.5945978,
- 51.883911
- ],
- [
- -7.2481994,
- 51.9056295
- ],
- [
- -7.341212,
- 51.8148076
- ],
- [
- -8.1971787,
- 51.5037019
- ],
- [
- -8.3191005,
- 51.4167737
- ],
- [
- -9.4478202,
- 51.1991221
- ],
- [
- -9.9015706,
- 51.2266802
- ],
- [
- -10.472215,
- 51.4050139
- ],
- [
- -10.8857437,
- 51.6770619
- ],
- [
- -11.035318,
- 52.0620016
- ],
- [
- -10.9950963,
- 52.1831616
- ],
- [
- -10.8178697,
- 52.3139827
- ],
- [
- -9.8839736,
- 52.9032208
- ],
- [
- -10.1165049,
- 52.9676141
- ],
- [
- -10.5514014,
- 53.3317027
- ],
- [
- -10.6896633,
- 53.5854022
- ],
- [
- -10.6444139,
- 54.0100436
- ],
- [
- -10.5501445,
- 54.257482
- ],
- [
- -10.2824192,
- 54.4742405
- ],
- [
- -9.8073011,
- 54.5705346
- ],
- [
- -9.196435,
- 54.5486695
- ],
- [
- -9.2253443,
- 54.7000264
- ],
- [
- -8.8985435,
- 55.1363582
- ],
- [
- -8.0476045,
- 55.4711977
- ],
- [
- -7.4367384,
- 55.6191092
- ],
- [
- -7.2205471,
- 55.6205288
- ],
- [
- -6.8258723,
- 55.5608644
- ],
- [
- -6.0679458,
- 55.3727567
- ],
- [
- -5.5639184,
- 55.0759594
- ],
- [
- -5.0649187,
- 54.4640142
- ],
- [
- -5.2572284,
- 54.1582424
- ]
- ]
- ],
- "terms_url": "http://www.eea.europa.eu/data-and-maps/data/clc-2006-vector-data-version-1",
- "terms_text": "EEA Corine 2006"
- },
- {
- "name": "Ireland EEA GMES Urban Atlas",
- "type": "tms",
- "template": "http://a.tile.openstreetmap.ie/tiles/urbanatlas/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 5,
- 17
- ],
- "polygon": [
- [
- [
- -9.2759602,
- 52.7993666
- ],
- [
- -9.215509,
- 52.8276933
- ],
- [
- -9.1086618,
- 52.9128016
- ],
- [
- -9.0196831,
- 52.8837107
- ],
- [
- -8.8760649,
- 52.8978445
- ],
- [
- -8.8001797,
- 52.8833558
- ],
- [
- -8.7665597,
- 52.9065354
- ],
- [
- -8.5938079,
- 52.9238592
- ],
- [
- -8.5241972,
- 52.8869724
- ],
- [
- -8.4956786,
- 52.9105906
- ],
- [
- -8.3506448,
- 52.9238592
- ],
- [
- -8.2718204,
- 52.9492401
- ],
- [
- -8.2249679,
- 52.8991338
- ],
- [
- -8.1564001,
- 52.9149986
- ],
- [
- -8.0881237,
- 52.7630417
- ],
- [
- -8.1360092,
- 52.7239783
- ],
- [
- -8.1570652,
- 52.6766443
- ],
- [
- -8.2059695,
- 52.6185385
- ],
- [
- -8.2025734,
- 52.5954396
- ],
- [
- -8.2231242,
- 52.5599691
- ],
- [
- -8.2236294,
- 52.5095371
- ],
- [
- -8.2976651,
- 52.5025088
- ],
- [
- -8.3295888,
- 52.4721087
- ],
- [
- -8.3589695,
- 52.4986072
- ],
- [
- -8.3737385,
- 52.4764529
- ],
- [
- -8.432326,
- 52.4342609
- ],
- [
- -8.4754569,
- 52.4216289
- ],
- [
- -8.5017727,
- 52.3870011
- ],
- [
- -8.5476205,
- 52.3681351
- ],
- [
- -8.6444103,
- 52.3376422
- ],
- [
- -8.6841451,
- 52.3660614
- ],
- [
- -8.8154099,
- 52.3721014
- ],
- [
- -8.8614233,
- 52.3521652
- ],
- [
- -8.9074451,
- 52.3824674
- ],
- [
- -8.9388551,
- 52.3789166
- ],
- [
- -8.9782502,
- 52.4093811
- ],
- [
- -9.0298715,
- 52.4104169
- ],
- [
- -9.1059449,
- 52.420981
- ],
- [
- -9.1084962,
- 52.4415071
- ],
- [
- -9.140702,
- 52.4650891
- ],
- [
- -9.1315765,
- 52.5136207
- ],
- [
- -9.1739699,
- 52.5620573
- ],
- [
- -9.1426235,
- 52.589645
- ],
- [
- -9.1542382,
- 52.610216
- ],
- [
- -9.1426231,
- 52.6387401
- ],
- [
- -9.1776844,
- 52.6447573
- ],
- [
- -9.2012184,
- 52.6526248
- ],
- [
- -9.2036198,
- 52.6686468
- ],
- [
- -9.2238348,
- 52.6706578
- ],
- [
- -9.2161072,
- 52.6919412
- ],
- [
- -9.1882395,
- 52.7057242
- ],
- [
- -9.2750099,
- 52.7350292
- ],
- [
- -9.2601152,
- 52.7616711
- ]
- ],
- [
- [
- -7.307313219981238,
- 53.81625879275365
- ],
- [
- -7.245858447032101,
- 53.78300449111207
- ],
- [
- -7.15144468970801,
- 53.81179938127503
- ],
- [
- -7.086900011973722,
- 53.784424420834
- ],
- [
- -7.0347149533800435,
- 53.77996162275688
- ],
- [
- -6.975320116954343,
- 53.788481098127924
- ],
- [
- -6.928628222423156,
- 53.81443454540607
- ],
- [
- -6.992829577403537,
- 53.86609081229548
- ],
- [
- -6.975320116954343,
- 53.87945028968944
- ],
- [
- -6.949914233165313,
- 53.87094929783329
- ],
- [
- -6.9375546140247035,
- 53.87540241385127
- ],
- [
- -6.936867968516893,
- 53.896649390754646
- ],
- [
- -6.897042529063821,
- 53.889770599553906
- ],
- [
- -6.867516772227924,
- 53.880259817835736
- ],
- [
- -6.851037280040446,
- 53.88450958346468
- ],
- [
- -6.842454211192801,
- 53.89786317755242
- ],
- [
- -6.812928454356904,
- 53.90069520963246
- ],
- [
- -6.79850889869286,
- 53.89280549994937
- ],
- [
- -6.789925829845217,
- 53.89462633440526
- ],
- [
- -6.791985766368652,
- 53.904538374710896
- ],
- [
- -6.778939501720231,
- 53.918087767078354
- ],
- [
- -6.77001311011868,
- 53.91505470292794
- ],
- [
- -6.75868345923979,
- 53.921727153244476
- ],
- [
- -6.744263903575747,
- 53.916065748791254
- ],
- [
- -6.727441088634364,
- 53.92334455637637
- ],
- [
- -6.713021532970319,
- 53.90777445003927
- ],
- [
- -6.684182421642232,
- 53.90292024303218
- ],
- [
- -6.623757616954815,
- 53.88187882710815
- ],
- [
- -6.590455309825955,
- 53.857789593974296
- ],
- [
- -6.591141955333765,
- 53.835509894663346
- ],
- [
- -6.574319140392382,
- 53.82254170362619
- ],
- [
- -6.571572558361136,
- 53.804703885117576
- ],
- [
- -6.5533764524041285,
- 53.79983770791046
- ],
- [
- -6.541360156017425,
- 53.78300449111207
- ],
- [
- -6.511491076427622,
- 53.76900546961285
- ],
- [
- -6.472695605236269,
- 53.77326653566421
- ],
- [
- -6.443513171154276,
- 53.76393220797015
- ],
- [
- -6.44728972144724,
- 53.75114486961979
- ],
- [
- -6.4775021237909485,
- 53.728199094666586
- ],
- [
- -6.459649340587848,
- 53.71682309412751
- ],
- [
- -6.435616747814443,
- 53.72230833571077
- ],
- [
- -6.4198239011347775,
- 53.72921465935537
- ],
- [
- -6.4009411496699595,
- 53.72169889975152
- ],
- [
- -6.375878588634836,
- 53.718042098526006
- ],
- [
- -6.359055773693453,
- 53.708695495259434
- ],
- [
- -6.340173022228636,
- 53.708085862042424
- ],
- [
- -6.329873339611461,
- 53.71296268045594
- ],
- [
- -6.325753466564592,
- 53.72210519137233
- ],
- [
- -6.2938244504513525,
- 53.72576163932632
- ],
- [
- -6.265328661877173,
- 53.7363229253304
- ],
- [
- -6.240952746349864,
- 53.734292114843086
- ],
- [
- -6.180871264416349,
- 53.632015710147016
- ],
- [
- -6.092793818322125,
- 53.588038288422446
- ],
- [
- -5.985734079608837,
- 53.49383447350347
- ],
- [
- -6.0887447432153685,
- 53.27174268379562
- ],
- [
- -6.033272979232964,
- 53.1191110041494
- ],
- [
- -5.984663357119282,
- 52.9651254915577
- ],
- [
- -6.122679104189409,
- 52.73207538466633
- ],
- [
- -6.185163845400262,
- 52.73706461957944
- ],
- [
- -6.1899703639549415,
- 52.76075568810044
- ],
- [
- -6.319059719423517,
- 52.782357357522855
- ],
- [
- -6.393904079774976,
- 52.7790347214105
- ],
- [
- -6.465315212587381,
- 52.6946379192593
- ],
- [
- -6.534666408876349,
- 52.673409093161446
- ],
- [
- -6.612257351259057,
- 52.69255711803012
- ],
- [
- -6.6692489284074155,
- 52.74745702505679
- ],
- [
- -6.671308864930852,
- 52.76948072949997
- ],
- [
- -6.720747341493285,
- 52.7748810695361
- ],
- [
- -6.71456753192298,
- 52.80311808637125
- ],
- [
- -6.658949245790243,
- 52.84709806982182
- ],
- [
- -6.582044948915348,
- 52.81349473557279
- ],
- [
- -6.547712673524768,
- 52.83133677935633
- ],
- [
- -6.531233181337292,
- 52.87404491274922
- ],
- [
- -6.617750515321548,
- 52.87528820923615
- ],
- [
- -6.728987087587023,
- 52.90635903963372
- ],
- [
- -6.780485500672891,
- 52.859122574848655
- ],
- [
- -6.870436062196207,
- 52.85165948109425
- ],
- [
- -6.938413967469552,
- 52.86658438536895
- ],
- [
- -6.965879787782016,
- 52.89766145203082
- ],
- [
- -6.987852444031986,
- 52.969260966642985
- ],
- [
- -7.039350857117853,
- 52.9560260536776
- ],
- [
- -7.109388698914634,
- 53.007288776633686
- ],
- [
- -7.068876613953752,
- 53.058078015357786
- ],
- [
- -7.088789333680287,
- 53.11869890949892
- ],
- [
- -7.119688381531809,
- 53.15000684568904
- ],
- [
- -7.105955471375577,
- 53.16112391039828
- ],
- [
- -7.127928127625547,
- 53.17223809655703
- ],
- [
- -7.180113186219227,
- 53.182526443342745
- ],
- [
- -7.160887112000503,
- 53.19898266621498
- ],
- [
- -7.057890285828767,
- 53.19898266621498
- ],
- [
- -7.048963894227218,
- 53.217077217179636
- ],
- [
- -7.0915359157115345,
- 53.235575105358386
- ],
- [
- -7.0434707301647235,
- 53.25735126035676
- ],
- [
- -7.05102383075065,
- 53.29717703664696
- ],
- [
- -6.996778835633536,
- 53.31112780504489
- ],
- [
- -7.044157375672535,
- 53.33368557548294
- ],
- [
- -7.105955471375576,
- 53.371801590024276
- ],
- [
- -7.22050647653913,
- 53.432465115081854
- ],
- [
- -7.149441429887032,
- 53.45731709817442
- ],
- [
- -7.099891489102085,
- 53.463915962572514
- ],
- [
- -7.0744645458045445,
- 53.48370640260363
- ],
- [
- -7.079028356140001,
- 53.504650927752664
- ],
- [
- -7.047733656696876,
- 53.515119311359335
- ],
- [
- -7.029478415355053,
- 53.54147267392419
- ],
- [
- -7.054253385747527,
- 53.56471202500164
- ],
- [
- -7.009267255298033,
- 53.58561652973758
- ],
- [
- -6.992641946218873,
- 53.602642188744426
- ],
- [
- -6.989056095241016,
- 53.62739453790707
- ],
- [
- -6.9717788132567895,
- 53.63686620586593
- ],
- [
- -6.9633031654909425,
- 53.650973114934644
- ],
- [
- -6.9871001765258205,
- 53.66623418009986
- ],
- [
- -6.999813648174589,
- 53.67086935885432
- ],
- [
- -7.008289295940436,
- 53.65908728051006
- ],
- [
- -7.044473792171549,
- 53.65367801032349
- ],
- [
- -7.066640870943764,
- 53.63918547390694
- ],
- [
- -7.101847407817279,
- 53.65870092708686
- ],
- [
- -7.120754622064167,
- 53.672993645380515
- ],
- [
- -7.137379931143327,
- 53.66893809633893
- ],
- [
- -7.160850955725672,
- 53.683034277255075
- ],
- [
- -7.174216400279507,
- 53.686316272406906
- ],
- [
- -7.196057492599188,
- 53.69017711570491
- ],
- [
- -7.210726882963154,
- 53.69480966037566
- ],
- [
- -7.247237365646801,
- 53.71661437518035
- ],
- [
- -7.239413690786019,
- 53.73223735177976
- ],
- [
- -7.260276823748104,
- 53.74361339729716
- ],
- [
- -7.2814659431627184,
- 53.75922634307083
- ],
- [
- -7.289615604476034,
- 53.77271433845693
- ],
- [
- -7.3238441819919515,
- 53.78465723043301
- ],
- [
- -7.337209626545788,
- 53.78658318504567
- ],
- [
- -7.351227044004687,
- 53.80141007448381
- ],
- [
- -7.307313219981238,
- 53.81625879275365
- ]
- ],
- [
- [
- -5.685433013282673,
- 54.77854496390836
- ],
- [
- -5.696867084279401,
- 54.73050346921268
- ],
- [
- -5.8223689524230124,
- 54.70033215177621
- ],
- [
- -5.878760568989772,
- 54.649492182564074
- ],
- [
- -5.743404719024681,
- 54.68128223623249
- ],
- [
- -5.581196917402638,
- 54.68781619319656
- ],
- [
- -5.571488953592992,
- 54.67074450064368
- ],
- [
- -5.582915011231644,
- 54.66440901595977
- ],
- [
- -5.58291501123164,
- 54.65085746679818
- ],
- [
- -5.6086481910584185,
- 54.63997082553691
- ],
- [
- -5.6354970593650116,
- 54.61551371292451
- ],
- [
- -5.728732824433139,
- 54.6184944610979
- ],
- [
- -5.822612969913913,
- 54.49193018941315
- ],
- [
- -5.896754545381575,
- 54.44975600798866
- ],
- [
- -5.936834914186871,
- 54.38213187386197
- ],
- [
- -6.0187561190025445,
- 54.36974944197913
- ],
- [
- -6.059257912638059,
- 54.38280030737259
- ],
- [
- -6.101784280694663,
- 54.41510088826871
- ],
- [
- -6.1740201072375225,
- 54.43476829635816
- ],
- [
- -6.216261364689026,
- 54.42827259213158
- ],
- [
- -6.264329002478664,
- 54.487825014814625
- ],
- [
- -6.249277519938476,
- 54.49741303545491
- ],
- [
- -6.288340515296785,
- 54.53143435197413
- ],
- [
- -6.283750270272458,
- 54.54447449434036
- ],
- [
- -6.321445027854273,
- 54.58928767713928
- ],
- [
- -6.264329002478664,
- 54.604982769755765
- ],
- [
- -6.240052417736423,
- 54.59541999854735
- ],
- [
- -6.098762694536575,
- 54.631690374598676
- ],
- [
- -6.051950538018501,
- 54.61314575326238
- ],
- [
- -6.031509408441251,
- 54.620921248201434
- ],
- [
- -6.002995140908084,
- 54.65571636730639
- ],
- [
- -6.0647754758974335,
- 54.6634355452454
- ],
- [
- -6.059920158948984,
- 54.704134188139534
- ],
- [
- -6.047781866577864,
- 54.71395188569398
- ],
- [
- -6.120611620804591,
- 54.801644524994515
- ],
- [
- -6.002141887262449,
- 54.80836072138932
- ],
- [
- -5.984662746248036,
- 54.78652900156178
- ],
- [
- -5.685433013282673,
- 54.77854496390836
- ]
- ],
- [
- [
- -9.128658300749114,
- 53.24759266864586
- ],
- [
- -9.024510568479629,
- 53.26744820137083
- ],
- [
- -9.016360907166316,
- 53.26364619217274
- ],
- [
- -9.001854510028616,
- 53.26588844362053
- ],
- [
- -8.9951717877517,
- 53.259258838409615
- ],
- [
- -8.973493688658284,
- 53.262378780650025
- ],
- [
- -8.95230456924367,
- 53.271444820907114
- ],
- [
- -8.956705386352859,
- 53.281580911863244
- ],
- [
- -8.961106203462048,
- 53.28119110665652
- ],
- [
- -8.960780217009516,
- 53.28908396911955
- ],
- [
- -8.954260487958864,
- 53.28927883616923
- ],
- [
- -8.95230456924367,
- 53.30155366854246
- ],
- [
- -8.963714095082308,
- 53.303793931840495
- ],
- [
- -8.9811543702928,
- 53.294734752711804
- ],
- [
- -8.985718180628256,
- 53.30174847871221
- ],
- [
- -9.019946758144176,
- 53.30768976199425
- ],
- [
- -9.00837423907927,
- 53.31596722087059
- ],
- [
- -9.01880580556031,
- 53.31625933715475
- ],
- [
- -9.045862681120513,
- 53.31275380979257
- ],
- [
- -9.06444390891487,
- 53.32122500810515
- ],
- [
- -9.080906224767762,
- 53.307397587062724
- ],
- [
- -9.08106921799403,
- 53.303404329274585
- ],
- [
- -9.09019683866494,
- 53.30574189135002
- ],
- [
- -9.095901601584261,
- 53.298826232852214
- ],
- [
- -9.10128037805105,
- 53.3008718259498
- ],
- [
- -9.115623781962478,
- 53.28450433758295
- ],
- [
- -9.121491538108067,
- 53.2832375443259
- ],
- [
- -9.13273807072044,
- 53.28557621023763
- ],
- [
- -9.144636576237877,
- 53.27865728614638
- ],
- [
- -9.13876882009229,
- 53.26345120822951
- ],
- [
- -9.128658300749114,
- 53.24759266864586
- ]
- ],
- [
- [
- -8.595266214281438,
- 51.69264788483154
- ],
- [
- -8.55819409885298,
- 51.69306638852667
- ],
- [
- -8.566697711835303,
- 51.682644706464686
- ],
- [
- -8.579130708100188,
- 51.67349700898941
- ],
- [
- -8.544554623426079,
- 51.66520531197343
- ],
- [
- -8.494765061495364,
- 51.667778759675976
- ],
- [
- -8.30113898732036,
- 51.7235009029955
- ],
- [
- -8.268406960495541,
- 51.784858633837544
- ],
- [
- -8.154536388302146,
- 51.7814362126791
- ],
- [
- -8.115350159004825,
- 51.809093351533164
- ],
- [
- -8.068326683848039,
- 51.870050153657075
- ],
- [
- -8.10059769621054,
- 51.89964422561186
- ],
- [
- -8.08123508879304,
- 51.918414974037226
- ],
- [
- -8.09183842142643,
- 51.95337589170907
- ],
- [
- -8.124570448251253,
- 51.95479649105758
- ],
- [
- -8.132407694110718,
- 51.970988142592034
- ],
- [
- -8.099675667285895,
- 51.978371865876596
- ],
- [
- -8.144394070131078,
- 52.02151390085561
- ],
- [
- -8.159607547387685,
- 52.064330945363764
- ],
- [
- -8.140705954432507,
- 52.07254939152303
- ],
- [
- -8.165600735397863,
- 52.09294727054506
- ],
- [
- -8.18726841512697,
- 52.0835993998731
- ],
- [
- -8.2093971093184,
- 52.10512489114057
- ],
- [
- -8.207092037006792,
- 52.12494181389489
- ],
- [
- -8.227837687811258,
- 52.143052434929714
- ],
- [
- -8.222766528725723,
- 52.16454923557058
- ],
- [
- -8.30298304516965,
- 52.1829264222872
- ],
- [
- -8.427456949996438,
- 52.17783811526099
- ],
- [
- -8.46710419375608,
- 52.169921813849676
- ],
- [
- -8.509978538751975,
- 52.18405707812542
- ],
- [
- -8.530263175094117,
- 52.16511480067495
- ],
- [
- -8.574981577939297,
- 52.18066502436804
- ],
- [
- -8.587889982884295,
- 52.16963906274442
- ],
- [
- -8.642289689438227,
- 52.18829678149147
- ],
- [
- -8.719279104645906,
- 52.15804472022032
- ],
- [
- -8.698533453841442,
- 52.13541291452849
- ],
- [
- -8.740946784375014,
- 52.10823956240069
- ],
- [
- -8.77460084012448,
- 52.05951253229793
- ],
- [
- -8.803183736788409,
- 52.03768144571248
- ],
- [
- -8.86818677597573,
- 52.03286015807593
- ],
- [
- -8.870491848287335,
- 52.01839317543363
- ],
- [
- -8.844214023935015,
- 51.991148511559096
- ],
- [
- -8.79811257770287,
- 51.964455373040394
- ],
- [
- -8.782899100446263,
- 51.931777239822054
- ],
- [
- -8.835915763613228,
- 51.9292188160068
- ],
- [
- -8.838681850387156,
- 51.90277322850554
- ],
- [
- -8.802261707863764,
- 51.89367006943167
- ],
- [
- -8.792580404155013,
- 51.85695425263326
- ],
- [
- -8.765841565340368,
- 51.82476769939557
- ],
- [
- -8.758926348405547,
- 51.80054140901511
- ],
- [
- -8.79811257770287,
- 51.78628456602828
- ],
- [
- -8.832227647914657,
- 51.79626482935233
- ],
- [
- -8.836837792537873,
- 51.77687258059678
- ],
- [
- -8.885705325543944,
- 51.746055989869106
- ],
- [
- -8.859888515653944,
- 51.72435763090916
- ],
- [
- -8.807332866949299,
- 51.71093369500414
- ],
- [
- -8.678248817499297,
- 51.693505197270746
- ],
- [
- -8.60540853245251,
- 51.67835695335278
- ],
- [
- -8.595266214281438,
- 51.69264788483154
- ]
- ],
- [
- [
- -7.138279151048154,
- 55.06131559970097
- ],
- [
- -7.117994514706011,
- 54.99631329558348
- ],
- [
- -7.070049010624583,
- 54.98784996056705
- ],
- [
- -7.076503213097081,
- 54.93332450204895
- ],
- [
- -7.025791622241725,
- 54.91159959910791
- ],
- [
- -7.007351043748867,
- 54.87872502112528
- ],
- [
- -7.024869593317081,
- 54.8511320998998
- ],
- [
- -6.990754523105296,
- 54.81661438893913
- ],
- [
- -7.051608432131725,
- 54.80598761598125
- ],
- [
- -7.115228427932084,
- 54.80651902101645
- ],
- [
- -7.170550163410654,
- 54.84847793920564
- ],
- [
- -7.199133060074584,
- 54.84316909395457
- ],
- [
- -7.222183783190655,
- 54.85803210052931
- ],
- [
- -7.2111194360949415,
- 54.862808332627324
- ],
- [
- -7.212041465019584,
- 54.882438010878076
- ],
- [
- -7.279349576518514,
- 54.880846771447125
- ],
- [
- -7.273817402970655,
- 54.91530955931841
- ],
- [
- -7.3033223285592275,
- 54.915839525718205
- ],
- [
- -7.363254208661015,
- 54.90894941815292
- ],
- [
- -7.385382902852443,
- 54.91636948513913
- ],
- [
- -7.391837105324943,
- 54.93438395336098
- ],
- [
- -7.429640291235302,
- 54.95291983389722
- ],
- [
- -7.420420001988872,
- 54.99208185118366
- ],
- [
- -7.410277683817801,
- 55.03437621938347
- ],
- [
- -7.3577220351131585,
- 55.057619110599035
- ],
- [
- -7.265519142648871,
- 55.07557028899173
- ],
- [
- -7.138279151048154,
- 55.06131559970097
- ]
- ],
- [
- [
- -7.190498776293322,
- 52.26144368927652
- ],
- [
- -7.156844720543858,
- 52.28443443581867
- ],
- [
- -7.132871968503143,
- 52.27343421670601
- ],
- [
- -7.113278853854483,
- 52.26779201951648
- ],
- [
- -7.098295883829036,
- 52.27230583471742
- ],
- [
- -7.089767116276089,
- 52.25509445009032
- ],
- [
- -7.07109603055207,
- 52.259186286149074
- ],
- [
- -7.033984366335195,
- 52.257352061495865
- ],
- [
- -7.027530163862696,
- 52.250720000975015
- ],
- [
- -7.034675888028678,
- 52.247756419376
- ],
- [
- -7.031218279561267,
- 52.24013487190721
- ],
- [
- -7.034214873566356,
- 52.23222966213934
- ],
- [
- -7.050580886978767,
- 52.2296884028405
- ],
- [
- -7.062567262999124,
- 52.21980434486687
- ],
- [
- -7.076858711331088,
- 52.216132562953725
- ],
- [
- -7.084926464421715,
- 52.22065163604718
- ],
- [
- -7.084465449959392,
- 52.22785295843095
- ],
- [
- -7.101292477834124,
- 52.221498911062525
- ],
- [
- -7.105211100763858,
- 52.21726237433474
- ],
- [
- -7.111665303236357,
- 52.21796849185403
- ],
- [
- -7.107977187537785,
- 52.21104805609072
- ],
- [
- -7.117773744862115,
- 52.20928246619701
- ],
- [
- -7.129760120882472,
- 52.21690931136535
- ],
- [
- -7.14497359813908,
- 52.21782726924826
- ],
- [
- -7.150505771686938,
- 52.22375823207553
- ],
- [
- -7.158112510315241,
- 52.22262858593765
- ],
- [
- -7.158804032008724,
- 52.22700580464912
- ],
- [
- -7.158573524777563,
- 52.23180612902503
- ],
- [
- -7.167563306792832,
- 52.23985256723076
- ],
- [
- -7.16733279956167,
- 52.244580933687786
- ],
- [
- -7.172519212262786,
- 52.24676851484933
- ],
- [
- -7.177590371348324,
- 52.25114335361416
- ],
- [
- -7.190498776293322,
- 52.26144368927652
- ]
- ]
- ],
- "terms_url": "http://www.eea.europa.eu/data-and-maps/data/urban-atlas",
- "terms_text": "EEA GMES Urban Atlas"
- },
- {
- "name": "Kanton Aargau 25cm (AGIS 2011)",
- "type": "tms",
- "template": "http://tiles.poole.ch/AGIS/OF2011/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 14,
- 19
- ],
- "polygon": [
- [
- [
- 7.7,
- 47.12
- ],
- [
- 7.7,
- 47.63
- ],
- [
- 8.5,
- 47.63
- ],
- [
- 8.5,
- 47.12
- ],
- [
- 7.7,
- 47.12
- ]
- ]
- ],
- "terms_text": "AGIS OF2011"
- },
- {
- "name": "Katastrálna mapa Slovenska (KaPor, 2010-04)",
- "type": "tms",
- "template": "http://www.freemap.sk/tms/kapor2/{zoom}/{x}/{y}.jpg",
- "polygon": [
- [
- [
- 19.83682,
- 49.25529
- ],
- [
- 19.80075,
- 49.42385
- ],
- [
- 19.60437,
- 49.48058
- ],
- [
- 19.49179,
- 49.63961
- ],
- [
- 19.21831,
- 49.52604
- ],
- [
- 19.16778,
- 49.42521
- ],
- [
- 19.00308,
- 49.42236
- ],
- [
- 18.97611,
- 49.5308
- ],
- [
- 18.54685,
- 49.51425
- ],
- [
- 18.31432,
- 49.33818
- ],
- [
- 18.15913,
- 49.2961
- ],
- [
- 18.05564,
- 49.11134
- ],
- [
- 17.56396,
- 48.84938
- ],
- [
- 17.17929,
- 48.88816
- ],
- [
- 17.058,
- 48.81105
- ],
- [
- 16.90426,
- 48.61947
- ],
- [
- 16.79685,
- 48.38561
- ],
- [
- 17.06762,
- 48.01116
- ],
- [
- 17.32787,
- 47.97749
- ],
- [
- 17.51699,
- 47.82535
- ],
- [
- 17.74776,
- 47.73093
- ],
- [
- 18.29515,
- 47.72075
- ],
- [
- 18.67959,
- 47.75541
- ],
- [
- 18.89755,
- 47.81203
- ],
- [
- 18.79463,
- 47.88245
- ],
- [
- 18.84318,
- 48.04046
- ],
- [
- 19.46212,
- 48.05333
- ],
- [
- 19.62064,
- 48.22938
- ],
- [
- 19.89585,
- 48.09387
- ],
- [
- 20.33766,
- 48.2643
- ],
- [
- 20.55395,
- 48.52358
- ],
- [
- 20.82335,
- 48.55714
- ],
- [
- 21.10271,
- 48.47096
- ],
- [
- 21.45863,
- 48.55513
- ],
- [
- 21.74536,
- 48.31435
- ],
- [
- 22.15293,
- 48.37179
- ],
- [
- 22.61255,
- 49.08914
- ],
- [
- 22.09997,
- 49.23814
- ],
- [
- 21.9686,
- 49.36363
- ],
- [
- 21.6244,
- 49.46989
- ],
- [
- 21.06873,
- 49.46402
- ],
- [
- 20.94336,
- 49.31088
- ],
- [
- 20.73052,
- 49.44006
- ],
- [
- 20.22804,
- 49.41714
- ],
- [
- 20.05234,
- 49.23052
- ],
- [
- 19.83682,
- 49.25529
- ]
- ]
- ],
- "terms_url": "http://wiki.freemap.sk/KatasterPortal",
- "terms_text": "Permisssion by UGKK"
- },
- {
- "name": "Katastrálna mapa Slovenska (KaPor, 2011-05)",
- "type": "tms",
- "template": "http://www.freemap.sk/tms/kapor2_201105/{zoom}/{x}/{y}.jpg",
- "polygon": [
- [
- [
- 19.83682,
- 49.25529
- ],
- [
- 19.80075,
- 49.42385
- ],
- [
- 19.60437,
- 49.48058
- ],
- [
- 19.49179,
- 49.63961
- ],
- [
- 19.21831,
- 49.52604
- ],
- [
- 19.16778,
- 49.42521
- ],
- [
- 19.00308,
- 49.42236
- ],
- [
- 18.97611,
- 49.5308
- ],
- [
- 18.54685,
- 49.51425
- ],
- [
- 18.31432,
- 49.33818
- ],
- [
- 18.15913,
- 49.2961
- ],
- [
- 18.05564,
- 49.11134
- ],
- [
- 17.56396,
- 48.84938
- ],
- [
- 17.17929,
- 48.88816
- ],
- [
- 17.058,
- 48.81105
- ],
- [
- 16.90426,
- 48.61947
- ],
- [
- 16.79685,
- 48.38561
- ],
- [
- 17.06762,
- 48.01116
- ],
- [
- 17.32787,
- 47.97749
- ],
- [
- 17.51699,
- 47.82535
- ],
- [
- 17.74776,
- 47.73093
- ],
- [
- 18.29515,
- 47.72075
- ],
- [
- 18.67959,
- 47.75541
- ],
- [
- 18.89755,
- 47.81203
- ],
- [
- 18.79463,
- 47.88245
- ],
- [
- 18.84318,
- 48.04046
- ],
- [
- 19.46212,
- 48.05333
- ],
- [
- 19.62064,
- 48.22938
- ],
- [
- 19.89585,
- 48.09387
- ],
- [
- 20.33766,
- 48.2643
- ],
- [
- 20.55395,
- 48.52358
- ],
- [
- 20.82335,
- 48.55714
- ],
- [
- 21.10271,
- 48.47096
- ],
- [
- 21.45863,
- 48.55513
- ],
- [
- 21.74536,
- 48.31435
- ],
- [
- 22.15293,
- 48.37179
- ],
- [
- 22.61255,
- 49.08914
- ],
- [
- 22.09997,
- 49.23814
- ],
- [
- 21.9686,
- 49.36363
- ],
- [
- 21.6244,
- 49.46989
- ],
- [
- 21.06873,
- 49.46402
- ],
- [
- 20.94336,
- 49.31088
- ],
- [
- 20.73052,
- 49.44006
- ],
- [
- 20.22804,
- 49.41714
- ],
- [
- 20.05234,
- 49.23052
- ],
- [
- 19.83682,
- 49.25529
- ]
- ]
- ],
- "terms_url": "http://wiki.freemap.sk/KatasterPortal",
- "terms_text": "Permisssion by UGKK"
- },
- {
- "name": "Kelowna 2012",
- "type": "tms",
- "description": "High quality aerial imagery taken for the City of Kelowna",
- "template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/kelowna2012/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 9,
- 20
- ],
- "polygon": [
- [
- [
- -119.5867318,
- 49.7928087
- ],
- [
- -119.5465655,
- 49.7928097
- ],
- [
- -119.5465661,
- 49.8013837
- ],
- [
- -119.5343374,
- 49.8013841
- ],
- [
- -119.5343376,
- 49.8047321
- ],
- [
- -119.5296211,
- 49.8047322
- ],
- [
- -119.5296216,
- 49.8119555
- ],
- [
- -119.5104463,
- 49.811956
- ],
- [
- -119.5115683,
- 49.8744325
- ],
- [
- -119.5108946,
- 49.8744904
- ],
- [
- -119.5114111,
- 49.8843312
- ],
- [
- -119.5114115,
- 49.9221763
- ],
- [
- -119.49386,
- 49.9223477
- ],
- [
- -119.4940505,
- 49.9313031
- ],
- [
- -119.4803936,
- 49.9317529
- ],
- [
- -119.4804572,
- 49.9407474
- ],
- [
- -119.4666732,
- 49.9409927
- ],
- [
- -119.4692775,
- 49.9913717
- ],
- [
- -119.4551337,
- 49.9916078
- ],
- [
- -119.4556736,
- 50.0121242
- ],
- [
- -119.4416673,
- 50.0123895
- ],
- [
- -119.4417308,
- 50.0136345
- ],
- [
- -119.4221492,
- 50.0140377
- ],
- [
- -119.4221042,
- 50.0119306
- ],
- [
- -119.4121303,
- 50.012165
- ],
- [
- -119.4126082,
- 50.0216913
- ],
- [
- -119.4123387,
- 50.0216913
- ],
- [
- -119.4124772,
- 50.0250773
- ],
- [
- -119.4120917,
- 50.0250821
- ],
- [
- -119.4121954,
- 50.0270769
- ],
- [
- -119.4126083,
- 50.0270718
- ],
- [
- -119.4128328,
- 50.0321946
- ],
- [
- -119.3936313,
- 50.0326418
- ],
- [
- -119.393529,
- 50.0307781
- ],
- [
- -119.3795727,
- 50.0310116
- ],
- [
- -119.3795377,
- 50.0287584
- ],
- [
- -119.3735764,
- 50.0288621
- ],
- [
- -119.371544,
- 49.9793618
- ],
- [
- -119.3573506,
- 49.9793618
- ],
- [
- -119.3548353,
- 49.9256081
- ],
- [
- -119.3268079,
- 49.9257238
- ],
- [
- -119.3256573,
- 49.8804068
- ],
- [
- -119.3138893,
- 49.8806528
- ],
- [
- -119.3137097,
- 49.8771651
- ],
- [
- -119.3132156,
- 49.877223
- ],
- [
- -119.3131482,
- 49.8749652
- ],
- [
- -119.312452,
- 49.8749073
- ],
- [
- -119.3122275,
- 49.87236
- ],
- [
- -119.3117558,
- 49.872331
- ],
- [
- -119.3115986,
- 49.8696098
- ],
- [
- -119.3112169,
- 49.8694217
- ],
- [
- -119.3109199,
- 49.8632417
- ],
- [
- -119.3103721,
- 49.8632724
- ],
- [
- -119.3095139,
- 49.8512388
- ],
- [
- -119.3106368,
- 49.8512316
- ],
- [
- -119.3103859,
- 49.8462564
- ],
- [
- -119.3245344,
- 49.8459957
- ],
- [
- -119.3246018,
- 49.8450689
- ],
- [
- -119.3367018,
- 49.844875
- ],
- [
- -119.3367467,
- 49.8435136
- ],
- [
- -119.337937,
- 49.8434702
- ],
- [
- -119.3378023,
- 49.8382055
- ],
- [
- -119.3383637,
- 49.8381041
- ],
- [
- -119.3383749,
- 49.8351202
- ],
- [
- -119.3390936,
- 49.8351058
- ],
- [
- -119.3388016,
- 49.8321217
- ],
- [
- -119.3391497,
- 49.8320565
- ],
- [
- -119.3391722,
- 49.8293331
- ],
- [
- -119.3394641,
- 49.8293331
- ],
- [
- -119.3395879,
- 49.8267878
- ],
- [
- -119.3500053,
- 49.8265829
- ],
- [
- -119.3493701,
- 49.8180588
- ],
- [
- -119.4046964,
- 49.8163785
- ],
- [
- -119.4045694,
- 49.8099022
- ],
- [
- -119.4101592,
- 49.8099022
- ],
- [
- -119.4102862,
- 49.8072787
- ],
- [
- -119.4319467,
- 49.8069098
- ],
- [
- -119.4322643,
- 49.7907965
- ],
- [
- -119.4459847,
- 49.7905504
- ],
- [
- -119.445286,
- 49.7820201
- ],
- [
- -119.4967376,
- 49.7811587
- ],
- [
- -119.4966105,
- 49.7784927
- ],
- [
- -119.5418371,
- 49.7775082
- ],
- [
- -119.5415892,
- 49.7718277
- ],
- [
- -119.5560296,
- 49.7714941
- ],
- [
- -119.5561194,
- 49.7718422
- ],
- [
- -119.5715704,
- 49.7715086
- ],
- [
- -119.5716153,
- 49.7717262
- ],
- [
- -119.5819235,
- 49.7714941
- ],
- [
- -119.5820133,
- 49.7717697
- ],
- [
- -119.5922991,
- 49.7715231
- ],
- [
- -119.592344,
- 49.7718132
- ],
- [
- -119.6003839,
- 49.7715957
- ],
- [
- -119.6011924,
- 49.7839081
- ],
- [
- -119.5864365,
- 49.7843863
- ]
- ]
- ],
- "id": "kelowna_2012",
- "default": true
- },
- {
- "name": "Kelowna Roads overlay",
- "type": "tms",
- "template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/kelowna_overlay/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 9,
- 20
- ],
- "polygon": [
- [
- [
- -119.5867318,
- 49.7928087
- ],
- [
- -119.5465655,
- 49.7928097
- ],
- [
- -119.5465661,
- 49.8013837
- ],
- [
- -119.5343374,
- 49.8013841
- ],
- [
- -119.5343376,
- 49.8047321
- ],
- [
- -119.5296211,
- 49.8047322
- ],
- [
- -119.5296216,
- 49.8119555
- ],
- [
- -119.5104463,
- 49.811956
- ],
- [
- -119.5115683,
- 49.8744325
- ],
- [
- -119.5108946,
- 49.8744904
- ],
- [
- -119.5114111,
- 49.8843312
- ],
- [
- -119.5114115,
- 49.9221763
- ],
- [
- -119.49386,
- 49.9223477
- ],
- [
- -119.4940505,
- 49.9313031
- ],
- [
- -119.4803936,
- 49.9317529
- ],
- [
- -119.4804572,
- 49.9407474
- ],
- [
- -119.4666732,
- 49.9409927
- ],
- [
- -119.4692775,
- 49.9913717
- ],
- [
- -119.4551337,
- 49.9916078
- ],
- [
- -119.4556736,
- 50.0121242
- ],
- [
- -119.4416673,
- 50.0123895
- ],
- [
- -119.4417308,
- 50.0136345
- ],
- [
- -119.4221492,
- 50.0140377
- ],
- [
- -119.4221042,
- 50.0119306
- ],
- [
- -119.4121303,
- 50.012165
- ],
- [
- -119.4126082,
- 50.0216913
- ],
- [
- -119.4123387,
- 50.0216913
- ],
- [
- -119.4124772,
- 50.0250773
- ],
- [
- -119.4120917,
- 50.0250821
- ],
- [
- -119.4121954,
- 50.0270769
- ],
- [
- -119.4126083,
- 50.0270718
- ],
- [
- -119.4128328,
- 50.0321946
- ],
- [
- -119.3936313,
- 50.0326418
- ],
- [
- -119.393529,
- 50.0307781
- ],
- [
- -119.3795727,
- 50.0310116
- ],
- [
- -119.3795377,
- 50.0287584
- ],
- [
- -119.3735764,
- 50.0288621
- ],
- [
- -119.371544,
- 49.9793618
- ],
- [
- -119.3573506,
- 49.9793618
- ],
- [
- -119.3548353,
- 49.9256081
- ],
- [
- -119.3268079,
- 49.9257238
- ],
- [
- -119.3256573,
- 49.8804068
- ],
- [
- -119.3138893,
- 49.8806528
- ],
- [
- -119.3137097,
- 49.8771651
- ],
- [
- -119.3132156,
- 49.877223
- ],
- [
- -119.3131482,
- 49.8749652
- ],
- [
- -119.312452,
- 49.8749073
- ],
- [
- -119.3122275,
- 49.87236
- ],
- [
- -119.3117558,
- 49.872331
- ],
- [
- -119.3115986,
- 49.8696098
- ],
- [
- -119.3112169,
- 49.8694217
- ],
- [
- -119.3109199,
- 49.8632417
- ],
- [
- -119.3103721,
- 49.8632724
- ],
- [
- -119.3095139,
- 49.8512388
- ],
- [
- -119.3106368,
- 49.8512316
- ],
- [
- -119.3103859,
- 49.8462564
- ],
- [
- -119.3245344,
- 49.8459957
- ],
- [
- -119.3246018,
- 49.8450689
- ],
- [
- -119.3367018,
- 49.844875
- ],
- [
- -119.3367467,
- 49.8435136
- ],
- [
- -119.337937,
- 49.8434702
- ],
- [
- -119.3378023,
- 49.8382055
- ],
- [
- -119.3383637,
- 49.8381041
- ],
- [
- -119.3383749,
- 49.8351202
- ],
- [
- -119.3390936,
- 49.8351058
- ],
- [
- -119.3388016,
- 49.8321217
- ],
- [
- -119.3391497,
- 49.8320565
- ],
- [
- -119.3391722,
- 49.8293331
- ],
- [
- -119.3394641,
- 49.8293331
- ],
- [
- -119.3395879,
- 49.8267878
- ],
- [
- -119.3500053,
- 49.8265829
- ],
- [
- -119.3493701,
- 49.8180588
- ],
- [
- -119.4046964,
- 49.8163785
- ],
- [
- -119.4045694,
- 49.8099022
- ],
- [
- -119.4101592,
- 49.8099022
- ],
- [
- -119.4102862,
- 49.8072787
- ],
- [
- -119.4319467,
- 49.8069098
- ],
- [
- -119.4322643,
- 49.7907965
- ],
- [
- -119.4459847,
- 49.7905504
- ],
- [
- -119.445286,
- 49.7820201
- ],
- [
- -119.4967376,
- 49.7811587
- ],
- [
- -119.4966105,
- 49.7784927
- ],
- [
- -119.5418371,
- 49.7775082
- ],
- [
- -119.5415892,
- 49.7718277
- ],
- [
- -119.5560296,
- 49.7714941
- ],
- [
- -119.5561194,
- 49.7718422
- ],
- [
- -119.5715704,
- 49.7715086
- ],
- [
- -119.5716153,
- 49.7717262
- ],
- [
- -119.5819235,
- 49.7714941
- ],
- [
- -119.5820133,
- 49.7717697
- ],
- [
- -119.5922991,
- 49.7715231
- ],
- [
- -119.592344,
- 49.7718132
- ],
- [
- -119.6003839,
- 49.7715957
- ],
- [
- -119.6011924,
- 49.7839081
- ],
- [
- -119.5864365,
- 49.7843863
- ]
- ]
- ],
- "id": "kelowna_roads",
- "overlay": true
- },
- {
- "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": [
- 4,
- 18
- ],
- "polygon": [
- [
- [
- 21.4926054,
- 56.3592046
- ],
- [
- 21.8134688,
- 56.4097144
- ],
- [
- 21.9728753,
- 56.4567587
- ],
- [
- 22.2158294,
- 56.4604404
- ],
- [
- 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",
- "type": "tms",
- "description": "Shows major features to help orient you.",
- "template": "http://{switch:a,b,c}.tiles.mapbox.com/v4/openstreetmap.map-inh76ba2/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJhNVlHd29ZIn0.ti6wATGDWOmCnCYen-Ip7Q",
- "scaleExtent": [
- 0,
- 16
- ],
- "terms_url": "http://www.mapbox.com/about/maps/",
- "terms_text": "Terms & Feedback",
- "default": true,
- "overlay": true
- },
- {
- "name": "MapQuest Open Aerial",
- "type": "tms",
- "template": "http://oatile{switch:1,2,3,4}.mqcdn.com/tiles/1.0.0/sat/{zoom}/{x}/{y}.png",
- "default": true
- },
- {
- "name": "Mapbox Satellite",
- "type": "tms",
- "description": "Satellite and aerial imagery.",
- "template": "http://{switch:a,b,c}.tiles.mapbox.com/v4/openstreetmap.map-inh7ifmo/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJhNVlHd29ZIn0.ti6wATGDWOmCnCYen-Ip7Q",
- "scaleExtent": [
- 0,
- 19
- ],
- "terms_url": "http://www.mapbox.com/about/maps/",
- "terms_text": "Terms & Feedback",
- "id": "Mapbox",
- "default": true
- },
- {
- "name": "NLS - Bartholomew Half Inch, 1897-1907",
- "type": "tms",
- "template": "http://geo.nls.uk/mapdata2/bartholomew/great_britain/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 0,
- 15
- ],
- "polygon": [
- [
- [
- -9,
- 49.8
- ],
- [
- -9,
- 61.1
- ],
- [
- 1.9,
- 61.1
- ],
- [
- 1.9,
- 49.8
- ],
- [
- -9,
- 49.8
- ]
- ]
- ],
- "terms_url": "http://geo.nls.uk/maps/",
- "terms_text": "National Library of Scotland Historic Maps"
- },
- {
- "name": "NLS - OS 1-inch 7th Series 1955-61",
- "type": "tms",
- "template": "http://geo.nls.uk/mapdata2/os/seventh/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 5,
- 16
- ],
- "polygon": [
- [
- [
- -6.4585407,
- 49.9044128
- ],
- [
- -6.3872009,
- 49.9841116
- ],
- [
- -6.2296827,
- 49.9896159
- ],
- [
- -6.2171269,
- 49.8680087
- ],
- [
- -6.4551164,
- 49.8591793
- ]
- ],
- [
- [
- -1.4495137,
- 60.8634056
- ],
- [
- -0.7167114,
- 60.8545122
- ],
- [
- -0.7349744,
- 60.4359756
- ],
- [
- -0.6938826,
- 60.4168218
- ],
- [
- -0.7258429,
- 60.3942735
- ],
- [
- -0.7395401,
- 60.0484714
- ],
- [
- -0.9267357,
- 60.0461918
- ],
- [
- -0.9381501,
- 59.8266157
- ],
- [
- -1.4586452,
- 59.831205
- ],
- [
- -1.4455187,
- 60.0535999
- ],
- [
- -1.463211,
- 60.0535999
- ],
- [
- -1.4643524,
- 60.0630002
- ],
- [
- -1.5716475,
- 60.0638546
- ],
- [
- -1.5693646,
- 60.1790005
- ],
- [
- -1.643558,
- 60.1807033
- ],
- [
- -1.643558,
- 60.1892162
- ],
- [
- -1.8216221,
- 60.1894999
- ],
- [
- -1.8204807,
- 60.3615507
- ],
- [
- -1.8415973,
- 60.3697345
- ],
- [
- -1.8216221,
- 60.3832755
- ],
- [
- -1.8179852,
- 60.5934321
- ],
- [
- -1.453168,
- 60.5934321
- ]
- ],
- [
- [
- -4.9089213,
- 54.4242078
- ],
- [
- -4.282598,
- 54.4429861
- ],
- [
- -4.2535417,
- 54.029769
- ],
- [
- -4.8766366,
- 54.0221831
- ]
- ],
- [
- [
- -5.8667408,
- 59.1444603
- ],
- [
- -5.7759966,
- 59.1470945
- ],
- [
- -5.7720016,
- 59.1014052
- ],
- [
- -5.8621751,
- 59.0990605
- ]
- ],
- [
- [
- -1.7065887,
- 59.5703599
- ],
- [
- -1.5579165,
- 59.5693481
- ],
- [
- -1.5564897,
- 59.4965695
- ],
- [
- -1.7054472,
- 59.4975834
- ]
- ],
- [
- [
- -7.6865827,
- 58.2940975
- ],
- [
- -7.5330594,
- 58.3006957
- ],
- [
- -7.5256401,
- 58.2646905
- ],
- [
- -7.6797341,
- 58.2577853
- ]
- ],
- [
- [
- -4.5338281,
- 59.0359871
- ],
- [
- -4.481322,
- 59.0371616
- ],
- [
- -4.4796099,
- 59.0186583
- ],
- [
- -4.5332574,
- 59.0180707
- ]
- ],
- [
- [
- -8.6710698,
- 57.8769896
- ],
- [
- -8.4673234,
- 57.8897332
- ],
- [
- -8.4467775,
- 57.7907
- ],
- [
- -8.6510947,
- 57.7779213
- ]
- ],
- [
- [
- -5.2395519,
- 50.3530581
- ],
- [
- -5.7920073,
- 50.3384899
- ],
- [
- -5.760047,
- 49.9317027
- ],
- [
- -4.6551363,
- 49.9581461
- ],
- [
- -4.677965,
- 50.2860073
- ],
- [
- -4.244219,
- 50.2801723
- ],
- [
- -4.2487848,
- 50.2042525
- ],
- [
- -3.3812929,
- 50.2042525
- ],
- [
- -3.4223846,
- 50.5188201
- ],
- [
- -3.1164796,
- 50.5246258
- ],
- [
- -3.1210453,
- 50.6579592
- ],
- [
- -2.6736357,
- 50.6619495
- ],
- [
- -2.5953453,
- 50.6394325
- ],
- [
- -2.5905026,
- 50.5728419
- ],
- [
- -2.4791203,
- 50.5733545
- ],
- [
- -2.4758919,
- 50.5066704
- ],
- [
- -2.3967943,
- 50.5056438
- ],
- [
- -2.401637,
- 50.5723293
- ],
- [
- -1.0400296,
- 50.5718167
- ],
- [
- -1.0335726,
- 50.7059289
- ],
- [
- -0.549302,
- 50.7038843
- ],
- [
- -0.5460736,
- 50.7886618
- ],
- [
- -0.0924734,
- 50.7856002
- ],
- [
- -0.0876307,
- 50.7181949
- ],
- [
- 0.4789659,
- 50.7120623
- ],
- [
- 0.487037,
- 50.8182467
- ],
- [
- 0.9761503,
- 50.8049868
- ],
- [
- 0.9922927,
- 51.0126311
- ],
- [
- 1.4491213,
- 51.0004424
- ],
- [
- 1.4781775,
- 51.4090372
- ],
- [
- 1.0229632,
- 51.4271576
- ],
- [
- 1.035877,
- 51.7640881
- ],
- [
- 1.6105448,
- 51.7500992
- ],
- [
- 1.646058,
- 52.1560003
- ],
- [
- 1.7267698,
- 52.1540195
- ],
- [
- 1.749369,
- 52.4481811
- ],
- [
- 1.7870672,
- 52.4811624
- ],
- [
- 1.759102,
- 52.522505
- ],
- [
- 1.7933451,
- 52.9602749
- ],
- [
- 0.3798147,
- 52.9958468
- ],
- [
- 0.3895238,
- 53.2511239
- ],
- [
- 0.3478614,
- 53.2511239
- ],
- [
- 0.3238912,
- 53.282186
- ],
- [
- 0.3461492,
- 53.6538501
- ],
- [
- 0.128487,
- 53.6575466
- ],
- [
- 0.116582,
- 53.6674703
- ],
- [
- 0.1350586,
- 54.0655731
- ],
- [
- -0.0609831,
- 54.065908
- ],
- [
- -0.0414249,
- 54.4709448
- ],
- [
- -0.5662701,
- 54.4771794
- ],
- [
- -0.5592078,
- 54.6565127
- ],
- [
- -1.1665638,
- 54.6623485
- ],
- [
- -1.1637389,
- 54.842611
- ],
- [
- -1.3316194,
- 54.843909
- ],
- [
- -1.3257065,
- 55.2470842
- ],
- [
- -1.529453,
- 55.2487108
- ],
- [
- -1.524178,
- 55.6540122
- ],
- [
- -1.7638798,
- 55.6540122
- ],
- [
- -1.7733693,
- 55.9719116
- ],
- [
- -2.1607858,
- 55.9682981
- ],
- [
- -2.1543289,
- 56.0621387
- ],
- [
- -2.4578051,
- 56.0585337
- ],
- [
- -2.4190635,
- 56.641717
- ],
- [
- -2.0962164,
- 56.641717
- ],
- [
- -2.0833025,
- 57.0021322
- ],
- [
- -1.9283359,
- 57.0126802
- ],
- [
- -1.9180966,
- 57.3590895
- ],
- [
- -1.7502161,
- 57.3625721
- ],
- [
- -1.7695869,
- 57.7608634
- ],
- [
- -3.6937554,
- 57.7574187
- ],
- [
- -3.7066693,
- 57.9806386
- ],
- [
- -3.5969013,
- 57.9772149
- ],
- [
- -3.6033582,
- 58.1207277
- ],
- [
- -3.0222335,
- 58.1309566
- ],
- [
- -3.0286905,
- 58.5410788
- ],
- [
- -2.8478961,
- 58.530968
- ],
- [
- -2.86081,
- 58.8430508
- ],
- [
- -2.679624,
- 58.8414991
- ],
- [
- -2.6841897,
- 58.885175
- ],
- [
- -2.6339665,
- 58.9052239
- ],
- [
- -2.679624,
- 58.9335083
- ],
- [
- -2.6887555,
- 59.0229231
- ],
- [
- -2.3668703,
- 59.0229231
- ],
- [
- -2.3702946,
- 59.2652861
- ],
- [
- -2.3429001,
- 59.2821989
- ],
- [
- -2.3714361,
- 59.2996861
- ],
- [
- -2.3737189,
- 59.3707083
- ],
- [
- -2.3429001,
- 59.385825
- ],
- [
- -2.3725775,
- 59.400354
- ],
- [
- -2.3714361,
- 59.4259098
- ],
- [
- -3.0734196,
- 59.4230067
- ],
- [
- -3.0711368,
- 59.3433649
- ],
- [
- -3.103097,
- 59.3311405
- ],
- [
- -3.0745611,
- 59.3136695
- ],
- [
- -3.0722782,
- 59.232603
- ],
- [
- -3.3850319,
- 59.1484167
- ],
- [
- -3.3747589,
- 58.9352753
- ],
- [
- -3.5653789,
- 58.9323303
- ],
- [
- -3.554829,
- 58.69759
- ],
- [
- -5.2808579,
- 58.6667732
- ],
- [
- -5.2534159,
- 58.3514125
- ],
- [
- -5.5068508,
- 58.3437887
- ],
- [
- -5.4761804,
- 58.0323557
- ],
- [
- -5.8974958,
- 58.0212436
- ],
- [
- -5.8522972,
- 57.6171758
- ],
- [
- -6.1396311,
- 57.6137174
- ],
- [
- -6.1541592,
- 57.7423183
- ],
- [
- -6.2913692,
- 57.7380102
- ],
- [
- -6.3365678,
- 58.1398784
- ],
- [
- -6.1121891,
- 58.1466944
- ],
- [
- -6.1473778,
- 58.5106285
- ],
- [
- -6.2934817,
- 58.5416182
- ],
- [
- -6.8413713,
- 58.2977321
- ],
- [
- -7.0057382,
- 58.2929331
- ],
- [
- -7.1016189,
- 58.2064403
- ],
- [
- -7.2573132,
- 58.1793148
- ],
- [
- -7.2531092,
- 58.1004928
- ],
- [
- -7.4070698,
- 58.0905566
- ],
- [
- -7.391347,
- 57.7911354
- ],
- [
- -7.790991,
- 57.7733151
- ],
- [
- -7.7624215,
- 57.5444165
- ],
- [
- -7.698501,
- 57.1453194
- ],
- [
- -7.7943817,
- 57.1304547
- ],
- [
- -7.716764,
- 56.7368628
- ],
- [
- -7.0122067,
- 56.7654359
- ],
- [
- -6.979922,
- 56.5453858
- ],
- [
- -7.0638622,
- 56.5453858
- ],
- [
- -7.0444914,
- 56.3562587
- ],
- [
- -6.500676,
- 56.3812917
- ],
- [
- -6.4491433,
- 55.9793649
- ],
- [
- -6.563287,
- 55.9691456
- ],
- [
- -6.5393742,
- 55.7030135
- ],
- [
- -6.5595521,
- 55.6907321
- ],
- [
- -6.5345315,
- 55.6761713
- ],
- [
- -6.5216176,
- 55.5704434
- ],
- [
- -5.8912587,
- 55.5923416
- ],
- [
- -5.8560127,
- 55.2320733
- ],
- [
- -5.2293639,
- 55.2515958
- ],
- [
- -5.1837064,
- 54.6254139
- ],
- [
- -3.6655956,
- 54.6518373
- ],
- [
- -3.6496155,
- 54.4320023
- ],
- [
- -3.5400375,
- 54.4306744
- ],
- [
- -3.530906,
- 54.0290181
- ],
- [
- -3.0697656,
- 54.030359
- ],
- [
- -3.0675737,
- 53.8221388
- ],
- [
- -3.0804876,
- 53.7739911
- ],
- [
- -3.0619239,
- 53.7477488
- ],
- [
- -3.0611168,
- 53.6737049
- ],
- [
- -3.2144691,
- 53.6708361
- ],
- [
- -3.2057699,
- 53.4226163
- ],
- [
- -3.2799632,
- 53.355224
- ],
- [
- -3.2896655,
- 53.3608441
- ],
- [
- -3.3327547,
- 53.364931
- ],
- [
- -3.3761293,
- 53.3540318
- ],
- [
- -4.0888976,
- 53.3433102
- ],
- [
- -4.0945474,
- 53.4612036
- ],
- [
- -4.697412,
- 53.4448624
- ],
- [
- -4.6882805,
- 53.3318598
- ],
- [
- -4.7202407,
- 53.2895771
- ],
- [
- -4.6837148,
- 53.2486184
- ],
- [
- -4.6768661,
- 53.1542644
- ],
- [
- -4.8480816,
- 53.1446807
- ],
- [
- -4.8178336,
- 52.7440299
- ],
- [
- -4.2545751,
- 52.7558939
- ],
- [
- -4.228876,
- 52.254876
- ],
- [
- -4.2607571,
- 52.2536408
- ],
- [
- -4.2724603,
- 52.2432637
- ],
- [
- -4.8136263,
- 52.230095
- ],
- [
- -4.8079191,
- 52.1138892
- ],
- [
- -5.3889104,
- 52.0991668
- ],
- [
- -5.3717888,
- 51.9129667
- ],
- [
- -5.4208706,
- 51.9101502
- ],
- [
- -5.414022,
- 51.8453218
- ],
- [
- -5.3683645,
- 51.8474373
- ],
- [
- -5.3466772,
- 51.5595332
- ],
- [
- -4.773676,
- 51.5758518
- ],
- [
- -4.7656859,
- 51.4885146
- ],
- [
- -4.1915432,
- 51.4970427
- ],
- [
- -4.1869775,
- 51.4344663
- ],
- [
- -3.6151177,
- 51.4444274
- ],
- [
- -3.6105519,
- 51.3746543
- ],
- [
- -3.1494115,
- 51.3789292
- ],
- [
- -3.1494115,
- 51.2919281
- ],
- [
- -4.3038735,
- 51.2745907
- ],
- [
- -4.2861169,
- 51.0508721
- ],
- [
- -4.8543277,
- 51.0366633
- ],
- [
- -4.8372201,
- 50.7212787
- ],
- [
- -5.2618345,
- 50.7082694
- ]
- ],
- [
- [
- -2.1502671,
- 60.171318
- ],
- [
- -2.0030218,
- 60.1696146
- ],
- [
- -2.0013096,
- 60.0997023
- ],
- [
- -2.148555,
- 60.1011247
- ]
- ],
- [
- [
- -6.2086011,
- 59.1163488
- ],
- [
- -6.1229934,
- 59.1166418
- ],
- [
- -6.121852,
- 59.0714985
- ],
- [
- -6.2097426,
- 59.0714985
- ]
- ],
- [
- [
- -4.4159559,
- 59.0889036
- ],
- [
- -4.4212022,
- 59.0770848
- ],
- [
- -4.3971904,
- 59.0779143
- ],
- [
- -4.3913388,
- 59.0897328
- ]
- ]
- ],
- "terms_url": "http://geo.nls.uk/maps/",
- "terms_text": "National Library of Scotland Historic Maps"
- },
- {
- "name": "NLS - OS 1:25k 1st Series 1937-61",
- "type": "tms",
- "template": "http://geo.nls.uk/mapdata2/os/25000/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 5,
- 16
- ],
- "polygon": [
- [
- [
- -4.7157244,
- 54.6796556
- ],
- [
- -4.6850662,
- 54.6800268
- ],
- [
- -4.6835779,
- 54.6623245
- ],
- [
- -4.7148782,
- 54.6615818
- ]
- ],
- [
- [
- -3.7085748,
- 58.3371151
- ],
- [
- -3.5405937,
- 58.3380684
- ],
- [
- -3.5315137,
- 58.1608002
- ],
- [
- -3.3608086,
- 58.1622372
- ],
- [
- -3.3653486,
- 58.252173
- ],
- [
- -3.1610473,
- 58.2536063
- ],
- [
- -3.1610473,
- 58.3261509
- ],
- [
- -3.0275704,
- 58.3271045
- ],
- [
- -3.0366505,
- 58.6139001
- ],
- [
- -3.0021463,
- 58.614373
- ],
- [
- -3.0030543,
- 58.7036341
- ],
- [
- -3.4180129,
- 58.7003322
- ],
- [
- -3.4171049,
- 58.6290293
- ],
- [
- -3.7240109,
- 58.6266658
- ],
- [
- -3.7231029,
- 58.606806
- ],
- [
- -4.2361262,
- 58.5992374
- ],
- [
- -4.2334022,
- 58.5092347
- ],
- [
- -3.88836,
- 58.5144516
- ],
- [
- -3.8829119,
- 58.4261327
- ],
- [
- -3.7158389,
- 58.4270836
- ]
- ],
- [
- [
- -6.46676,
- 49.9943621
- ],
- [
- -6.1889102,
- 50.004868
- ],
- [
- -6.1789222,
- 49.8967815
- ],
- [
- -6.3169391,
- 49.8915171
- ],
- [
- -6.312399,
- 49.8200979
- ],
- [
- -6.4504159,
- 49.8159968
- ]
- ],
- [
- [
- -5.6453263,
- 50.2029809
- ],
- [
- -5.7801329,
- 50.2014076
- ],
- [
- -5.7637888,
- 50.0197267
- ],
- [
- -5.3479221,
- 50.0290604
- ],
- [
- -5.3388421,
- 49.9414854
- ],
- [
- -5.024672,
- 49.9473287
- ],
- [
- -5.0355681,
- 50.0383923
- ],
- [
- -5.0010639,
- 50.0453901
- ],
- [
- -4.9974319,
- 50.1304478
- ],
- [
- -4.855783,
- 50.13394
- ],
- [
- -4.861231,
- 50.206057
- ],
- [
- -4.6546085,
- 50.2140172
- ],
- [
- -4.6558926,
- 50.3018616
- ],
- [
- -4.5184924,
- 50.3026818
- ],
- [
- -4.51464,
- 50.325642
- ],
- [
- -4.2488284,
- 50.3264618
- ],
- [
- -4.2488284,
- 50.3100631
- ],
- [
- -4.10886,
- 50.3141633
- ],
- [
- -4.1062917,
- 50.2411267
- ],
- [
- -3.9648088,
- 50.2432047
- ],
- [
- -3.9640778,
- 50.2254158
- ],
- [
- -3.8522287,
- 50.2273626
- ],
- [
- -3.8503757,
- 50.1552563
- ],
- [
- -3.6921809,
- 50.1572487
- ],
- [
- -3.5414602,
- 50.1602198
- ],
- [
- -3.5465781,
- 50.3226814
- ],
- [
- -3.4068012,
- 50.3241013
- ],
- [
- -3.4165761,
- 50.5892711
- ],
- [
- -3.2746691,
- 50.5962721
- ],
- [
- -3.2749172,
- 50.6106323
- ],
- [
- -2.9971742,
- 50.613972
- ],
- [
- -2.9896008,
- 50.688537
- ],
- [
- -2.7120266,
- 50.690565
- ],
- [
- -2.710908,
- 50.6195964
- ],
- [
- -2.5695473,
- 50.6157538
- ],
- [
- -2.5651019,
- 50.5134083
- ],
- [
- -2.4014463,
- 50.513379
- ],
- [
- -2.3940583,
- 50.6160348
- ],
- [
- -2.2894123,
- 50.6147436
- ],
- [
- -2.2876184,
- 50.6008549
- ],
- [
- -2.1477855,
- 50.6048506
- ],
- [
- -2.1451013,
- 50.5325437
- ],
- [
- -1.9335117,
- 50.5347477
- ],
- [
- -1.9362139,
- 50.6170445
- ],
- [
- -1.8573025,
- 50.6228094
- ],
- [
- -1.8554865,
- 50.709139
- ],
- [
- -1.6066929,
- 50.709139
- ],
- [
- -1.6085089,
- 50.6239615
- ],
- [
- -1.4450678,
- 50.6228094
- ],
- [
- -1.4432518,
- 50.5317039
- ],
- [
- -1.1545059,
- 50.5293951
- ],
- [
- -1.1472419,
- 50.6170485
- ],
- [
- -1.011041,
- 50.6205051
- ],
- [
- -1.011041,
- 50.7056889
- ],
- [
- -0.704135,
- 50.7045388
- ],
- [
- -0.700503,
- 50.7769401
- ],
- [
- -0.5860943,
- 50.7723465
- ],
- [
- -0.5879103,
- 50.7907181
- ],
- [
- -0.0149586,
- 50.7798108
- ],
- [
- -0.0185906,
- 50.7625836
- ],
- [
- 0.0967261,
- 50.7620093
- ],
- [
- 0.0921861,
- 50.6913106
- ],
- [
- 0.3046595,
- 50.6890096
- ],
- [
- 0.3101075,
- 50.7757917
- ],
- [
- 0.5511831,
- 50.7726336
- ],
- [
- 0.5529991,
- 50.8432096
- ],
- [
- 0.695556,
- 50.8403428
- ],
- [
- 0.696464,
- 50.8592608
- ],
- [
- 0.9852099,
- 50.8523824
- ],
- [
- 0.9906579,
- 50.9417226
- ],
- [
- 1.0160821,
- 50.9411504
- ],
- [
- 1.0215301,
- 51.0303204
- ],
- [
- 1.2812198,
- 51.0240383
- ],
- [
- 1.2848518,
- 51.0948044
- ],
- [
- 1.4277848,
- 51.0948044
- ],
- [
- 1.4386809,
- 51.2882859
- ],
- [
- 1.4713691,
- 51.2871502
- ],
- [
- 1.4804492,
- 51.3994534
- ],
- [
- 1.1590151,
- 51.4073836
- ],
- [
- 1.1590151,
- 51.3869889
- ],
- [
- 1.0191822,
- 51.3903886
- ],
- [
- 1.0228142,
- 51.4798247
- ],
- [
- 0.8793493,
- 51.4843484
- ],
- [
- 0.8829813,
- 51.5566675
- ],
- [
- 1.0264462,
- 51.5544092
- ],
- [
- 1.0373423,
- 51.7493319
- ],
- [
- 1.2607117,
- 51.7482076
- ],
- [
- 1.2661598,
- 51.8279642
- ],
- [
- 1.3351682,
- 51.8335756
- ],
- [
- 1.3478803,
- 51.9199021
- ],
- [
- 1.4840812,
- 51.9199021
- ],
- [
- 1.4986093,
- 52.0038271
- ],
- [
- 1.6438902,
- 52.0027092
- ],
- [
- 1.6656823,
- 52.270221
- ],
- [
- 1.7310588,
- 52.270221
- ],
- [
- 1.7528509,
- 52.4465637
- ],
- [
- 1.8254914,
- 52.4476705
- ],
- [
- 1.8345714,
- 52.624408
- ],
- [
- 1.7690346,
- 52.6291402
- ],
- [
- 1.7741711,
- 52.717904
- ],
- [
- 1.6996925,
- 52.721793
- ],
- [
- 1.706113,
- 52.8103687
- ],
- [
- 1.559724,
- 52.8165777
- ],
- [
- 1.5648605,
- 52.9034116
- ],
- [
- 1.4184715,
- 52.9103818
- ],
- [
- 1.4223238,
- 52.9281894
- ],
- [
- 1.3439928,
- 52.9289635
- ],
- [
- 1.3491293,
- 53.0001194
- ],
- [
- 0.4515789,
- 53.022589
- ],
- [
- 0.4497629,
- 52.9351139
- ],
- [
- 0.3789384,
- 52.9351139
- ],
- [
- 0.3716744,
- 52.846365
- ],
- [
- 0.2227614,
- 52.8496552
- ],
- [
- 0.2336575,
- 52.9329248
- ],
- [
- 0.3062979,
- 52.9351139
- ],
- [
- 0.308114,
- 53.022589
- ],
- [
- 0.3807544,
- 53.0236813
- ],
- [
- 0.3993708,
- 53.2933729
- ],
- [
- 0.3248922,
- 53.2987454
- ],
- [
- 0.3274604,
- 53.3853782
- ],
- [
- 0.2504136,
- 53.38691
- ],
- [
- 0.2581183,
- 53.4748924
- ],
- [
- 0.1862079,
- 53.4779494
- ],
- [
- 0.1913443,
- 53.6548777
- ],
- [
- 0.1502527,
- 53.6594436
- ],
- [
- 0.1528209,
- 53.7666003
- ],
- [
- 0.0012954,
- 53.7734308
- ],
- [
- 0.0025796,
- 53.8424326
- ],
- [
- -0.0282392,
- 53.841675
- ],
- [
- -0.0226575,
- 53.9311501
- ],
- [
- -0.1406983,
- 53.9322193
- ],
- [
- -0.1416063,
- 54.0219323
- ],
- [
- -0.1706625,
- 54.0235326
- ],
- [
- -0.1679384,
- 54.0949482
- ],
- [
- -0.0126694,
- 54.0912206
- ],
- [
- -0.0099454,
- 54.1811226
- ],
- [
- -0.1615824,
- 54.1837795
- ],
- [
- -0.1606744,
- 54.2029038
- ],
- [
- -0.2405789,
- 54.2034349
- ],
- [
- -0.2378549,
- 54.2936234
- ],
- [
- -0.3894919,
- 54.2941533
- ],
- [
- -0.3857497,
- 54.3837321
- ],
- [
- -0.461638,
- 54.3856364
- ],
- [
- -0.4571122,
- 54.4939066
- ],
- [
- -0.6105651,
- 54.4965434
- ],
- [
- -0.6096571,
- 54.5676704
- ],
- [
- -0.7667421,
- 54.569776
- ],
- [
- -0.7640181,
- 54.5887213
- ],
- [
- -0.9192871,
- 54.5908258
- ],
- [
- -0.9148116,
- 54.6608348
- ],
- [
- -1.1485204,
- 54.6634343
- ],
- [
- -1.1472363,
- 54.7528316
- ],
- [
- -1.2268514,
- 54.7532021
- ],
- [
- -1.2265398,
- 54.8429879
- ],
- [
- -1.2991803,
- 54.8435107
- ],
- [
- -1.2991803,
- 54.9333391
- ],
- [
- -1.3454886,
- 54.9354258
- ],
- [
- -1.3436726,
- 55.0234878
- ],
- [
- -1.3772688,
- 55.0255698
- ],
- [
- -1.3754528,
- 55.1310877
- ],
- [
- -1.4997441,
- 55.1315727
- ],
- [
- -1.4969272,
- 55.2928323
- ],
- [
- -1.5296721,
- 55.2942946
- ],
- [
- -1.5258198,
- 55.6523803
- ],
- [
- -1.7659492,
- 55.6545537
- ],
- [
- -1.7620968,
- 55.7435626
- ],
- [
- -1.9688392,
- 55.7435626
- ],
- [
- -1.9698023,
- 55.8334505
- ],
- [
- -2.0019051,
- 55.8336308
- ],
- [
- -2.0015841,
- 55.9235526
- ],
- [
- -2.1604851,
- 55.9240613
- ],
- [
- -2.1613931,
- 55.9413549
- ],
- [
- -2.3202942,
- 55.9408463
- ],
- [
- -2.3212022,
- 56.0145126
- ],
- [
- -2.5627317,
- 56.0124824
- ],
- [
- -2.5645477,
- 56.1022207
- ],
- [
- -2.9658863,
- 56.0991822
- ],
- [
- -2.9667943,
- 56.1710304
- ],
- [
- -2.4828272,
- 56.1755797
- ],
- [
- -2.4882752,
- 56.2856078
- ],
- [
- -2.5645477,
- 56.2835918
- ],
- [
- -2.5681798,
- 56.3742075
- ],
- [
- -2.7261728,
- 56.3732019
- ],
- [
- -2.7316208,
- 56.4425301
- ],
- [
- -2.6190281,
- 56.4425301
- ],
- [
- -2.6153961,
- 56.5317671
- ],
- [
- -2.453771,
- 56.5347715
- ],
- [
- -2.4534686,
- 56.6420248
- ],
- [
- -2.4062523,
- 56.6440218
- ],
- [
- -2.3953562,
- 56.7297964
- ],
- [
- -2.2936596,
- 56.7337811
- ],
- [
- -2.2972916,
- 56.807423
- ],
- [
- -2.1629067,
- 56.8113995
- ],
- [
- -2.1592747,
- 56.9958425
- ],
- [
- -1.9922016,
- 57.0017771
- ],
- [
- -2.0067297,
- 57.2737477
- ],
- [
- -1.9195612,
- 57.2757112
- ],
- [
- -1.9304572,
- 57.3482876
- ],
- [
- -1.8106005,
- 57.3443682
- ],
- [
- -1.7997044,
- 57.4402728
- ],
- [
- -1.6616875,
- 57.4285429
- ],
- [
- -1.6689516,
- 57.5398256
- ],
- [
- -1.7452241,
- 57.5398256
- ],
- [
- -1.7524881,
- 57.6313302
- ],
- [
- -1.8287606,
- 57.6332746
- ],
- [
- -1.8287606,
- 57.7187255
- ],
- [
- -3.1768526,
- 57.7171219
- ],
- [
- -3.1794208,
- 57.734264
- ],
- [
- -3.5134082,
- 57.7292105
- ],
- [
- -3.5129542,
- 57.7112683
- ],
- [
- -3.7635638,
- 57.7076303
- ],
- [
- -3.7598539,
- 57.635713
- ],
- [
- -3.8420372,
- 57.6343382
- ],
- [
- -3.8458895,
- 57.6178365
- ],
- [
- -3.9794374,
- 57.6157733
- ],
- [
- -3.9794374,
- 57.686544
- ],
- [
- -3.8150708,
- 57.689976
- ],
- [
- -3.817639,
- 57.7968899
- ],
- [
- -3.6853753,
- 57.7989429
- ],
- [
- -3.6892276,
- 57.8891567
- ],
- [
- -3.9383458,
- 57.8877915
- ],
- [
- -3.9421981,
- 57.9750592
- ],
- [
- -3.6943641,
- 57.9784638
- ],
- [
- -3.6969323,
- 58.0695865
- ],
- [
- -4.0372226,
- 58.0641528
- ],
- [
- -4.0346543,
- 57.9730163
- ],
- [
- -4.2003051,
- 57.9702923
- ],
- [
- -4.1832772,
- 57.7012869
- ],
- [
- -4.518752,
- 57.6951111
- ],
- [
- -4.5122925,
- 57.6050682
- ],
- [
- -4.6789116,
- 57.6016628
- ],
- [
- -4.666022,
- 57.4218334
- ],
- [
- -3.6677696,
- 57.4394729
- ],
- [
- -3.671282,
- 57.5295384
- ],
- [
- -3.3384979,
- 57.5331943
- ],
- [
- -3.3330498,
- 57.4438859
- ],
- [
- -2.8336466,
- 57.4485275
- ],
- [
- -2.8236396,
- 56.9992706
- ],
- [
- -2.3305398,
- 57.0006693
- ],
- [
- -2.3298977,
- 56.9113932
- ],
- [
- -2.6579889,
- 56.9092901
- ],
- [
- -2.6559637,
- 56.8198406
- ],
- [
- -2.8216747,
- 56.8188467
- ],
- [
- -2.8184967,
- 56.7295397
- ],
- [
- -3.1449248,
- 56.7265508
- ],
- [
- -3.1435628,
- 56.6362749
- ],
- [
- -3.4679089,
- 56.6350265
- ],
- [
- -3.474265,
- 56.7238108
- ],
- [
- -3.8011471,
- 56.7188284
- ],
- [
- -3.785711,
- 56.4493026
- ],
- [
- -3.946428,
- 56.4457896
- ],
- [
- -3.9428873,
- 56.2659777
- ],
- [
- -4.423146,
- 56.2588459
- ],
- [
- -4.4141572,
- 56.0815506
- ],
- [
- -4.8944159,
- 56.0708008
- ],
- [
- -4.8791072,
- 55.8896994
- ],
- [
- -5.1994158,
- 55.8821374
- ],
- [
- -5.1852906,
- 55.7023791
- ],
- [
- -5.0273445,
- 55.7067203
- ],
- [
- -5.0222081,
- 55.6879046
- ],
- [
- -4.897649,
- 55.6907999
- ],
- [
- -4.8880181,
- 55.6002822
- ],
- [
- -4.7339244,
- 55.6046348
- ],
- [
- -4.7275038,
- 55.5342082
- ],
- [
- -4.773732,
- 55.5334815
- ],
- [
- -4.7685955,
- 55.4447227
- ],
- [
- -4.8494947,
- 55.4418092
- ],
- [
- -4.8405059,
- 55.3506535
- ],
- [
- -4.8700405,
- 55.3513836
- ],
- [
- -4.8649041,
- 55.2629462
- ],
- [
- -4.9920314,
- 55.2592875
- ],
- [
- -4.9907473,
- 55.1691779
- ],
- [
- -5.0600894,
- 55.1655105
- ],
- [
- -5.0575212,
- 55.0751884
- ],
- [
- -5.2141831,
- 55.0722477
- ],
- [
- -5.1991766,
- 54.8020337
- ],
- [
- -5.0466316,
- 54.8062205
- ],
- [
- -5.0502636,
- 54.7244996
- ],
- [
- -4.9703591,
- 54.7203043
- ],
- [
- -4.9776232,
- 54.6215905
- ],
- [
- -4.796022,
- 54.6342056
- ],
- [
- -4.796022,
- 54.7307917
- ],
- [
- -4.8977186,
- 54.7265971
- ],
- [
- -4.9086147,
- 54.8145928
- ],
- [
- -4.8069181,
- 54.8166856
- ],
- [
- -4.8105501,
- 54.7915648
- ],
- [
- -4.6943253,
- 54.7978465
- ],
- [
- -4.6761652,
- 54.7244996
- ],
- [
- -4.5744686,
- 54.7244996
- ],
- [
- -4.5599405,
- 54.6426135
- ],
- [
- -4.3093309,
- 54.6384098
- ],
- [
- -4.3333262,
- 54.8229889
- ],
- [
- -4.2626999,
- 54.8274274
- ],
- [
- -4.2549952,
- 54.7348587
- ],
- [
- -3.8338058,
- 54.7400481
- ],
- [
- -3.836374,
- 54.8141105
- ],
- [
- -3.7118149,
- 54.8133706
- ],
- [
- -3.7143831,
- 54.8318654
- ],
- [
- -3.5346072,
- 54.8355633
- ],
- [
- -3.5271039,
- 54.9066228
- ],
- [
- -3.4808758,
- 54.9084684
- ],
- [
- -3.4776655,
- 54.7457328
- ],
- [
- -3.5874573,
- 54.744621
- ],
- [
- -3.5836049,
- 54.6546166
- ],
- [
- -3.7107322,
- 54.6531308
- ],
- [
- -3.6991752,
- 54.4550407
- ],
- [
- -3.5746161,
- 54.4572801
- ],
- [
- -3.5759002,
- 54.3863042
- ],
- [
- -3.539945,
- 54.3855564
- ],
- [
- -3.5386609,
- 54.297224
- ],
- [
- -3.46033,
- 54.2957252
- ],
- [
- -3.4590458,
- 54.2079507
- ],
- [
- -3.3807149,
- 54.2102037
- ],
- [
- -3.381999,
- 54.1169788
- ],
- [
- -3.302878,
- 54.1160656
- ],
- [
- -3.300154,
- 54.0276224
- ],
- [
- -3.1013007,
- 54.0292224
- ],
- [
- -3.093596,
- 53.6062158
- ],
- [
- -3.2065981,
- 53.6016441
- ],
- [
- -3.2091663,
- 53.4917753
- ],
- [
- -3.2451215,
- 53.4887193
- ],
- [
- -3.2348486,
- 53.4045934
- ],
- [
- -3.5276266,
- 53.3999999
- ],
- [
- -3.5343966,
- 53.328481
- ],
- [
- -3.6488053,
- 53.3252272
- ],
- [
- -3.6527308,
- 53.3057716
- ],
- [
- -3.7271873,
- 53.3046865
- ],
- [
- -3.7315003,
- 53.3945257
- ],
- [
- -3.9108315,
- 53.3912769
- ],
- [
- -3.9071995,
- 53.3023804
- ],
- [
- -3.9521457,
- 53.3015665
- ],
- [
- -3.9566724,
- 53.3912183
- ],
- [
- -4.1081979,
- 53.3889209
- ],
- [
- -4.1081979,
- 53.4072967
- ],
- [
- -4.2622916,
- 53.4065312
- ],
- [
- -4.2635757,
- 53.4753707
- ],
- [
- -4.638537,
- 53.4677274
- ],
- [
- -4.6346847,
- 53.3812621
- ],
- [
- -4.7091633,
- 53.3774321
- ],
- [
- -4.7001745,
- 53.1954965
- ],
- [
- -4.5499332,
- 53.1962658
- ],
- [
- -4.5435126,
- 53.1092488
- ],
- [
- -4.3919871,
- 53.1100196
- ],
- [
- -4.3855666,
- 53.0236002
- ],
- [
- -4.6115707,
- 53.0205105
- ],
- [
- -4.603866,
- 52.9284932
- ],
- [
- -4.7566756,
- 52.9261709
- ],
- [
- -4.7476868,
- 52.8370555
- ],
- [
- -4.8208813,
- 52.8331768
- ],
- [
- -4.8208813,
- 52.7446476
- ],
- [
- -4.3701572,
- 52.7539749
- ],
- [
- -4.3765778,
- 52.8401583
- ],
- [
- -4.2314728,
- 52.8455875
- ],
- [
- -4.2237682,
- 52.7586379
- ],
- [
- -4.1056297,
- 52.7570836
- ],
- [
- -4.1015192,
- 52.6714874
- ],
- [
- -4.1487355,
- 52.6703862
- ],
- [
- -4.1305754,
- 52.4008596
- ],
- [
- -4.1995838,
- 52.3986435
- ],
- [
- -4.2050319,
- 52.3110195
- ],
- [
- -4.3466808,
- 52.303247
- ],
- [
- -4.3484968,
- 52.2365693
- ],
- [
- -4.4901457,
- 52.2332328
- ],
- [
- -4.4883297,
- 52.2098702
- ],
- [
- -4.6572188,
- 52.2098702
- ],
- [
- -4.6590348,
- 52.1385939
- ],
- [
- -4.7788916,
- 52.13525
- ],
- [
- -4.7807076,
- 52.1162967
- ],
- [
- -4.9259885,
- 52.1140663
- ],
- [
- -4.9187245,
- 52.0392855
- ],
- [
- -5.2365265,
- 52.0314653
- ],
- [
- -5.2347105,
- 51.9442339
- ],
- [
- -5.3473032,
- 51.9408755
- ],
- [
- -5.3473032,
- 51.9195995
- ],
- [
- -5.4925842,
- 51.9162392
- ],
- [
- -5.4853201,
- 51.8265386
- ],
- [
- -5.1983903,
- 51.8321501
- ],
- [
- -5.1893102,
- 51.7625177
- ],
- [
- -5.335825,
- 51.7589528
- ],
- [
- -5.3281204,
- 51.6686495
- ],
- [
- -5.1836575,
- 51.6730296
- ],
- [
- -5.1836575,
- 51.6539134
- ],
- [
- -5.0674452,
- 51.6578966
- ],
- [
- -5.0603825,
- 51.5677905
- ],
- [
- -4.5974594,
- 51.5809588
- ],
- [
- -4.60388,
- 51.6726314
- ],
- [
- -4.345773,
- 51.6726314
- ],
- [
- -4.3355001,
- 51.4962964
- ],
- [
- -3.9528341,
- 51.5106841
- ],
- [
- -3.9425611,
- 51.5905333
- ],
- [
- -3.8809237,
- 51.5953198
- ],
- [
- -3.8706508,
- 51.5074872
- ],
- [
- -3.7679216,
- 51.4978952
- ],
- [
- -3.7550805,
- 51.4242895
- ],
- [
- -3.5855774,
- 51.41468
- ],
- [
- -3.5778727,
- 51.3329177
- ],
- [
- -3.0796364,
- 51.3329177
- ],
- [
- -3.0770682,
- 51.2494018
- ],
- [
- -3.7216935,
- 51.2381477
- ],
- [
- -3.7216935,
- 51.2558315
- ],
- [
- -3.8706508,
- 51.2558315
- ],
- [
- -3.8680825,
- 51.2365398
- ],
- [
- -4.2944084,
- 51.2252825
- ],
- [
- -4.289272,
- 51.0496352
- ],
- [
- -4.5692089,
- 51.0431767
- ],
- [
- -4.5624122,
- 50.9497388
- ],
- [
- -4.5905604,
- 50.9520269
- ],
- [
- -4.5896524,
- 50.8627065
- ],
- [
- -4.6296046,
- 50.8592677
- ],
- [
- -4.6226411,
- 50.7691513
- ],
- [
- -4.6952816,
- 50.7680028
- ],
- [
- -4.6934655,
- 50.6967379
- ],
- [
- -4.8342064,
- 50.6938621
- ],
- [
- -4.8296664,
- 50.6046231
- ],
- [
- -4.9676833,
- 50.6000126
- ],
- [
- -4.9685913,
- 50.5821427
- ],
- [
- -5.1084242,
- 50.5786832
- ],
- [
- -5.1029762,
- 50.4892254
- ],
- [
- -5.1311244,
- 50.48807
- ],
- [
- -5.1274923,
- 50.4163798
- ],
- [
- -5.2664172,
- 50.4117509
- ],
- [
- -5.2609692,
- 50.3034214
- ],
- [
- -5.5124868,
- 50.2976214
- ],
- [
- -5.5061308,
- 50.2256428
- ],
- [
- -5.6468717,
- 50.2209953
- ]
- ],
- [
- [
- -5.1336607,
- 55.2630226
- ],
- [
- -5.1021999,
- 55.2639372
- ],
- [
- -5.0999527,
- 55.2458239
- ],
- [
- -5.1322161,
- 55.2446343
- ]
- ],
- [
- [
- -5.6431878,
- 55.5095745
- ],
- [
- -5.4861028,
- 55.5126594
- ],
- [
- -5.4715747,
- 55.3348829
- ],
- [
- -5.6277517,
- 55.3302345
- ]
- ],
- [
- [
- -4.7213517,
- 51.2180246
- ],
- [
- -4.5804201,
- 51.2212417
- ],
- [
- -4.5746416,
- 51.1306736
- ],
- [
- -4.7174993,
- 51.1280545
- ]
- ],
- [
- [
- -5.1608796,
- 55.4153626
- ],
- [
- -5.0045387,
- 55.4190069
- ],
- [
- -5.0184798,
- 55.6153521
- ],
- [
- -5.1755648,
- 55.6138137
- ]
- ]
- ],
- "terms_url": "http://geo.nls.uk/maps/",
- "terms_text": "National Library of Scotland Historic Maps"
- },
- {
- "name": "NLS - OS 6-inch Scotland 1842-82",
- "type": "tms",
- "template": "http://geo.nls.uk/maps/os/six_inch/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 5,
- 16
- ],
- "polygon": [
- [
- [
- -5.2112173,
- 54.8018593
- ],
- [
- -5.0642752,
- 54.8026508
- ],
- [
- -5.0560354,
- 54.6305176
- ],
- [
- -4.3158316,
- 54.6297227
- ],
- [
- -4.3117117,
- 54.7448258
- ],
- [
- -3.8530325,
- 54.7464112
- ],
- [
- -3.8530325,
- 54.8034424
- ],
- [
- -3.5522818,
- 54.8034424
- ],
- [
- -3.5522818,
- 54.8374644
- ],
- [
- -3.468511,
- 54.8406277
- ],
- [
- -3.4657644,
- 54.8983158
- ],
- [
- -3.3847403,
- 54.8991055
- ],
- [
- -3.3888601,
- 54.9559214
- ],
- [
- -3.0920786,
- 54.9539468
- ],
- [
- -3.0392359,
- 54.9923274
- ],
- [
- -3.0212713,
- 55.0493881
- ],
- [
- -2.9591232,
- 55.0463283
- ],
- [
- -2.9202807,
- 55.0666294
- ],
- [
- -2.7857081,
- 55.068652
- ],
- [
- -2.7852225,
- 55.0914426
- ],
- [
- -2.7337562,
- 55.0922761
- ],
- [
- -2.737616,
- 55.151204
- ],
- [
- -2.7648395,
- 55.1510672
- ],
- [
- -2.7013114,
- 55.1722505
- ],
- [
- -2.6635459,
- 55.2192808
- ],
- [
- -2.6460364,
- 55.2188891
- ],
- [
- -2.629042,
- 55.2233933
- ],
- [
- -2.6317886,
- 55.2287781
- ],
- [
- -2.6235488,
- 55.2446345
- ],
- [
- -2.6197723,
- 55.2454663
- ],
- [
- -2.6099017,
- 55.2454174
- ],
- [
- -2.6099876,
- 55.2486466
- ],
- [
- -2.6408121,
- 55.2590039
- ],
- [
- -2.6247896,
- 55.2615631
- ],
- [
- -2.6045186,
- 55.2823081
- ],
- [
- -2.5693176,
- 55.296132
- ],
- [
- -2.5479542,
- 55.3121617
- ],
- [
- -2.5091116,
- 55.3234891
- ],
- [
- -2.4780376,
- 55.3494471
- ],
- [
- -2.4421083,
- 55.3533118
- ],
- [
- -2.4052079,
- 55.3439256
- ],
- [
- -2.3726772,
- 55.3447539
- ],
- [
- -2.3221819,
- 55.3687665
- ],
- [
- -2.3241241,
- 55.3999337
- ],
- [
- -2.2576062,
- 55.425015
- ],
- [
- -2.1985547,
- 55.4273529
- ],
- [
- -2.1484296,
- 55.4717466
- ],
- [
- -2.1944348,
- 55.484199
- ],
- [
- -2.2040479,
- 55.529306
- ],
- [
- -2.2960584,
- 55.6379722
- ],
- [
- -2.2177808,
- 55.6379722
- ],
- [
- -2.1059266,
- 55.7452498
- ],
- [
- -1.9716874,
- 55.7462161
- ],
- [
- -1.9697453,
- 55.9190951
- ],
- [
- -2.1201694,
- 55.9207115
- ],
- [
- -2.1242893,
- 55.9776133
- ],
- [
- -2.3440159,
- 55.9783817
- ],
- [
- -2.3440159,
- 56.0390349
- ],
- [
- -2.5046909,
- 56.0413363
- ],
- [
- -2.500571,
- 56.1003588
- ],
- [
- -2.8823459,
- 56.0957629
- ],
- [
- -2.8823459,
- 56.1722898
- ],
- [
- -2.4126804,
- 56.1692316
- ],
- [
- -2.4181736,
- 56.2334017
- ],
- [
- -2.5857151,
- 56.2303484
- ],
- [
- -2.5719822,
- 56.3416356
- ],
- [
- -2.7257908,
- 56.3462022
- ],
- [
- -2.7312839,
- 56.4343808
- ],
- [
- -2.6928318,
- 56.4343808
- ],
- [
- -2.6928318,
- 56.4859769
- ],
- [
- -2.5307834,
- 56.4935587
- ],
- [
- -2.5307834,
- 56.570806
- ],
- [
- -2.5302878,
- 56.6047947
- ],
- [
- -2.3732428,
- 56.6044452
- ],
- [
- -2.3684363,
- 56.7398824
- ],
- [
- -2.3292975,
- 56.7398824
- ],
- [
- -2.3292975,
- 56.7888065
- ],
- [
- -2.3145346,
- 56.7891826
- ],
- [
- -2.3148779,
- 56.7967036
- ],
- [
- -2.171369,
- 56.7967036
- ],
- [
- -2.1703979,
- 56.9710595
- ],
- [
- -2.0101725,
- 56.9694716
- ],
- [
- -2.0101725,
- 57.0846832
- ],
- [
- -2.0817687,
- 57.085349
- ],
- [
- -2.0488097,
- 57.1259963
- ],
- [
- -2.0409133,
- 57.126369
- ],
- [
- -2.0383434,
- 57.2411129
- ],
- [
- -1.878118,
- 57.2421638
- ],
- [
- -1.8771469,
- 57.2978175
- ],
- [
- -1.9868771,
- 57.2983422
- ],
- [
- -1.9082209,
- 57.3560063
- ],
- [
- -1.8752048,
- 57.3560063
- ],
- [
- -1.8761758,
- 57.3769527
- ],
- [
- -1.8120857,
- 57.4120111
- ],
- [
- -1.7120661,
- 57.4120111
- ],
- [
- -1.7034646,
- 57.6441388
- ],
- [
- -1.8666032,
- 57.6451781
- ],
- [
- -1.8646611,
- 57.7033351
- ],
- [
- -3.1204292,
- 57.7064705
- ],
- [
- -3.1218025,
- 57.7504652
- ],
- [
- -3.4445259,
- 57.7526635
- ],
- [
- -3.4472724,
- 57.7138067
- ],
- [
- -3.5145637,
- 57.7094052
- ],
- [
- -3.5118171,
- 57.6939956
- ],
- [
- -3.7645027,
- 57.6917938
- ],
- [
- -3.7672492,
- 57.6344975
- ],
- [
- -3.842378,
- 57.6288312
- ],
- [
- -3.8438346,
- 57.5965825
- ],
- [
- -3.9414265,
- 57.5916386
- ],
- [
- -3.9404554,
- 57.6537782
- ],
- [
- -3.8894746,
- 57.6529989
- ],
- [
- -3.8826772,
- 57.7676408
- ],
- [
- -3.7224517,
- 57.766087
- ],
- [
- -3.7195385,
- 57.8819201
- ],
- [
- -3.9146888,
- 57.8853352
- ],
- [
- -3.916062,
- 57.9546243
- ],
- [
- -3.745774,
- 57.9538956
- ],
- [
- -3.7471473,
- 58.0688409
- ],
- [
- -3.5837256,
- 58.0695672
- ],
- [
- -3.5837256,
- 58.1116689
- ],
- [
- -3.4560096,
- 58.1138452
- ],
- [
- -3.4544646,
- 58.228503
- ],
- [
- -3.4379851,
- 58.2283222
- ],
- [
- -3.4243233,
- 58.2427725
- ],
- [
- -3.412307,
- 58.2438567
- ],
- [
- -3.3735115,
- 58.2695057
- ],
- [
- -3.3063919,
- 58.2862038
- ],
- [
- -3.1229154,
- 58.2859395
- ],
- [
- -3.123602,
- 58.3443661
- ],
- [
- -2.9574338,
- 58.3447264
- ],
- [
- -2.951254,
- 58.6422011
- ],
- [
- -2.8812162,
- 58.6429157
- ],
- [
- -2.8851004,
- 58.8112825
- ],
- [
- -2.7180775,
- 58.8142997
- ],
- [
- -2.7161354,
- 58.8715749
- ],
- [
- -2.556881,
- 58.8775984
- ],
- [
- -2.5544533,
- 58.9923453
- ],
- [
- -2.5567617,
- 59.0483775
- ],
- [
- -2.391893,
- 59.0485996
- ],
- [
- -2.3918002,
- 59.1106996
- ],
- [
- -2.4733695,
- 59.1106996
- ],
- [
- -2.5591563,
- 59.1783028
- ],
- [
- -2.5630406,
- 59.2210646
- ],
- [
- -2.3921334,
- 59.224046
- ],
- [
- -2.3911409,
- 59.2740075
- ],
- [
- -2.3639512,
- 59.2745036
- ],
- [
- -2.3658933,
- 59.285417
- ],
- [
- -2.3911409,
- 59.284921
- ],
- [
- -2.3911409,
- 59.3379505
- ],
- [
- -2.2221759,
- 59.3381981
- ],
- [
- -2.2233897,
- 59.395965
- ],
- [
- -2.3758467,
- 59.396583
- ],
- [
- -2.3899271,
- 59.4026383
- ],
- [
- -2.4008516,
- 59.3962122
- ],
- [
- -2.5637882,
- 59.3952604
- ],
- [
- -2.5637882,
- 59.3385811
- ],
- [
- -2.7320164,
- 59.3375306
- ],
- [
- -2.7333896,
- 59.3952604
- ],
- [
- -3.0726511,
- 59.3931174
- ],
- [
- -3.0703404,
- 59.3354759
- ],
- [
- -3.0753186,
- 59.3355634
- ],
- [
- -3.0749753,
- 59.3292593
- ],
- [
- -3.0698254,
- 59.3289091
- ],
- [
- -3.069801,
- 59.2196159
- ],
- [
- -3.2363384,
- 59.2166341
- ],
- [
- -3.2336751,
- 59.1606496
- ],
- [
- -3.4032766,
- 59.1588895
- ],
- [
- -3.394086,
- 58.9279316
- ],
- [
- -3.5664497,
- 58.9259268
- ],
- [
- -3.5611089,
- 58.8679885
- ],
- [
- -3.392508,
- 58.8699339
- ],
- [
- -3.3894734,
- 58.8698711
- ],
- [
- -3.3891093,
- 58.8684905
- ],
- [
- -3.3912942,
- 58.868616
- ],
- [
- -3.3884161,
- 58.7543084
- ],
- [
- -3.2238208,
- 58.7555677
- ],
- [
- -3.2189655,
- 58.691289
- ],
- [
- -3.4634113,
- 58.6905753
- ],
- [
- -3.4551716,
- 58.6341518
- ],
- [
- -3.787508,
- 58.6341518
- ],
- [
- -3.7861347,
- 58.5769211
- ],
- [
- -3.9028645,
- 58.5733411
- ],
- [
- -3.9028645,
- 58.6477304
- ],
- [
- -4.0690327,
- 58.6491594
- ],
- [
- -4.0690327,
- 58.5912376
- ],
- [
- -4.7364521,
- 58.5933845
- ],
- [
- -4.7364521,
- 58.6505884
- ],
- [
- -5.0715351,
- 58.6520173
- ],
- [
- -5.0654779,
- 58.5325854
- ],
- [
- -5.2332047,
- 58.5316087
- ],
- [
- -5.2283494,
- 58.4719947
- ],
- [
- -5.2424298,
- 58.4719947
- ],
- [
- -5.2366034,
- 58.4089731
- ],
- [
- -5.2283494,
- 58.4094818
- ],
- [
- -5.2210664,
- 58.3005859
- ],
- [
- -5.5657939,
- 58.2959933
- ],
- [
- -5.5580254,
- 58.2372573
- ],
- [
- -5.4146722,
- 58.2401326
- ],
- [
- -5.4141866,
- 58.2267768
- ],
- [
- -5.3885749,
- 58.2272242
- ],
- [
- -5.382714,
- 58.1198615
- ],
- [
- -5.51043,
- 58.1191362
- ],
- [
- -5.5114011,
- 58.006214
- ],
- [
- -5.6745397,
- 58.0041559
- ],
- [
- -5.6716266,
- 57.9449366
- ],
- [
- -5.6716266,
- 57.8887166
- ],
- [
- -5.8347652,
- 57.8856193
- ],
- [
- -5.8277052,
- 57.5988958
- ],
- [
- -6.0384259,
- 57.5986357
- ],
- [
- -6.0389115,
- 57.6459559
- ],
- [
- -6.1981658,
- 57.6456961
- ],
- [
- -6.2076123,
- 57.7600132
- ],
- [
- -6.537067,
- 57.7544033
- ],
- [
- -6.5312406,
- 57.6402392
- ],
- [
- -6.7002056,
- 57.6360809
- ],
- [
- -6.6807844,
- 57.5236293
- ],
- [
- -6.8516915,
- 57.5152857
- ],
- [
- -6.8361545,
- 57.3385811
- ],
- [
- -6.6730158,
- 57.3438213
- ],
- [
- -6.674958,
- 57.2850883
- ],
- [
- -6.5098772,
- 57.2850883
- ],
- [
- -6.4982244,
- 57.1757637
- ],
- [
- -6.3506228,
- 57.1820797
- ],
- [
- -6.3312015,
- 57.1251969
- ],
- [
- -6.1797156,
- 57.1230884
- ],
- [
- -6.1719471,
- 57.0682265
- ],
- [
- -6.4593819,
- 57.059779
- ],
- [
- -6.4564687,
- 57.1093806
- ],
- [
- -6.6671895,
- 57.1062165
- ],
- [
- -6.6730158,
- 57.002708
- ],
- [
- -6.5021087,
- 57.0048233
- ],
- [
- -6.4836097,
- 56.8917522
- ],
- [
- -6.3266104,
- 56.8894062
- ],
- [
- -6.3156645,
- 56.7799312
- ],
- [
- -6.2146739,
- 56.775675
- ],
- [
- -6.2146739,
- 56.7234965
- ],
- [
- -6.6866107,
- 56.7224309
- ],
- [
- -6.6769001,
- 56.6114413
- ],
- [
- -6.8419809,
- 56.607166
- ],
- [
- -6.8400387,
- 56.5483307
- ],
- [
- -7.1546633,
- 56.5461895
- ],
- [
- -7.1488369,
- 56.4872592
- ],
- [
- -6.9915246,
- 56.490476
- ],
- [
- -6.9876404,
- 56.4325329
- ],
- [
- -6.6827265,
- 56.4314591
- ],
- [
- -6.6769001,
- 56.5472601
- ],
- [
- -6.5292985,
- 56.5504717
- ],
- [
- -6.5234721,
- 56.4379018
- ],
- [
- -6.3661598,
- 56.4368281
- ],
- [
- -6.3642177,
- 56.3766524
- ],
- [
- -6.5273563,
- 56.3712749
- ],
- [
- -6.5171745,
- 56.2428427
- ],
- [
- -6.4869621,
- 56.247421
- ],
- [
- -6.4869621,
- 56.1893882
- ],
- [
- -6.3001945,
- 56.1985572
- ],
- [
- -6.3029411,
- 56.2581017
- ],
- [
- -5.9019401,
- 56.256576
- ],
- [
- -5.8964469,
- 56.0960466
- ],
- [
- -6.0282829,
- 56.0883855
- ],
- [
- -6.0392692,
- 56.1557502
- ],
- [
- -6.3853385,
- 56.1542205
- ],
- [
- -6.3606193,
- 55.96099
- ],
- [
- -6.2123039,
- 55.9640647
- ],
- [
- -6.2047508,
- 55.9202269
- ],
- [
- -6.5185478,
- 55.9129158
- ],
- [
- -6.5061881,
- 55.7501763
- ],
- [
- -6.6764762,
- 55.7409005
- ],
- [
- -6.6599967,
- 55.6263176
- ],
- [
- -6.3551261,
- 55.6232161
- ],
- [
- -6.3578727,
- 55.5689002
- ],
- [
- -6.0392692,
- 55.5720059
- ],
- [
- -6.0310294,
- 55.6247669
- ],
- [
- -5.7398917,
- 55.6309694
- ],
- [
- -5.7371452,
- 55.4569279
- ],
- [
- -5.8964469,
- 55.4600426
- ],
- [
- -5.8964469,
- 55.2789864
- ],
- [
- -5.4350211,
- 55.2821151
- ],
- [
- -5.4405143,
- 55.4506979
- ],
- [
- -5.2867057,
- 55.4569279
- ],
- [
- -5.3086784,
- 55.4070602
- ],
- [
- -4.9735954,
- 55.4008223
- ],
- [
- -4.9845817,
- 55.2038242
- ],
- [
- -5.1493766,
- 55.2038242
- ],
- [
- -5.1411369,
- 55.037337
- ],
- [
- -5.2152946,
- 55.0341891
- ]
- ],
- [
- [
- -2.1646559,
- 60.1622059
- ],
- [
- -1.9930299,
- 60.1609801
- ],
- [
- -1.9946862,
- 60.1035151
- ],
- [
- -2.1663122,
- 60.104743
- ]
- ],
- [
- [
- -1.5360658,
- 59.8570831
- ],
- [
- -1.3653566,
- 59.8559841
- ],
- [
- -1.366847,
- 59.7975565
- ],
- [
- -1.190628,
- 59.7964199
- ],
- [
- -1.1862046,
- 59.9695391
- ],
- [
- -1.0078652,
- 59.9683948
- ],
- [
- -1.0041233,
- 60.114145
- ],
- [
- -0.8360832,
- 60.1130715
- ],
- [
- -0.834574,
- 60.1716772
- ],
- [
- -1.0074262,
- 60.1727795
- ],
- [
- -1.0052165,
- 60.2583924
- ],
- [
- -0.8299659,
- 60.2572778
- ],
- [
- -0.826979,
- 60.3726551
- ],
- [
- -0.6507514,
- 60.3715381
- ],
- [
- -0.6477198,
- 60.4882292
- ],
- [
- -0.9984896,
- 60.4904445
- ],
- [
- -0.9970279,
- 60.546555
- ],
- [
- -0.6425288,
- 60.5443201
- ],
- [
- -0.6394896,
- 60.6606792
- ],
- [
- -0.8148133,
- 60.6617806
- ],
- [
- -0.8132987,
- 60.7196112
- ],
- [
- -0.6383298,
- 60.7185141
- ],
- [
- -0.635467,
- 60.8275393
- ],
- [
- -0.797568,
- 60.8285523
- ],
- [
- -0.9941426,
- 60.8297807
- ],
- [
- -0.9954966,
- 60.7782667
- ],
- [
- -1.1670282,
- 60.7793403
- ],
- [
- -1.1700357,
- 60.6646181
- ],
- [
- -1.5222599,
- 60.6668304
- ],
- [
- -1.5237866,
- 60.6084426
- ],
- [
- -1.6975673,
- 60.609536
- ],
- [
- -1.7021271,
- 60.4345249
- ],
- [
- -1.5260578,
- 60.4334111
- ],
- [
- -1.5275203,
- 60.3770719
- ],
- [
- -1.8751127,
- 60.3792746
- ],
- [
- -1.8781372,
- 60.2624647
- ],
- [
- -1.7019645,
- 60.2613443
- ],
- [
- -1.7049134,
- 60.1470532
- ],
- [
- -1.528659,
- 60.1459283
- ]
- ],
- [
- [
- -0.9847667,
- 60.8943762
- ],
- [
- -0.9860347,
- 60.8361105
- ],
- [
- -0.8078362,
- 60.8351904
- ],
- [
- -0.8065683,
- 60.8934578
- ]
- ],
- [
- [
- -7.7696901,
- 56.8788231
- ],
- [
- -7.7614504,
- 56.7608274
- ],
- [
- -7.6009049,
- 56.7641903
- ],
- [
- -7.5972473,
- 56.819332
- ],
- [
- -7.4479894,
- 56.8203948
- ],
- [
- -7.4489319,
- 56.8794098
- ],
- [
- -7.2841369,
- 56.8794098
- ],
- [
- -7.2813904,
- 57.0471152
- ],
- [
- -7.1303283,
- 57.0515969
- ],
- [
- -7.1330749,
- 57.511801
- ],
- [
- -6.96828,
- 57.5147514
- ],
- [
- -6.9765198,
- 57.6854668
- ],
- [
- -6.8062317,
- 57.6913392
- ],
- [
- -6.8089782,
- 57.8041985
- ],
- [
- -6.6496765,
- 57.8071252
- ],
- [
- -6.6441833,
- 57.8612267
- ],
- [
- -6.3200866,
- 57.8626878
- ],
- [
- -6.3200866,
- 58.1551617
- ],
- [
- -6.1607849,
- 58.1522633
- ],
- [
- -6.1552917,
- 58.20874
- ],
- [
- -5.9850036,
- 58.2101869
- ],
- [
- -5.9904968,
- 58.2680163
- ],
- [
- -6.1497986,
- 58.2665717
- ],
- [
- -6.1415588,
- 58.5557514
- ],
- [
- -6.3173401,
- 58.5557514
- ],
- [
- -6.3091003,
- 58.4983923
- ],
- [
- -6.4876282,
- 58.4955218
- ],
- [
- -6.4876282,
- 58.4423768
- ],
- [
- -6.6606628,
- 58.4395018
- ],
- [
- -6.6469299,
- 58.3819525
- ],
- [
- -6.8117248,
- 58.3805125
- ],
- [
- -6.8117248,
- 58.3286357
- ],
- [
- -6.9792663,
- 58.3286357
- ],
- [
- -6.9710266,
- 58.2694608
- ],
- [
- -7.1413147,
- 58.2680163
- ],
- [
- -7.1403816,
- 58.0358742
- ],
- [
- -7.3020636,
- 58.0351031
- ],
- [
- -7.3030347,
- 57.9774797
- ],
- [
- -7.1379539,
- 57.9777372
- ],
- [
- -7.1413526,
- 57.9202792
- ],
- [
- -7.1398961,
- 57.8640206
- ],
- [
- -7.3020636,
- 57.862471
- ],
- [
- -7.298484,
- 57.7442293
- ],
- [
- -7.4509193,
- 57.7456951
- ],
- [
- -7.4550392,
- 57.6899522
- ],
- [
- -7.6186131,
- 57.6906048
- ],
- [
- -7.6198341,
- 57.7456951
- ],
- [
- -7.7901222,
- 57.7442293
- ],
- [
- -7.7873756,
- 57.6855477
- ],
- [
- -7.6222332,
- 57.6853817
- ],
- [
- -7.6173779,
- 57.5712602
- ],
- [
- -7.788285,
- 57.5709998
- ],
- [
- -7.7892561,
- 57.512109
- ],
- [
- -7.7038025,
- 57.5115874
- ],
- [
- -7.6999183,
- 57.4546902
- ],
- [
- -7.5367796,
- 57.4552126
- ],
- [
- -7.5348375,
- 57.5126306
- ],
- [
- -7.4581235,
- 57.5131521
- ],
- [
- -7.4552103,
- 57.2824165
- ],
- [
- -7.6115515,
- 57.2845158
- ],
- [
- -7.6144647,
- 57.2272651
- ],
- [
- -7.451326,
- 57.2256881
- ],
- [
- -7.451326,
- 57.1103873
- ],
- [
- -7.6164068,
- 57.1088053
- ],
- [
- -7.603783,
- 56.8792358
- ]
- ],
- [
- [
- -1.7106618,
- 59.5626284
- ],
- [
- -1.5417509,
- 59.562215
- ],
- [
- -1.5423082,
- 59.5037224
- ],
- [
- -1.7112191,
- 59.5041365
- ]
- ]
- ],
- "terms_url": "http://geo.nls.uk/maps/",
- "terms_text": "National Library of Scotland Historic Maps"
- },
- {
- "name": "New & Misaligned TIGER Roads",
- "type": "tms",
- "description": "At zoom level 16+, public domain map data from the US Census. At lower zooms, only changes since 2006 minus changes already incorporated into OpenStreetMap",
- "template": "http://{switch:a,b,c}.tiles.mapbox.com/v3/enf.y5c4ygb9,enf.ho20a3n1,enf.game1617/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 22
- ],
- "polygon": [
- [
- [
- -124.7617886,
- 48.4130148
- ],
- [
- -124.6059492,
- 45.90245
- ],
- [
- -124.9934269,
- 40.0557614
- ],
- [
- -122.5369737,
- 36.8566086
- ],
- [
- -119.9775867,
- 33.0064099
- ],
- [
- -117.675935,
- 32.4630223
- ],
- [
- -114.8612307,
- 32.4799891
- ],
- [
- -111.0089311,
- 31.336015
- ],
- [
- -108.1992687,
- 31.3260016
- ],
- [
- -108.1871123,
- 31.7755116
- ],
- [
- -106.5307225,
- 31.7820947
- ],
- [
- -106.4842052,
- 31.7464455
- ],
- [
- -106.429317,
- 31.7520583
- ],
- [
- -106.2868855,
- 31.5613291
- ],
- [
- -106.205248,
- 31.446704
- ],
- [
- -105.0205259,
- 30.5360988
- ],
- [
- -104.5881916,
- 29.6997856
- ],
- [
- -103.2518856,
- 28.8908685
- ],
- [
- -102.7173632,
- 29.3920567
- ],
- [
- -102.1513983,
- 29.7475702
- ],
- [
- -101.2552871,
- 29.4810523
- ],
- [
- -100.0062436,
- 28.0082173
- ],
- [
- -99.2351068,
- 26.4475962
- ],
- [
- -98.0109067,
- 25.9928035
- ],
- [
- -97.435024,
- 25.8266009
- ],
- [
- -96.9555259,
- 25.9821589
- ],
- [
- -96.8061741,
- 27.7978168
- ],
- [
- -95.5563349,
- 28.5876066
- ],
- [
- -93.7405308,
- 29.4742093
- ],
- [
- -90.9028456,
- 28.8564513
- ],
- [
- -88.0156706,
- 28.9944338
- ],
- [
- -88.0162494,
- 30.0038862
- ],
- [
- -86.0277506,
- 30.0047454
- ],
- [
- -84.0187909,
- 28.9961781
- ],
- [
- -81.9971976,
- 25.9826768
- ],
- [
- -81.9966618,
- 25.0134917
- ],
- [
- -84.0165592,
- 25.0125783
- ],
- [
- -84.0160068,
- 24.0052745
- ],
- [
- -80.0199985,
- 24.007096
- ],
- [
- -79.8901116,
- 26.8550713
- ],
- [
- -80.0245309,
- 32.0161282
- ],
- [
- -75.4147385,
- 35.0531894
- ],
- [
- -74.0211163,
- 39.5727927
- ],
- [
- -72.002019,
- 40.9912464
- ],
- [
- -69.8797398,
- 40.9920457
- ],
- [
- -69.8489304,
- 43.2619916
- ],
- [
- -66.9452845,
- 44.7104937
- ],
- [
- -67.7596632,
- 47.0990024
- ],
- [
- -69.2505131,
- 47.5122328
- ],
- [
- -70.4614886,
- 46.2176574
- ],
- [
- -71.412273,
- 45.254878
- ],
- [
- -72.0222508,
- 45.0059846
- ],
- [
- -75.0798841,
- 44.9802854
- ],
- [
- -76.9023061,
- 43.8024568
- ],
- [
- -78.7623935,
- 43.6249578
- ],
- [
- -79.15798,
- 43.4462589
- ],
- [
- -79.0060087,
- 42.8005317
- ],
- [
- -82.662475,
- 41.6889458
- ],
- [
- -82.1761642,
- 43.588535
- ],
- [
- -83.2813977,
- 46.138853
- ],
- [
- -87.5064535,
- 48.0142702
- ],
- [
- -88.3492194,
- 48.2963271
- ],
- [
- -89.4353148,
- 47.9837822
- ],
- [
- -93.9981078,
- 49.0067142
- ],
- [
- -95.1105379,
- 49.412004
- ],
- [
- -96.0131199,
- 49.0060547
- ],
- [
- -123.3228926,
- 49.0042878
- ],
- [
- -123.2275233,
- 48.1849927
- ]
- ],
- [
- [
- -160.5787616,
- 22.5062947
- ],
- [
- -160.5782192,
- 21.4984647
- ],
- [
- -158.7470604,
- 21.2439843
- ],
- [
- -157.5083185,
- 20.995803
- ],
- [
- -155.9961942,
- 18.7790194
- ],
- [
- -154.6217803,
- 18.7586966
- ],
- [
- -154.6890176,
- 19.8805722
- ],
- [
- -156.2927622,
- 21.2225888
- ],
- [
- -157.5047384,
- 21.9984962
- ],
- [
- -159.0093692,
- 22.5070181
- ]
- ],
- [
- [
- -167.1571546,
- 68.721974
- ],
- [
- -164.8553982,
- 67.0255078
- ],
- [
- -168.002195,
- 66.0017503
- ],
- [
- -169.0087448,
- 66.001546
- ],
- [
- -169.0075381,
- 64.9987675
- ],
- [
- -172.5143281,
- 63.8767267
- ],
- [
- -173.8197023,
- 59.74014
- ],
- [
- -162.5018149,
- 58.0005815
- ],
- [
- -160.0159024,
- 58.0012389
- ],
- [
- -160.0149725,
- 57.000035
- ],
- [
- -160.5054788,
- 56.9999017
- ],
- [
- -165.8092575,
- 54.824847
- ],
- [
- -178.000097,
- 52.2446469
- ],
- [
- -177.9992996,
- 51.2554252
- ],
- [
- -171.4689067,
- 51.8215329
- ],
- [
- -162.40251,
- 53.956664
- ],
- [
- -159.0075717,
- 55.002502
- ],
- [
- -158.0190709,
- 55.0027849
- ],
- [
- -151.9963213,
- 55.9991902
- ],
- [
- -151.500341,
- 57.9987853
- ],
- [
- -151.5012894,
- 58.9919816
- ],
- [
- -138.5159989,
- 58.9953194
- ],
- [
- -138.5150471,
- 57.9986434
- ],
- [
- -133.9948193,
- 54.0031685
- ],
- [
- -130.0044418,
- 54.0043387
- ],
- [
- -130.0070826,
- 57.0000507
- ],
- [
- -131.975877,
- 56.9995156
- ],
- [
- -135.1229873,
- 59.756601
- ],
- [
- -138.0071813,
- 59.991805
- ],
- [
- -139.1715881,
- 60.4127229
- ],
- [
- -140.9874011,
- 61.0118551
- ],
- [
- -140.9683975,
- 69.9535069
- ],
- [
- -156.176891,
- 71.5633329
- ],
- [
- -160.413634,
- 70.7397728
- ],
- [
- -163.0218273,
- 69.9707435
- ],
- [
- -164.9717003,
- 68.994689
- ]
- ]
- ],
- "overlay": true
- },
- {
- "name": "OS 1:25k historic (OSM)",
- "type": "tms",
- "template": "http://ooc.openstreetmap.org/os1/{zoom}/{x}/{y}.jpg",
- "scaleExtent": [
- 6,
- 17
- ],
- "polygon": [
- [
- [
- -9,
- 49.8
- ],
- [
- -9,
- 61.1
- ],
- [
- 1.9,
- 61.1
- ],
- [
- 1.9,
- 49.8
- ],
- [
- -9,
- 49.8
- ]
- ]
- ]
- },
- {
- "name": "OS New Popular Edition historic",
- "type": "tms",
- "template": "http://ooc.openstreetmap.org/npe/{zoom}/{x}/{y}.png",
- "polygon": [
- [
- [
- -5.8,
- 49.8
- ],
- [
- -5.8,
- 55.8
- ],
- [
- 1.9,
- 55.8
- ],
- [
- 1.9,
- 49.8
- ],
- [
- -5.8,
- 49.8
- ]
- ]
- ]
- },
- {
- "name": "OS OpenData Locator",
- "type": "tms",
- "template": "http://tiles.itoworld.com/os_locator/{zoom}/{x}/{y}.png",
- "polygon": [
- [
- [
- -9,
- 49.8
- ],
- [
- -9,
- 61.1
- ],
- [
- 1.9,
- 61.1
- ],
- [
- 1.9,
- 49.8
- ],
- [
- -9,
- 49.8
- ]
- ]
- ],
- "overlay": true
- },
- {
- "name": "OS OpenData StreetView",
- "type": "tms",
- "template": "http://os.openstreetmap.org/sv/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 1,
- 18
- ],
- "polygon": [
- [
- [
- -5.8292886,
- 50.0229734
- ],
- [
- -5.8292886,
- 50.254819
- ],
- [
- -5.373356,
- 50.254819
- ],
- [
- -5.373356,
- 50.3530588
- ],
- [
- -5.1756021,
- 50.3530588
- ],
- [
- -5.1756021,
- 50.5925406
- ],
- [
- -4.9970743,
- 50.5925406
- ],
- [
- -4.9970743,
- 50.6935617
- ],
- [
- -4.7965738,
- 50.6935617
- ],
- [
- -4.7965738,
- 50.7822112
- ],
- [
- -4.6949503,
- 50.7822112
- ],
- [
- -4.6949503,
- 50.9607371
- ],
- [
- -4.6043131,
- 50.9607371
- ],
- [
- -4.6043131,
- 51.0692066
- ],
- [
- -4.3792215,
- 51.0692066
- ],
- [
- -4.3792215,
- 51.2521782
- ],
- [
- -3.9039346,
- 51.2521782
- ],
- [
- -3.9039346,
- 51.2916998
- ],
- [
- -3.7171671,
- 51.2916998
- ],
- [
- -3.7171671,
- 51.2453014
- ],
- [
- -3.1486246,
- 51.2453014
- ],
- [
- -3.1486246,
- 51.362067
- ],
- [
- -3.7446329,
- 51.362067
- ],
- [
- -3.7446329,
- 51.4340386
- ],
- [
- -3.8297769,
- 51.4340386
- ],
- [
- -3.8297769,
- 51.5298246
- ],
- [
- -4.0852091,
- 51.5298246
- ],
- [
- -4.0852091,
- 51.4939284
- ],
- [
- -4.3792215,
- 51.4939284
- ],
- [
- -4.3792215,
- 51.5427168
- ],
- [
- -5.1444195,
- 51.5427168
- ],
- [
- -5.1444195,
- 51.6296003
- ],
- [
- -5.7387103,
- 51.6296003
- ],
- [
- -5.7387103,
- 51.774037
- ],
- [
- -5.5095393,
- 51.774037
- ],
- [
- -5.5095393,
- 51.9802596
- ],
- [
- -5.198799,
- 51.9802596
- ],
- [
- -5.198799,
- 52.0973358
- ],
- [
- -4.8880588,
- 52.0973358
- ],
- [
- -4.8880588,
- 52.1831557
- ],
- [
- -4.4957492,
- 52.1831557
- ],
- [
- -4.4957492,
- 52.2925739
- ],
- [
- -4.3015365,
- 52.2925739
- ],
- [
- -4.3015365,
- 52.3685318
- ],
- [
- -4.1811246,
- 52.3685318
- ],
- [
- -4.1811246,
- 52.7933685
- ],
- [
- -4.4413696,
- 52.7933685
- ],
- [
- -4.4413696,
- 52.7369614
- ],
- [
- -4.8569847,
- 52.7369614
- ],
- [
- -4.8569847,
- 52.9317255
- ],
- [
- -4.7288044,
- 52.9317255
- ],
- [
- -4.7288044,
- 53.5038599
- ],
- [
- -4.1578191,
- 53.5038599
- ],
- [
- -4.1578191,
- 53.4113498
- ],
- [
- -3.3110518,
- 53.4113498
- ],
- [
- -3.3110518,
- 53.5038599
- ],
- [
- -3.2333667,
- 53.5038599
- ],
- [
- -3.2333667,
- 54.0159169
- ],
- [
- -3.3926211,
- 54.0159169
- ],
- [
- -3.3926211,
- 54.1980953
- ],
- [
- -3.559644,
- 54.1980953
- ],
- [
- -3.559644,
- 54.433732
- ],
- [
- -3.7188984,
- 54.433732
- ],
- [
- -3.7188984,
- 54.721897
- ],
- [
- -4.3015365,
- 54.721897
- ],
- [
- -4.3015365,
- 54.6140739
- ],
- [
- -5.0473132,
- 54.6140739
- ],
- [
- -5.0473132,
- 54.7532915
- ],
- [
- -5.2298731,
- 54.7532915
- ],
- [
- -5.2298731,
- 55.2190799
- ],
- [
- -5.6532567,
- 55.2190799
- ],
- [
- -5.6532567,
- 55.250088
- ],
- [
- -5.8979647,
- 55.250088
- ],
- [
- -5.8979647,
- 55.4822462
- ],
- [
- -6.5933212,
- 55.4822462
- ],
- [
- -6.5933212,
- 56.3013441
- ],
- [
- -7.1727691,
- 56.3013441
- ],
- [
- -7.1727691,
- 56.5601822
- ],
- [
- -6.8171722,
- 56.5601822
- ],
- [
- -6.8171722,
- 56.6991713
- ],
- [
- -6.5315276,
- 56.6991713
- ],
- [
- -6.5315276,
- 56.9066964
- ],
- [
- -6.811679,
- 56.9066964
- ],
- [
- -6.811679,
- 57.3716613
- ],
- [
- -6.8721038,
- 57.3716613
- ],
- [
- -6.8721038,
- 57.5518893
- ],
- [
- -7.0973235,
- 57.5518893
- ],
- [
- -7.0973235,
- 57.2411085
- ],
- [
- -7.1742278,
- 57.2411085
- ],
- [
- -7.1742278,
- 56.9066964
- ],
- [
- -7.3719817,
- 56.9066964
- ],
- [
- -7.3719817,
- 56.8075885
- ],
- [
- -7.5202972,
- 56.8075885
- ],
- [
- -7.5202972,
- 56.7142479
- ],
- [
- -7.8306806,
- 56.7142479
- ],
- [
- -7.8306806,
- 56.8994605
- ],
- [
- -7.6494061,
- 56.8994605
- ],
- [
- -7.6494061,
- 57.4739617
- ],
- [
- -7.8306806,
- 57.4739617
- ],
- [
- -7.8306806,
- 57.7915584
- ],
- [
- -7.4736249,
- 57.7915584
- ],
- [
- -7.4736249,
- 58.086063
- ],
- [
- -7.1879804,
- 58.086063
- ],
- [
- -7.1879804,
- 58.367197
- ],
- [
- -6.8034589,
- 58.367197
- ],
- [
- -6.8034589,
- 58.4155786
- ],
- [
- -6.638664,
- 58.4155786
- ],
- [
- -6.638664,
- 58.4673277
- ],
- [
- -6.5178143,
- 58.4673277
- ],
- [
- -6.5178143,
- 58.5625632
- ],
- [
- -6.0536224,
- 58.5625632
- ],
- [
- -6.0536224,
- 58.1568843
- ],
- [
- -6.1470062,
- 58.1568843
- ],
- [
- -6.1470062,
- 58.1105865
- ],
- [
- -6.2799798,
- 58.1105865
- ],
- [
- -6.2799798,
- 57.7122664
- ],
- [
- -6.1591302,
- 57.7122664
- ],
- [
- -6.1591302,
- 57.6667563
- ],
- [
- -5.9339104,
- 57.6667563
- ],
- [
- -5.9339104,
- 57.8892524
- ],
- [
- -5.80643,
- 57.8892524
- ],
- [
- -5.80643,
- 57.9621767
- ],
- [
- -5.6141692,
- 57.9621767
- ],
- [
- -5.6141692,
- 58.0911236
- ],
- [
- -5.490819,
- 58.0911236
- ],
- [
- -5.490819,
- 58.3733281
- ],
- [
- -5.3199118,
- 58.3733281
- ],
- [
- -5.3199118,
- 58.75015
- ],
- [
- -3.5719977,
- 58.75015
- ],
- [
- -3.5719977,
- 59.2091788
- ],
- [
- -3.1944501,
- 59.2091788
- ],
- [
- -3.1944501,
- 59.4759216
- ],
- [
- -2.243583,
- 59.4759216
- ],
- [
- -2.243583,
- 59.1388749
- ],
- [
- -2.4611012,
- 59.1388749
- ],
- [
- -2.4611012,
- 58.8185938
- ],
- [
- -2.7407675,
- 58.8185938
- ],
- [
- -2.7407675,
- 58.5804743
- ],
- [
- -2.9116746,
- 58.5804743
- ],
- [
- -2.9116746,
- 58.1157523
- ],
- [
- -3.4865441,
- 58.1157523
- ],
- [
- -3.4865441,
- 57.740386
- ],
- [
- -1.7153245,
- 57.740386
- ],
- [
- -1.7153245,
- 57.2225558
- ],
- [
- -1.9794538,
- 57.2225558
- ],
- [
- -1.9794538,
- 56.8760742
- ],
- [
- -2.1658979,
- 56.8760742
- ],
- [
- -2.1658979,
- 56.6333186
- ],
- [
- -2.3601106,
- 56.6333186
- ],
- [
- -2.3601106,
- 56.0477521
- ],
- [
- -1.9794538,
- 56.0477521
- ],
- [
- -1.9794538,
- 55.8650949
- ],
- [
- -1.4745008,
- 55.8650949
- ],
- [
- -1.4745008,
- 55.2499926
- ],
- [
- -1.3221997,
- 55.2499926
- ],
- [
- -1.3221997,
- 54.8221737
- ],
- [
- -1.0550014,
- 54.8221737
- ],
- [
- -1.0550014,
- 54.6746628
- ],
- [
- -0.6618765,
- 54.6746628
- ],
- [
- -0.6618765,
- 54.5527463
- ],
- [
- -0.3247617,
- 54.5527463
- ],
- [
- -0.3247617,
- 54.2865195
- ],
- [
- 0.0092841,
- 54.2865195
- ],
- [
- 0.0092841,
- 53.7938518
- ],
- [
- 0.2081962,
- 53.7938518
- ],
- [
- 0.2081962,
- 53.5217726
- ],
- [
- 0.4163548,
- 53.5217726
- ],
- [
- 0.4163548,
- 53.0298851
- ],
- [
- 1.4273388,
- 53.0298851
- ],
- [
- 1.4273388,
- 52.92021
- ],
- [
- 1.8333912,
- 52.92021
- ],
- [
- 1.8333912,
- 52.042488
- ],
- [
- 1.5235504,
- 52.042488
- ],
- [
- 1.5235504,
- 51.8261335
- ],
- [
- 1.2697049,
- 51.8261335
- ],
- [
- 1.2697049,
- 51.6967453
- ],
- [
- 1.116651,
- 51.6967453
- ],
- [
- 1.116651,
- 51.440346
- ],
- [
- 1.5235504,
- 51.440346
- ],
- [
- 1.5235504,
- 51.3331831
- ],
- [
- 1.4507565,
- 51.3331831
- ],
- [
- 1.4507565,
- 51.0207553
- ],
- [
- 1.0699883,
- 51.0207553
- ],
- [
- 1.0699883,
- 50.9008416
- ],
- [
- 0.7788126,
- 50.9008416
- ],
- [
- 0.7788126,
- 50.729843
- ],
- [
- -0.7255952,
- 50.729843
- ],
- [
- -0.7255952,
- 50.7038437
- ],
- [
- -1.0074383,
- 50.7038437
- ],
- [
- -1.0074383,
- 50.5736307
- ],
- [
- -2.3625252,
- 50.5736307
- ],
- [
- -2.3625252,
- 50.4846421
- ],
- [
- -2.4987805,
- 50.4846421
- ],
- [
- -2.4987805,
- 50.5736307
- ],
- [
- -3.4096378,
- 50.5736307
- ],
- [
- -3.4096378,
- 50.2057837
- ],
- [
- -3.6922446,
- 50.2057837
- ],
- [
- -3.6922446,
- 50.1347737
- ],
- [
- -5.005468,
- 50.1347737
- ],
- [
- -5.005468,
- 49.9474456
- ],
- [
- -5.2839506,
- 49.9474456
- ],
- [
- -5.2839506,
- 50.0229734
- ]
- ],
- [
- [
- -6.4580707,
- 49.8673563
- ],
- [
- -6.4580707,
- 49.9499935
- ],
- [
- -6.3978807,
- 49.9499935
- ],
- [
- -6.3978807,
- 50.0053797
- ],
- [
- -6.1799606,
- 50.0053797
- ],
- [
- -6.1799606,
- 49.9168614
- ],
- [
- -6.2540201,
- 49.9168614
- ],
- [
- -6.2540201,
- 49.8673563
- ]
- ],
- [
- [
- -5.8343165,
- 49.932156
- ],
- [
- -5.8343165,
- 49.9754641
- ],
- [
- -5.7683254,
- 49.9754641
- ],
- [
- -5.7683254,
- 49.932156
- ]
- ],
- [
- [
- -1.9483797,
- 60.6885737
- ],
- [
- -1.9483797,
- 60.3058841
- ],
- [
- -1.7543149,
- 60.3058841
- ],
- [
- -1.7543149,
- 60.1284428
- ],
- [
- -1.5754914,
- 60.1284428
- ],
- [
- -1.5754914,
- 59.797917
- ],
- [
- -1.0316959,
- 59.797917
- ],
- [
- -1.0316959,
- 60.0354518
- ],
- [
- -0.6626918,
- 60.0354518
- ],
- [
- -0.6626918,
- 60.9103862
- ],
- [
- -1.1034395,
- 60.9103862
- ],
- [
- -1.1034395,
- 60.8040022
- ],
- [
- -1.3506319,
- 60.8040022
- ],
- [
- -1.3506319,
- 60.6885737
- ]
- ],
- [
- [
- -2.203381,
- 60.1968568
- ],
- [
- -2.203381,
- 60.0929443
- ],
- [
- -1.9864011,
- 60.0929443
- ],
- [
- -1.9864011,
- 60.1968568
- ]
- ],
- [
- [
- -1.7543149,
- 59.5698289
- ],
- [
- -1.7543149,
- 59.4639383
- ],
- [
- -1.5373349,
- 59.4639383
- ],
- [
- -1.5373349,
- 59.5698289
- ]
- ],
- [
- [
- -4.5585981,
- 59.1370518
- ],
- [
- -4.5585981,
- 58.9569099
- ],
- [
- -4.2867004,
- 58.9569099
- ],
- [
- -4.2867004,
- 59.1370518
- ]
- ],
- [
- [
- -6.2787732,
- 59.2025744
- ],
- [
- -6.2787732,
- 59.0227769
- ],
- [
- -5.6650612,
- 59.0227769
- ],
- [
- -5.6650612,
- 59.2025744
- ]
- ],
- [
- [
- -8.7163482,
- 57.9440556
- ],
- [
- -8.7163482,
- 57.7305936
- ],
- [
- -8.3592926,
- 57.7305936
- ],
- [
- -8.3592926,
- 57.9440556
- ]
- ],
- [
- [
- -7.6077005,
- 50.4021026
- ],
- [
- -7.6077005,
- 50.2688657
- ],
- [
- -7.3907205,
- 50.2688657
- ],
- [
- -7.3907205,
- 50.4021026
- ]
- ],
- [
- [
- -7.7304303,
- 58.3579902
- ],
- [
- -7.7304303,
- 58.248313
- ],
- [
- -7.5134503,
- 58.248313
- ],
- [
- -7.5134503,
- 58.3579902
- ]
- ]
- ]
- },
- {
- "name": "OS Scottish Popular historic",
- "type": "tms",
- "template": "http://ooc.openstreetmap.org/npescotland/tiles/{zoom}/{x}/{y}.jpg",
- "scaleExtent": [
- 6,
- 15
- ],
- "polygon": [
- [
- [
- -7.8,
- 54.5
- ],
- [
- -7.8,
- 61.1
- ],
- [
- -1.1,
- 61.1
- ],
- [
- -1.1,
- 54.5
- ],
- [
- -7.8,
- 54.5
- ]
- ]
- ]
- },
- {
- "name": "OS Town Plans, Aberdeen 1866-1867 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Aberdeen 1866-1867, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/aberdeen/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -2.14039404,
- 57.11218789
- ],
- [
- -2.14064752,
- 57.17894161
- ],
- [
- -2.04501987,
- 57.17901252
- ],
- [
- -2.04493842,
- 57.11225862
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/aberdeen.html",
- "terms_text": "National Library of Scotland - Aberdeen 1866-1867"
- },
- {
- "name": "OS Town Plans, Airdrie 1858 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Airdrie 1858, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/airdrie/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.99291738,
- 55.86408041
- ],
- [
- -3.99338933,
- 55.87329115
- ],
- [
- -3.9691085,
- 55.87368212
- ],
- [
- -3.9686423,
- 55.86447124
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/airdrie.html",
- "terms_text": "National Library of Scotland - Airdrie 1858"
- },
- {
- "name": "OS Town Plans, Alexandria 1859 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Alexandria 1859, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/alexandria/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -4.58973571,
- 55.97536707
- ],
- [
- -4.59104461,
- 55.99493153
- ],
- [
- -4.55985072,
- 55.99558348
- ],
- [
- -4.55855754,
- 55.97601855
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/alexandria.html",
- "terms_text": "National Library of Scotland - Alexandria 1859"
- },
- {
- "name": "OS Town Plans, Alloa 1861-1862 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Alloa 1861-1862, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/alloa/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.81166061,
- 56.09864363
- ],
- [
- -3.81274448,
- 56.12169929
- ],
- [
- -3.7804609,
- 56.12216898
- ],
- [
- -3.77939631,
- 56.09911292
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/alloa.html",
- "terms_text": "National Library of Scotland - Alloa 1861-1862"
- },
- {
- "name": "OS Town Plans, Annan 1859 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Annan 1859, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/annan/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.27921439,
- 54.98252155
- ],
- [
- -3.27960062,
- 54.9946601
- ],
- [
- -3.24866331,
- 54.99498165
- ],
- [
- -3.24828642,
- 54.98284297
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/annan.html",
- "terms_text": "National Library of Scotland - Annan 1859"
- },
- {
- "name": "OS Town Plans, Arbroath 1858 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Arbroath 1858, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/arbroath/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -2.60716469,
- 56.53995105
- ],
- [
- -2.60764981,
- 56.57022426
- ],
- [
- -2.56498708,
- 56.57042549
- ],
- [
- -2.564536,
- 56.54015206
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/arbroath.html",
- "terms_text": "National Library of Scotland - Arbroath 1858"
- },
- {
- "name": "OS Town Plans, Ayr 1855 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Ayr 1855, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/ayr/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -4.66768105,
- 55.43748864
- ],
- [
- -4.67080057,
- 55.48363961
- ],
- [
- -4.60609844,
- 55.48503484
- ],
- [
- -4.60305426,
- 55.43888149
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/ayr.html",
- "terms_text": "National Library of Scotland - Ayr 1855"
- },
- {
- "name": "OS Town Plans, Berwick-upon-Tweed 1852 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Berwick-upon-Tweed 1852, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/berwick/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -2.02117487,
- 55.75577627
- ],
- [
- -2.02118763,
- 55.77904118
- ],
- [
- -1.98976956,
- 55.77904265
- ],
- [
- -1.9897755,
- 55.75577774
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/berwick.html",
- "terms_text": "National Library of Scotland - Berwick-upon-Tweed 1852"
- },
- {
- "name": "OS Town Plans, Brechin 1862 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Brechin 1862, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/brechin/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -2.67480248,
- 56.71456775
- ],
- [
- -2.67521172,
- 56.73739937
- ],
- [
- -2.64319679,
- 56.73756872
- ],
- [
- -2.64280695,
- 56.71473694
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/brechin.html",
- "terms_text": "National Library of Scotland - Brechin 1862"
- },
- {
- "name": "OS Town Plans, Burntisland 1894 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Burntisland 1894, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/burntisland/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.24879624,
- 56.04240046
- ],
- [
- -3.2495182,
- 56.06472996
- ],
- [
- -3.21830572,
- 56.06504207
- ],
- [
- -3.21760179,
- 56.0427123
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/burntisland.html",
- "terms_text": "National Library of Scotland - Burntisland 1894"
- },
- {
- "name": "OS Town Plans, Campbelton 1865 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Campbelton 1865, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/campbeltown/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -5.62345307,
- 55.40255998
- ],
- [
- -5.62631353,
- 55.43375303
- ],
- [
- -5.58276654,
- 55.43503753
- ],
- [
- -5.57994024,
- 55.40384299
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/campbelton.html",
- "terms_text": "National Library of Scotland - Campbelton 1865"
- },
- {
- "name": "OS Town Plans, Coatbridge 1858 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Coatbridge 1858, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/coatbridge/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -4.05035921,
- 55.84648689
- ],
- [
- -4.05157062,
- 55.86947193
- ],
- [
- -4.01953905,
- 55.87000186
- ],
- [
- -4.01834651,
- 55.84701638
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/coatbridge.html",
- "terms_text": "National Library of Scotland - Coatbridge 1858"
- },
- {
- "name": "OS Town Plans, Cupar 1854 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Cupar 1854, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/cupar1854/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.04765872,
- 56.28653177
- ],
- [
- -3.04890965,
- 56.332192
- ],
- [
- -2.98498515,
- 56.33271677
- ],
- [
- -2.98381041,
- 56.28705563
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/cupar_1.html",
- "terms_text": "National Library of Scotland - Cupar 1854"
- },
- {
- "name": "OS Town Plans, Cupar 1893-1894 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Cupar 1893-1894, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/cupar1893/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.0327697,
- 56.30243657
- ],
- [
- -3.03338443,
- 56.32520139
- ],
- [
- -3.00146629,
- 56.32546356
- ],
- [
- -3.00087054,
- 56.30269852
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/cupar_2.html",
- "terms_text": "National Library of Scotland - Cupar 1893-1894"
- },
- {
- "name": "OS Town Plans, Dalkeith 1852 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Dalkeith 1852, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/dalkeith1852/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.07862465,
- 55.88900264
- ],
- [
- -3.0790381,
- 55.90389729
- ],
- [
- -3.05835611,
- 55.90407681
- ],
- [
- -3.05795059,
- 55.88918206
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/dalkeith_1.html",
- "terms_text": "National Library of Scotland - Dalkeith 1852"
- },
- {
- "name": "OS Town Plans, Dalkeith 1893 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Dalkeith 1893, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/dalkeith1893/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.08600192,
- 55.87936087
- ],
- [
- -3.08658588,
- 55.90025926
- ],
- [
- -3.0436473,
- 55.90063074
- ],
- [
- -3.04308639,
- 55.87973206
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/dalkeith_2.html",
- "terms_text": "National Library of Scotland - Dalkeith 1893"
- },
- {
- "name": "OS Town Plans, Dumbarton 1859 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Dumbarton 1859, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/dumbarton/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -4.58559982,
- 55.92742578
- ],
- [
- -4.58714245,
- 55.95056014
- ],
- [
- -4.55463269,
- 55.95123882
- ],
- [
- -4.55310939,
- 55.92810387
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/dumbarton.html",
- "terms_text": "National Library of Scotland - Dumbarton 1859"
- },
- {
- "name": "OS Town Plans, Dumfries 1850 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Dumfries 1850, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/dumfries1850/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.63928076,
- 55.03715991
- ],
- [
- -3.64116352,
- 55.08319002
- ],
- [
- -3.57823183,
- 55.08402202
- ],
- [
- -3.57642118,
- 55.0379905
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/dumfries_1.html",
- "terms_text": "National Library of Scotland - Dumfries 1850"
- },
- {
- "name": "OS Town Plans, Dumfries 1893 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Dumfries 1893, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/dumfries1893/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.63179081,
- 55.04150111
- ],
- [
- -3.63330662,
- 55.07873429
- ],
- [
- -3.58259012,
- 55.07940411
- ],
- [
- -3.58112132,
- 55.04217001
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/dumfries_2.html",
- "terms_text": "National Library of Scotland - Dumfries 1893"
- },
- {
- "name": "OS Town Plans, Dundee 1857-1858 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Dundee 1857-1858, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/dundee1857/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.02584468,
- 56.44879161
- ],
- [
- -3.02656969,
- 56.47566815
- ],
- [
- -2.94710317,
- 56.47629984
- ],
- [
- -2.94643424,
- 56.44942266
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/dundee_1.html",
- "terms_text": "National Library of Scotland - Dundee 1857-1858"
- },
- {
- "name": "OS Town Plans, Dundee 1870-1872 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Dundee 1870-1872, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/dundee1870/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.03399945,
- 56.448497
- ],
- [
- -3.03497463,
- 56.48435238
- ],
- [
- -2.92352705,
- 56.48523137
- ],
- [
- -2.92265681,
- 56.4493748
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/dundee_2.html",
- "terms_text": "National Library of Scotland - Dundee 1870-1872"
- },
- {
- "name": "OS Town Plans, Dunfermline 1854 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Dunfermline 1854, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/dunfermline1854/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.49045481,
- 56.0605979
- ],
- [
- -3.49116489,
- 56.07898822
- ],
- [
- -3.44374075,
- 56.07955208
- ],
- [
- -3.44305323,
- 56.06116138
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/dunfermline_1.html",
- "terms_text": "National Library of Scotland - Dunfermline 1854"
- },
- {
- "name": "OS Town Plans, Dunfermline 1894 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Dunfermline 1894, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/dunfermline1893/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.48284159,
- 56.05198219
- ],
- [
- -3.48399434,
- 56.08198924
- ],
- [
- -3.44209721,
- 56.08248587
- ],
- [
- -3.44097697,
- 56.05247826
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/dunfermline_2.html",
- "terms_text": "National Library of Scotland - Dunfermline 1894"
- },
- {
- "name": "OS Town Plans, Edinburgh 1849-1851 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Edinburgh 1849-1851, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/edinburgh1849/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.2361048,
- 55.921366
- ],
- [
- -3.23836397,
- 55.99217223
- ],
- [
- -3.14197035,
- 55.99310288
- ],
- [
- -3.13988689,
- 55.92229419
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/edinburgh1056_1.html",
- "terms_text": "National Library of Scotland - Edinburgh 1849-1851"
- },
- {
- "name": "OS Town Plans, Edinburgh 1876-1877 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Edinburgh 1876-1877, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/edinburgh1876/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.24740498,
- 55.92116518
- ],
- [
- -3.24989581,
- 55.99850896
- ],
- [
- -3.13061127,
- 55.99966059
- ],
- [
- -3.12835798,
- 55.92231348
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/edinburgh1056_2.html",
- "terms_text": "National Library of Scotland - Edinburgh 1876-1877"
- },
- {
- "name": "OS Town Plans, Edinburgh 1893-1894 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Edinburgh 1893-1894, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/edinburgh1893/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.26111081,
- 55.89555387
- ],
- [
- -3.26450423,
- 55.9997912
- ],
- [
- -3.11970824,
- 56.00119128
- ],
- [
- -3.1167031,
- 55.89694851
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/edinburgh500.html",
- "terms_text": "National Library of Scotland - Edinburgh 1893-1894"
- },
- {
- "name": "OS Town Plans, Elgin 1868 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Elgin 1868, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/elgin/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.33665196,
- 57.62879017
- ],
- [
- -3.33776583,
- 57.65907381
- ],
- [
- -3.29380859,
- 57.65953111
- ],
- [
- -3.29273129,
- 57.62924695
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/elgin.html",
- "terms_text": "National Library of Scotland - Elgin 1868"
- },
- {
- "name": "OS Town Plans, Falkirk 1858-1859 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Falkirk 1858-1859, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/falkirk/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.79587441,
- 55.99343101
- ],
- [
- -3.79697783,
- 56.01720281
- ],
- [
- -3.76648151,
- 56.01764348
- ],
- [
- -3.76539679,
- 55.99387129
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/falkirk.html",
- "terms_text": "National Library of Scotland - Falkirk 1858-1859"
- },
- {
- "name": "OS Town Plans, Forfar 1860-1861 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Forfar 1860-1861, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/forfar/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -2.90326183,
- 56.6289471
- ],
- [
- -2.90378797,
- 56.65095013
- ],
- [
- -2.87228457,
- 56.65117489
- ],
- [
- -2.87177676,
- 56.62917168
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/forfar.html",
- "terms_text": "National Library of Scotland - Forfar 1860-1861"
- },
- {
- "name": "OS Town Plans, Forres 1868 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Forres 1868, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/forres/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.63516795,
- 57.58887872
- ],
- [
- -3.63647637,
- 57.618002
- ],
- [
- -3.57751453,
- 57.61875171
- ],
- [
- -3.5762532,
- 57.58962759
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/forres.html",
- "terms_text": "National Library of Scotland - Forres 1868"
- },
- {
- "name": "OS Town Plans, Galashiels 1858 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Galashiels 1858, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/galashiels/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -2.82918609,
- 55.59586303
- ],
- [
- -2.82981273,
- 55.62554026
- ],
- [
- -2.78895254,
- 55.62580992
- ],
- [
- -2.78835674,
- 55.59613239
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/galashiels.html",
- "terms_text": "National Library of Scotland - Galashiels 1858"
- },
- {
- "name": "OS Town Plans, Girvan 1857 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Girvan 1857, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/girvan/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -4.87424251,
- 55.22679729
- ],
- [
- -4.87587895,
- 55.24945946
- ],
- [
- -4.84447382,
- 55.25019598
- ],
- [
- -4.84285519,
- 55.22753318
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/girvan.html",
- "terms_text": "National Library of Scotland - Girvan 1857"
- },
- {
- "name": "OS Town Plans, Glasgow 1857-1858 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Glasgow 1857-1858, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/glasgow1857/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -4.31575491,
- 55.82072009
- ],
- [
- -4.319683,
- 55.88667625
- ],
- [
- -4.1771319,
- 55.88928081
- ],
- [
- -4.1734447,
- 55.82331825
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/glasgow_1.html",
- "terms_text": "National Library of Scotland - Glasgow 1857-1858"
- },
- {
- "name": "OS Town Plans, Glasgow 1892-1894 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Glasgow 1892-1894, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/glasgow1894/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -4.3465357,
- 55.81456228
- ],
- [
- -4.35157646,
- 55.89806268
- ],
- [
- -4.17788765,
- 55.9012587
- ],
- [
- -4.17321842,
- 55.81774834
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/glasgow_2.html",
- "terms_text": "National Library of Scotland - Glasgow 1892-1894"
- },
- {
- "name": "OS Town Plans, Greenock 1857 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Greenock 1857, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/greenock/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -4.78108857,
- 55.92617865
- ],
- [
- -4.78382957,
- 55.96437481
- ],
- [
- -4.7302257,
- 55.96557475
- ],
- [
- -4.72753731,
- 55.92737687
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/greenock.html",
- "terms_text": "National Library of Scotland - Greenock 1857"
- },
- {
- "name": "OS Town Plans, Haddington 1853 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Haddington 1853, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/haddington1853/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -2.78855542,
- 55.9451862
- ],
- [
- -2.78888196,
- 55.96124194
- ],
- [
- -2.76674325,
- 55.9613817
- ],
- [
- -2.76642588,
- 55.94532587
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/haddington_1.html",
- "terms_text": "National Library of Scotland - Haddington 1853"
- },
- {
- "name": "OS Town Plans, Haddington 1893 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Haddington 1893, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/haddington1893/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -2.80152293,
- 55.93428734
- ],
- [
- -2.80214693,
- 55.96447189
- ],
- [
- -2.76038069,
- 55.9647367
- ],
- [
- -2.75978916,
- 55.93455185
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/haddington_2.html",
- "terms_text": "National Library of Scotland - Haddington 1893"
- },
- {
- "name": "OS Town Plans, Hamilton 1858 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Hamilton 1858, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/hamilton/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -4.06721642,
- 55.74877265
- ],
- [
- -4.06924047,
- 55.78698508
- ],
- [
- -4.01679233,
- 55.78785698
- ],
- [
- -4.01481949,
- 55.74964331
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/hamilton.html",
- "terms_text": "National Library of Scotland - Hamilton 1858"
- },
- {
- "name": "OS Town Plans, Hawick 1857-1858 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Hawick 1857-1858, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/hawick/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -2.80130149,
- 55.4102516
- ],
- [
- -2.80176329,
- 55.43304638
- ],
- [
- -2.7708832,
- 55.43324489
- ],
- [
- -2.77043917,
- 55.41044995
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/hawick.html",
- "terms_text": "National Library of Scotland - Hawick 1857-1858"
- },
- {
- "name": "OS Town Plans, Inverness 1867-1868 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Inverness 1867-1868, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/inverness/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -4.25481758,
- 57.45916363
- ],
- [
- -4.25752308,
- 57.50302387
- ],
- [
- -4.19713638,
- 57.50409032
- ],
- [
- -4.1945031,
- 57.46022829
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/inverness.html",
- "terms_text": "National Library of Scotland - Inverness 1867-1868"
- },
- {
- "name": "OS Town Plans, Irvine 1859 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Irvine 1859, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/irvine/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -4.67540402,
- 55.60649957
- ],
- [
- -4.67643252,
- 55.62159024
- ],
- [
- -4.65537888,
- 55.62204812
- ],
- [
- -4.65435844,
- 55.60695719
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/irvine.html",
- "terms_text": "National Library of Scotland - Irvine 1859"
- },
- {
- "name": "OS Town Plans, Jedburgh 1858 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Jedburgh 1858, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/jedburgh/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -2.56332521,
- 55.47105448
- ],
- [
- -2.56355503,
- 55.48715562
- ],
- [
- -2.54168193,
- 55.48725438
- ],
- [
- -2.54146103,
- 55.47115318
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/jedburgh.html",
- "terms_text": "National Library of Scotland - Jedburgh 1858"
- },
- {
- "name": "OS Town Plans, Kelso 1857 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Kelso 1857, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/kelso/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -2.44924544,
- 55.58390848
- ],
- [
- -2.44949757,
- 55.6059582
- ],
- [
- -2.41902085,
- 55.60606617
- ],
- [
- -2.41878581,
- 55.58401636
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/kelso.html",
- "terms_text": "National Library of Scotland - Kelso 1857"
- },
- {
- "name": "OS Town Plans, Kilmarnock 1857-1859 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Kilmarnock 1857-1859, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/kilmarnock/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -4.51746876,
- 55.58950933
- ],
- [
- -4.5194347,
- 55.62017114
- ],
- [
- -4.47675652,
- 55.62104083
- ],
- [
- -4.4748238,
- 55.59037802
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/kilmarnock.html",
- "terms_text": "National Library of Scotland - Kilmarnock 1857-1859"
- },
- {
- "name": "OS Town Plans, Kirkcaldy 1855 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Kirkcaldy 1855, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/kirkcaldy1855/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.17455285,
- 56.09518942
- ],
- [
- -3.17554995,
- 56.12790251
- ],
- [
- -3.12991402,
- 56.12832843
- ],
- [
- -3.12895559,
- 56.09561481
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/kirkcaldy_1.html",
- "terms_text": "National Library of Scotland - Kirkcaldy 1855"
- },
- {
- "name": "OS Town Plans, Kirkcaldy 1894 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Kirkcaldy 1894, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/kirkcaldy1894/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.17460426,
- 56.09513375
- ],
- [
- -3.17560428,
- 56.12794116
- ],
- [
- -3.12989512,
- 56.12836777
- ],
- [
- -3.12893395,
- 56.09555983
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/kirkcaldy_2.html",
- "terms_text": "National Library of Scotland - Kirkcaldy 1894"
- },
- {
- "name": "OS Town Plans, Kirkcudbright 1850 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Kirkcudbright 1850, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/kirkcudbright1850/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -4.06154334,
- 54.82586314
- ],
- [
- -4.0623081,
- 54.84086061
- ],
- [
- -4.0420219,
- 54.84120364
- ],
- [
- -4.04126464,
- 54.82620598
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/kirkcudbright_1.html",
- "terms_text": "National Library of Scotland - Kirkcudbright 1850"
- },
- {
- "name": "OS Town Plans, Kirkcudbright 1893 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Kirkcudbright 1893, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/kirkcudbright1893/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -4.06001868,
- 54.82720122
- ],
- [
- -4.06079036,
- 54.84234455
- ],
- [
- -4.04025067,
- 54.84269158
- ],
- [
- -4.03948667,
- 54.82754805
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/kirkcudbright_2.html",
- "terms_text": "National Library of Scotland - Kirkcudbright 1893"
- },
- {
- "name": "OS Town Plans, Kirkintilloch 1859 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Kirkintilloch 1859, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/kirkintilloch/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -4.16664222,
- 55.93124287
- ],
- [
- -4.16748402,
- 55.94631265
- ],
- [
- -4.14637318,
- 55.94668235
- ],
- [
- -4.14553956,
- 55.93161237
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/kirkintilloch.html",
- "terms_text": "National Library of Scotland - Kirkintilloch 1859"
- },
- {
- "name": "OS Town Plans, Kirriemuir 1861 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Kirriemuir 1861, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/kirriemuir/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.01255744,
- 56.65896044
- ],
- [
- -3.01302683,
- 56.67645382
- ],
- [
- -2.98815879,
- 56.67665366
- ],
- [
- -2.98770092,
- 56.65916014
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/kirriemuir.html",
- "terms_text": "National Library of Scotland - Kirriemuir 1861"
- },
- {
- "name": "OS Town Plans, Lanark 1858 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Lanark 1858, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/lanark/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.78642584,
- 55.66308804
- ],
- [
- -3.78710605,
- 55.67800854
- ],
- [
- -3.76632876,
- 55.67830935
- ],
- [
- -3.76565645,
- 55.66338868
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/lanark.html",
- "terms_text": "National Library of Scotland - Lanark 1858"
- },
- {
- "name": "OS Town Plans, Linlithgow 1856 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Linlithgow 1856, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/linlithgow/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.61908334,
- 55.95549561
- ],
- [
- -3.62033259,
- 55.98538615
- ],
- [
- -3.57838447,
- 55.98593047
- ],
- [
- -3.57716753,
- 55.95603932
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/linlithgow.html",
- "terms_text": "National Library of Scotland - Linlithgow 1856"
- },
- {
- "name": "OS Town Plans, Mayole 1856-1857 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Mayole 1856-1857, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/maybole/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -4.69086378,
- 55.34340178
- ],
- [
- -4.6918884,
- 55.35849731
- ],
- [
- -4.67089656,
- 55.35895813
- ],
- [
- -4.6698799,
- 55.34386234
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/maybole.html",
- "terms_text": "National Library of Scotland - Mayole 1856-1857"
- },
- {
- "name": "OS Town Plans, Montrose 1861-1862 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Montrose 1861-1862, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/montrose/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -2.4859324,
- 56.69645192
- ],
- [
- -2.4862257,
- 56.71918799
- ],
- [
- -2.45405417,
- 56.71930941
- ],
- [
- -2.45378027,
- 56.69657324
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/montrose.html",
- "terms_text": "National Library of Scotland - Montrose 1861-1862"
- },
- {
- "name": "OS Town Plans, Musselburgh 1853 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Musselburgh 1853, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/musselburgh1853/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.07888558,
- 55.93371953
- ],
- [
- -3.07954151,
- 55.95729781
- ],
- [
- -3.03240684,
- 55.95770177
- ],
- [
- -3.03177952,
- 55.93412313
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/musselburgh_1.html",
- "terms_text": "National Library of Scotland - Musselburgh 1853"
- },
- {
- "name": "OS Town Plans, Musselburgh 1893 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Musselburgh 1893, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/musselburgh1893/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.07017621,
- 55.92694102
- ],
- [
- -3.07078961,
- 55.94917624
- ],
- [
- -3.03988228,
- 55.94944099
- ],
- [
- -3.03928658,
- 55.92720556
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/musselburgh_2.html",
- "terms_text": "National Library of Scotland - Musselburgh 1893"
- },
- {
- "name": "OS Town Plans, Nairn 1867-1868 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Nairn 1867-1868, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/nairn/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.88433907,
- 57.57899149
- ],
- [
- -3.88509905,
- 57.5936822
- ],
- [
- -3.85931017,
- 57.59406441
- ],
- [
- -3.85856057,
- 57.57937348
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/nairn.html",
- "terms_text": "National Library of Scotland - Nairn 1867-1868"
- },
- {
- "name": "OS Town Plans, Oban 1867-1868 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Oban 1867-1868, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/oban/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -5.49548449,
- 56.39080407
- ],
- [
- -5.49836627,
- 56.42219039
- ],
- [
- -5.45383984,
- 56.42343933
- ],
- [
- -5.45099456,
- 56.39205153
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/oban.html",
- "terms_text": "National Library of Scotland - Oban 1867-1868"
- },
- {
- "name": "OS Town Plans, Peebles 1856 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Peebles 1856, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/peebles/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.20921287,
- 55.63635834
- ],
- [
- -3.20990288,
- 55.65873817
- ],
- [
- -3.17896372,
- 55.65903935
- ],
- [
- -3.17829135,
- 55.63665927
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/peebles.html",
- "terms_text": "National Library of Scotland - Peebles 1856"
- },
- {
- "name": "OS Town Plans, Perth 1860 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Perth 1860, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/perth/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.45302495,
- 56.37794226
- ],
- [
- -3.45416664,
- 56.40789908
- ],
- [
- -3.41187528,
- 56.40838777
- ],
- [
- -3.41076676,
- 56.3784304
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/perth.html",
- "terms_text": "National Library of Scotland - Perth 1860"
- },
- {
- "name": "OS Town Plans, Peterhead 1868 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Peterhead 1868, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/peterhead/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -1.80513747,
- 57.48046916
- ],
- [
- -1.80494005,
- 57.51755411
- ],
- [
- -1.75135366,
- 57.51746003
- ],
- [
- -1.75160539,
- 57.48037522
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/peterhead",
- "terms_text": "National Library of Scotland - Peterhead 1868"
- },
- {
- "name": "OS Town Plans, Port Glasgow 1856-1857 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Port Glasgow 1856-1857, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/portglasgow/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -4.70063209,
- 55.91995983
- ],
- [
- -4.70222026,
- 55.9427679
- ],
- [
- -4.67084958,
- 55.94345237
- ],
- [
- -4.6692798,
- 55.92064372
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/port-glasgow.html",
- "terms_text": "National Library of Scotland - Port Glasgow 1856-1857"
- },
- {
- "name": "OS Town Plans, Portobello 1893-1894 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Portobello 1893-1894, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/portobello/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.12437919,
- 55.93846889
- ],
- [
- -3.1250234,
- 55.96068605
- ],
- [
- -3.09394827,
- 55.96096586
- ],
- [
- -3.09332184,
- 55.93874847
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/portobello.html",
- "terms_text": "National Library of Scotland - Portobello 1893-1894"
- },
- {
- "name": "OS Town Plans, Rothesay 1862-1863 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Rothesay 1862-1863, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/rothesay/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -5.06449893,
- 55.82864114
- ],
- [
- -5.06569719,
- 55.84385927
- ],
- [
- -5.04413114,
- 55.84439519
- ],
- [
- -5.04294127,
- 55.82917676
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/rothesay.html",
- "terms_text": "National Library of Scotland - Rothesay 1862-1863"
- },
- {
- "name": "OS Town Plans, Selkirk 1865 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Selkirk 1865, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/selkirk/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -2.85998582,
- 55.53499576
- ],
- [
- -2.86063259,
- 55.56459732
- ],
- [
- -2.82003242,
- 55.56487574
- ],
- [
- -2.81941615,
- 55.53527387
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/selkirk.html",
- "terms_text": "National Library of Scotland - Selkirk 1865"
- },
- {
- "name": "OS Town Plans, St Andrews 1854 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of St Andrews 1854, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/standrews1854/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -2.81342686,
- 56.32097352
- ],
- [
- -2.81405804,
- 56.3506222
- ],
- [
- -2.77243712,
- 56.35088865
- ],
- [
- -2.77183819,
- 56.32123967
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/st-andrews_1.html",
- "terms_text": "National Library of Scotland - St Andrews 1854"
- },
- {
- "name": "OS Town Plans, St Andrews 1893 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of St Andrews 1893, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/standrews1893/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -2.81545583,
- 56.31861733
- ],
- [
- -2.81609919,
- 56.3487653
- ],
- [
- -2.77387785,
- 56.34903619
- ],
- [
- -2.77326775,
- 56.31888792
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/st-andrews_2.html",
- "terms_text": "National Library of Scotland - St Andrews 1893"
- },
- {
- "name": "OS Town Plans, Stirling 1858 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Stirling 1858, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/stirling/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.95768489,
- 56.10754239
- ],
- [
- -3.95882978,
- 56.13007142
- ],
- [
- -3.92711024,
- 56.13057046
- ],
- [
- -3.92598386,
- 56.10804101
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/stirling.html",
- "terms_text": "National Library of Scotland - Stirling 1858"
- },
- {
- "name": "OS Town Plans, Stonehaven 1864 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Stonehaven 1864, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/stonehaven/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -2.220167,
- 56.9565098
- ],
- [
- -2.2202543,
- 56.97129283
- ],
- [
- -2.19924399,
- 56.9713281
- ],
- [
- -2.19916501,
- 56.95654504
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/stonehaven.html",
- "terms_text": "National Library of Scotland - Stonehaven 1864"
- },
- {
- "name": "OS Town Plans, Stranraer 1847 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Stranraer 1847, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/stranraer1847/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -5.04859743,
- 54.8822997
- ],
- [
- -5.0508954,
- 54.91268061
- ],
- [
- -5.0095373,
- 54.91371278
- ],
- [
- -5.00727037,
- 54.88333071
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/stranraer_1.html",
- "terms_text": "National Library of Scotland - Stranraer 1847"
- },
- {
- "name": "OS Town Plans, Stranraer 1863-1877 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Stranraer 1863-1877, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/stranraer1867/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -5.04877289,
- 54.88228699
- ],
- [
- -5.05107324,
- 54.9126976
- ],
- [
- -5.00947337,
- 54.91373582
- ],
- [
- -5.00720427,
- 54.88332405
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/stranraer_1a.html",
- "terms_text": "National Library of Scotland - Stranraer 1863-1877"
- },
- {
- "name": "OS Town Plans, Stranraer 1893 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Stranraer 1893, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/stranraer1893/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -5.04418424,
- 54.89773858
- ],
- [
- -5.04511026,
- 54.90999885
- ],
- [
- -5.0140499,
- 54.91077389
- ],
- [
- -5.0131333,
- 54.89851327
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/stranraer_2.html",
- "terms_text": "National Library of Scotland - Stranraer 1893"
- },
- {
- "name": "OS Town Plans, Strathaven 1858 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Strathaven 1858, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/strathaven/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -4.06914872,
- 55.67242091
- ],
- [
- -4.06954357,
- 55.67989707
- ],
- [
- -4.05917487,
- 55.6800715
- ],
- [
- -4.05878199,
- 55.67259529
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/strathaven.html",
- "terms_text": "National Library of Scotland - Strathaven 1858"
- },
- {
- "name": "OS Town Plans, Wick 1872 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Wick 1872, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/wick/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -3.11470001,
- 58.41344839
- ],
- [
- -3.11588837,
- 58.45101446
- ],
- [
- -3.05949843,
- 58.45149284
- ],
- [
- -3.05837008,
- 58.41392606
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/wick.html",
- "terms_text": "National Library of Scotland - Wick 1872"
- },
- {
- "name": "OS Town Plans, Wigtown 1848 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Wigtown 1848, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/wigtown1848/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -4.45235587,
- 54.8572296
- ],
- [
- -4.45327284,
- 54.87232603
- ],
- [
- -4.43254469,
- 54.87274317
- ],
- [
- -4.43163545,
- 54.85764651
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/wigtown_1.html",
- "terms_text": "National Library of Scotland - Wigtown 1848"
- },
- {
- "name": "OS Town Plans, Wigtown 1894 (NLS)",
- "type": "tms",
- "description": "Detailed town plan of Wigtown 1894, courtesy of National Library of Scotland.",
- "template": "http://geo.nls.uk/maps/towns/wigtown1894/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- -4.45233361,
- 54.85721131
- ],
- [
- -4.45325423,
- 54.87236807
- ],
- [
- -4.43257837,
- 54.87278416
- ],
- [
- -4.43166549,
- 54.85762716
- ]
- ]
- ],
- "terms_url": "http://maps.nls.uk/townplans/wigtown_2.html",
- "terms_text": "National Library of Scotland - Wigtown 1894"
- },
- {
- "name": "OpenPT Map (overlay)",
- "type": "tms",
- "template": "http://openptmap.de/tiles/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 5,
- 16
- ],
- "polygon": [
- [
- [
- 6.4901072,
- 53.665658
- ],
- [
- 8.5665347,
- 53.9848257
- ],
- [
- 8.1339457,
- 54.709715
- ],
- [
- 8.317796,
- 55.0952362
- ],
- [
- 10.1887438,
- 54.7783834
- ],
- [
- 10.6321475,
- 54.4778841
- ],
- [
- 11.2702164,
- 54.6221504
- ],
- [
- 11.681176,
- 54.3709243
- ],
- [
- 12.0272473,
- 54.3898199
- ],
- [
- 13.3250145,
- 54.8531617
- ],
- [
- 13.9198245,
- 54.6972173
- ],
- [
- 14.2118221,
- 54.1308273
- ],
- [
- 14.493005,
- 53.2665063
- ],
- [
- 14.1577485,
- 52.8766495
- ],
- [
- 14.7525584,
- 52.5819369
- ],
- [
- 15.0986297,
- 51.0171541
- ],
- [
- 14.9364088,
- 50.8399279
- ],
- [
- 14.730929,
- 50.7920977
- ],
- [
- 14.4389313,
- 50.8808862
- ],
- [
- 12.9573138,
- 50.3939044
- ],
- [
- 12.51391,
- 50.3939044
- ],
- [
- 12.3084302,
- 50.1173237
- ],
- [
- 12.6112425,
- 49.9088337
- ],
- [
- 12.394948,
- 49.7344006
- ],
- [
- 12.7734634,
- 49.4047626
- ],
- [
- 14.1469337,
- 48.6031036
- ],
- [
- 14.6768553,
- 48.6531391
- ],
- [
- 15.0661855,
- 49.0445497
- ],
- [
- 16.2666202,
- 48.7459305
- ],
- [
- 16.4937294,
- 48.8741286
- ],
- [
- 16.904689,
- 48.7173975
- ],
- [
- 16.9371332,
- 48.5315383
- ],
- [
- 16.8384693,
- 48.3823161
- ],
- [
- 17.2017097,
- 48.010204
- ],
- [
- 17.1214145,
- 47.6997605
- ],
- [
- 16.777292,
- 47.6585709
- ],
- [
- 16.6090543,
- 47.7460598
- ],
- [
- 16.410228,
- 47.6637214
- ],
- [
- 16.7352326,
- 47.6147714
- ],
- [
- 16.5555242,
- 47.3589738
- ],
- [
- 16.4790525,
- 46.9768539
- ],
- [
- 16.0355168,
- 46.8096295
- ],
- [
- 16.0508112,
- 46.6366332
- ],
- [
- 14.9572663,
- 46.6313822
- ],
- [
- 14.574908,
- 46.3892866
- ],
- [
- 12.3954655,
- 46.6891149
- ],
- [
- 12.1507562,
- 47.0550608
- ],
- [
- 11.1183887,
- 46.9142058
- ],
- [
- 11.0342699,
- 46.7729797
- ],
- [
- 10.4836739,
- 46.8462544
- ],
- [
- 10.4607324,
- 46.5472973
- ],
- [
- 10.1013156,
- 46.5735879
- ],
- [
- 10.2007287,
- 46.1831867
- ],
- [
- 9.8948421,
- 46.3629068
- ],
- [
- 9.5966026,
- 46.2889758
- ],
- [
- 9.2983631,
- 46.505206
- ],
- [
- 9.2830687,
- 46.2572605
- ],
- [
- 9.0536537,
- 45.7953255
- ],
- [
- 8.4265861,
- 46.2466846
- ],
- [
- 8.4418804,
- 46.4736161
- ],
- [
- 7.8759901,
- 45.9284607
- ],
- [
- 7.0959791,
- 45.8645956
- ],
- [
- 6.7747981,
- 46.1620044
- ],
- [
- 6.8206811,
- 46.4051083
- ],
- [
- 6.5453831,
- 46.4578142
- ],
- [
- 6.3312624,
- 46.3840116
- ],
- [
- 6.3847926,
- 46.2466846
- ],
- [
- 5.8953739,
- 46.0878021
- ],
- [
- 6.1171418,
- 46.3681838
- ],
- [
- 6.0942003,
- 46.5998657
- ],
- [
- 6.4383228,
- 46.7782169
- ],
- [
- 6.4306756,
- 46.9298747
- ],
- [
- 7.0806847,
- 47.3460216
- ],
- [
- 6.8436226,
- 47.3719227
- ],
- [
- 6.9965659,
- 47.5012373
- ],
- [
- 7.1800979,
- 47.5064033
- ],
- [
- 7.2336281,
- 47.439206
- ],
- [
- 7.4553959,
- 47.4805683
- ],
- [
- 7.7842241,
- 48.645735
- ],
- [
- 8.1971711,
- 49.0282701
- ],
- [
- 7.6006921,
- 49.0382974
- ],
- [
- 7.4477487,
- 49.1634679
- ],
- [
- 7.2030394,
- 49.1034255
- ],
- [
- 6.6677378,
- 49.1634679
- ],
- [
- 6.6371491,
- 49.3331933
- ],
- [
- 6.3542039,
- 49.4576194
- ],
- [
- 6.5453831,
- 49.8043366
- ],
- [
- 6.2471436,
- 49.873384
- ],
- [
- 6.0789059,
- 50.1534883
- ],
- [
- 6.3618511,
- 50.3685934
- ],
- [
- 6.0865531,
- 50.7039632
- ],
- [
- 5.8800796,
- 51.0513752
- ],
- [
- 6.1247889,
- 51.1618085
- ],
- [
- 6.1936134,
- 51.491527
- ],
- [
- 5.9641984,
- 51.7526501
- ],
- [
- 6.0253758,
- 51.8897286
- ],
- [
- 6.4536171,
- 51.8661241
- ],
- [
- 6.8436226,
- 51.9557552
- ],
- [
- 6.6906793,
- 52.0499105
- ],
- [
- 7.0042131,
- 52.2282603
- ],
- [
- 7.0195074,
- 52.4525245
- ],
- [
- 6.6983264,
- 52.4665032
- ],
- [
- 6.6906793,
- 52.6524628
- ],
- [
- 7.0348017,
- 52.6385432
- ],
- [
- 7.0730376,
- 52.8330151
- ],
- [
- 7.2183337,
- 52.9852064
- ],
- [
- 7.1953922,
- 53.3428087
- ],
- [
- 7.0042131,
- 53.3291098
- ]
- ]
- ],
- "terms_url": "http://openstreetmap.org/",
- "terms_text": "© OpenStreetMap contributors, CC-BY-SA"
- },
- {
- "name": "OpenStreetMap (Mapnik)",
- "type": "tms",
- "description": "The default OpenStreetMap layer.",
- "template": "http://tile.openstreetmap.org/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 19
- ],
- "terms_url": "http://openstreetmap.org/",
- "terms_text": "© OpenStreetMap contributors, CC-BY-SA",
- "id": "MAPNIK",
- "default": true
- },
- {
- "name": "OpenStreetMap GPS traces",
- "type": "tms",
- "description": "Public GPS traces uploaded to OpenStreetMap.",
- "template": "http://{switch:a,b,c}.gps-tile.openstreetmap.org/lines/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 20
- ],
- "terms_url": "http://www.openstreetmap.org/copyright",
- "terms_text": "© OpenStreetMap contributors",
- "terms_html": "© <a href='http://www.openstreetmap.org/copyright'>OpenStreetMap contributors</a>. North: <span style='display: inline-block; width: 10px; height: 10px; background-color: #7fed11;'></span> South: <span style='display: inline-block; width: 10px; height: 10px; background-color: #7f11ed;'></span> East: <span style='display: inline-block; width: 10px; height: 10px; background-color: #ff3f3f;'></span> West: <span style='display: inline-block; width: 10px; height: 10px; background-color: #00bfbf;'></span>",
- "overlay": true
- },
- {
- "name": "Pangasinán/Bulacan (Phillipines HiRes)",
- "type": "tms",
- "template": "http://gravitystorm.dev.openstreetmap.org/imagery/philippines/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 12,
- 19
- ],
- "polygon": [
- [
- [
- 120.336593,
- 15.985768
- ],
- [
- 120.445995,
- 15.984
- ],
- [
- 120.446134,
- 15.974459
- ],
- [
- 120.476464,
- 15.974592
- ],
- [
- 120.594247,
- 15.946832
- ],
- [
- 120.598064,
- 16.090795
- ],
- [
- 120.596537,
- 16.197999
- ],
- [
- 120.368537,
- 16.218527
- ],
- [
- 120.347576,
- 16.042308
- ],
- [
- 120.336593,
- 15.985768
- ]
- ],
- [
- [
- 120.8268,
- 15.3658
- ],
- [
- 121.2684,
- 15.2602
- ],
- [
- 121.2699,
- 14.7025
- ],
- [
- 120.695,
- 14.8423
- ]
- ]
- ]
- },
- {
- "name": "Slovakia EEA CORINE 2006",
- "type": "tms",
- "template": "http://www.freemap.sk/tms/clc/{zoom}/{x}/{y}.png",
- "polygon": [
- [
- [
- 19.83682,
- 49.25529
- ],
- [
- 19.80075,
- 49.42385
- ],
- [
- 19.60437,
- 49.48058
- ],
- [
- 19.49179,
- 49.63961
- ],
- [
- 19.21831,
- 49.52604
- ],
- [
- 19.16778,
- 49.42521
- ],
- [
- 19.00308,
- 49.42236
- ],
- [
- 18.97611,
- 49.5308
- ],
- [
- 18.54685,
- 49.51425
- ],
- [
- 18.31432,
- 49.33818
- ],
- [
- 18.15913,
- 49.2961
- ],
- [
- 18.05564,
- 49.11134
- ],
- [
- 17.56396,
- 48.84938
- ],
- [
- 17.17929,
- 48.88816
- ],
- [
- 17.058,
- 48.81105
- ],
- [
- 16.90426,
- 48.61947
- ],
- [
- 16.79685,
- 48.38561
- ],
- [
- 17.06762,
- 48.01116
- ],
- [
- 17.32787,
- 47.97749
- ],
- [
- 17.51699,
- 47.82535
- ],
- [
- 17.74776,
- 47.73093
- ],
- [
- 18.29515,
- 47.72075
- ],
- [
- 18.67959,
- 47.75541
- ],
- [
- 18.89755,
- 47.81203
- ],
- [
- 18.79463,
- 47.88245
- ],
- [
- 18.84318,
- 48.04046
- ],
- [
- 19.46212,
- 48.05333
- ],
- [
- 19.62064,
- 48.22938
- ],
- [
- 19.89585,
- 48.09387
- ],
- [
- 20.33766,
- 48.2643
- ],
- [
- 20.55395,
- 48.52358
- ],
- [
- 20.82335,
- 48.55714
- ],
- [
- 21.10271,
- 48.47096
- ],
- [
- 21.45863,
- 48.55513
- ],
- [
- 21.74536,
- 48.31435
- ],
- [
- 22.15293,
- 48.37179
- ],
- [
- 22.61255,
- 49.08914
- ],
- [
- 22.09997,
- 49.23814
- ],
- [
- 21.9686,
- 49.36363
- ],
- [
- 21.6244,
- 49.46989
- ],
- [
- 21.06873,
- 49.46402
- ],
- [
- 20.94336,
- 49.31088
- ],
- [
- 20.73052,
- 49.44006
- ],
- [
- 20.22804,
- 49.41714
- ],
- [
- 20.05234,
- 49.23052
- ],
- [
- 19.83682,
- 49.25529
- ]
- ]
- ],
- "terms_url": "http://www.eea.europa.eu/data-and-maps/data/clc-2006-vector-data-version-1",
- "terms_text": "EEA Corine 2006"
- },
- {
- "name": "Slovakia EEA GMES Urban Atlas",
- "type": "tms",
- "template": "http://www.freemap.sk/tms/urbanatlas/{zoom}/{x}/{y}.png",
- "polygon": [
- [
- [
- 19.83682,
- 49.25529
- ],
- [
- 19.80075,
- 49.42385
- ],
- [
- 19.60437,
- 49.48058
- ],
- [
- 19.49179,
- 49.63961
- ],
- [
- 19.21831,
- 49.52604
- ],
- [
- 19.16778,
- 49.42521
- ],
- [
- 19.00308,
- 49.42236
- ],
- [
- 18.97611,
- 49.5308
- ],
- [
- 18.54685,
- 49.51425
- ],
- [
- 18.31432,
- 49.33818
- ],
- [
- 18.15913,
- 49.2961
- ],
- [
- 18.05564,
- 49.11134
- ],
- [
- 17.56396,
- 48.84938
- ],
- [
- 17.17929,
- 48.88816
- ],
- [
- 17.058,
- 48.81105
- ],
- [
- 16.90426,
- 48.61947
- ],
- [
- 16.79685,
- 48.38561
- ],
- [
- 17.06762,
- 48.01116
- ],
- [
- 17.32787,
- 47.97749
- ],
- [
- 17.51699,
- 47.82535
- ],
- [
- 17.74776,
- 47.73093
- ],
- [
- 18.29515,
- 47.72075
- ],
- [
- 18.67959,
- 47.75541
- ],
- [
- 18.89755,
- 47.81203
- ],
- [
- 18.79463,
- 47.88245
- ],
- [
- 18.84318,
- 48.04046
- ],
- [
- 19.46212,
- 48.05333
- ],
- [
- 19.62064,
- 48.22938
- ],
- [
- 19.89585,
- 48.09387
- ],
- [
- 20.33766,
- 48.2643
- ],
- [
- 20.55395,
- 48.52358
- ],
- [
- 20.82335,
- 48.55714
- ],
- [
- 21.10271,
- 48.47096
- ],
- [
- 21.45863,
- 48.55513
- ],
- [
- 21.74536,
- 48.31435
- ],
- [
- 22.15293,
- 48.37179
- ],
- [
- 22.61255,
- 49.08914
- ],
- [
- 22.09997,
- 49.23814
- ],
- [
- 21.9686,
- 49.36363
- ],
- [
- 21.6244,
- 49.46989
- ],
- [
- 21.06873,
- 49.46402
- ],
- [
- 20.94336,
- 49.31088
- ],
- [
- 20.73052,
- 49.44006
- ],
- [
- 20.22804,
- 49.41714
- ],
- [
- 20.05234,
- 49.23052
- ],
- [
- 19.83682,
- 49.25529
- ]
- ]
- ],
- "terms_url": "http://www.eea.europa.eu/data-and-maps/data/urban-atlas",
- "terms_text": "EEA GMES Urban Atlas"
- },
- {
- "name": "Slovakia Historic Maps",
- "type": "tms",
- "template": "http://tms.freemap.sk/historicke/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 12
- ],
- "polygon": [
- [
- [
- 16.8196949,
- 47.4927236
- ],
- [
- 16.8196949,
- 49.5030322
- ],
- [
- 22.8388318,
- 49.5030322
- ],
- [
- 22.8388318,
- 47.4927236
- ],
- [
- 16.8196949,
- 47.4927236
- ]
- ]
- ]
- },
- {
- "name": "South Africa CD:NGI Aerial",
- "type": "tms",
- "template": "http://{switch:a,b,c}.aerial.openstreetmap.org.za/ngi-aerial/{zoom}/{x}/{y}.jpg",
- "scaleExtent": [
- 1,
- 22
- ],
- "polygon": [
- [
- [
- 17.8396817,
- -32.7983384
- ],
- [
- 17.8893509,
- -32.6972835
- ],
- [
- 18.00364,
- -32.6982187
- ],
- [
- 18.0991679,
- -32.7485251
- ],
- [
- 18.2898747,
- -32.5526645
- ],
- [
- 18.2930182,
- -32.0487089
- ],
- [
- 18.105455,
- -31.6454966
- ],
- [
- 17.8529257,
- -31.3443951
- ],
- [
- 17.5480046,
- -30.902171
- ],
- [
- 17.4044506,
- -30.6374731
- ],
- [
- 17.2493704,
- -30.3991663
- ],
- [
- 16.9936977,
- -29.6543552
- ],
- [
- 16.7987996,
- -29.19437
- ],
- [
- 16.5494139,
- -28.8415949
- ],
- [
- 16.4498691,
- -28.691876
- ],
- [
- 16.4491046,
- -28.5515766
- ],
- [
- 16.6002551,
- -28.4825663
- ],
- [
- 16.7514057,
- -28.4486958
- ],
- [
- 16.7462192,
- -28.2458973
- ],
- [
- 16.8855148,
- -28.04729
- ],
- [
- 16.9929502,
- -28.0244005
- ],
- [
- 17.0529659,
- -28.0257086
- ],
- [
- 17.1007562,
- -28.0338839
- ],
- [
- 17.2011527,
- -28.0930546
- ],
- [
- 17.2026346,
- -28.2328424
- ],
- [
- 17.2474611,
- -28.2338215
- ],
- [
- 17.2507953,
- -28.198892
- ],
- [
- 17.3511919,
- -28.1975861
- ],
- [
- 17.3515624,
- -28.2442655
- ],
- [
- 17.4015754,
- -28.2452446
- ],
- [
- 17.4149122,
- -28.3489751
- ],
- [
- 17.4008345,
- -28.547997
- ],
- [
- 17.4526999,
- -28.5489733
- ],
- [
- 17.4512071,
- -28.6495106
- ],
- [
- 17.4983599,
- -28.6872054
- ],
- [
- 17.6028204,
- -28.6830048
- ],
- [
- 17.6499732,
- -28.6967928
- ],
- [
- 17.6525928,
- -28.7381457
- ],
- [
- 17.801386,
- -28.7381457
- ],
- [
- 17.9994276,
- -28.7560602
- ],
- [
- 18.0002748,
- -28.7956172
- ],
- [
- 18.1574507,
- -28.8718055
- ],
- [
- 18.5063811,
- -28.8718055
- ],
- [
- 18.6153564,
- -28.8295875
- ],
- [
- 18.9087513,
- -28.8277516
- ],
- [
- 19.1046973,
- -28.9488548
- ],
- [
- 19.1969071,
- -28.9378513
- ],
- [
- 19.243012,
- -28.8516164
- ],
- [
- 19.2314858,
- -28.802963
- ],
- [
- 19.2587296,
- -28.7009928
- ],
- [
- 19.4431493,
- -28.6973163
- ],
- [
- 19.5500289,
- -28.4958332
- ],
- [
- 19.6967264,
- -28.4939914
- ],
- [
- 19.698822,
- -28.4479358
- ],
- [
- 19.8507587,
- -28.4433291
- ],
- [
- 19.8497109,
- -28.4027818
- ],
- [
- 19.9953605,
- -28.399095
- ],
- [
- 19.9893671,
- -24.7497859
- ],
- [
- 20.2916682,
- -24.9192346
- ],
- [
- 20.4724562,
- -25.1501701
- ],
- [
- 20.6532441,
- -25.4529449
- ],
- [
- 20.733265,
- -25.6801957
- ],
- [
- 20.8281046,
- -25.8963498
- ],
- [
- 20.8429232,
- -26.215851
- ],
- [
- 20.6502804,
- -26.4840868
- ],
- [
- 20.6532441,
- -26.8204869
- ],
- [
- 21.0889134,
- -26.846933
- ],
- [
- 21.6727695,
- -26.8389998
- ],
- [
- 21.7765003,
- -26.6696268
- ],
- [
- 21.9721069,
- -26.6431395
- ],
- [
- 22.2803355,
- -26.3274702
- ],
- [
- 22.5707817,
- -26.1333967
- ],
- [
- 22.7752795,
- -25.6775246
- ],
- [
- 23.0005235,
- -25.2761948
- ],
- [
- 23.4658301,
- -25.2735148
- ],
- [
- 23.883717,
- -25.597366
- ],
- [
- 24.2364017,
- -25.613402
- ],
- [
- 24.603905,
- -25.7896563
- ],
- [
- 25.110704,
- -25.7389432
- ],
- [
- 25.5078447,
- -25.6855376
- ],
- [
- 25.6441766,
- -25.4823781
- ],
- [
- 25.8419267,
- -24.7805437
- ],
- [
- 25.846641,
- -24.7538456
- ],
- [
- 26.3928487,
- -24.6332894
- ],
- [
- 26.4739066,
- -24.5653312
- ],
- [
- 26.5089966,
- -24.4842437
- ],
- [
- 26.5861946,
- -24.4075775
- ],
- [
- 26.7300635,
- -24.3014458
- ],
- [
- 26.8567384,
- -24.2499463
- ],
- [
- 26.8574402,
- -24.1026901
- ],
- [
- 26.9215471,
- -23.8990957
- ],
- [
- 26.931831,
- -23.8461891
- ],
- [
- 26.9714827,
- -23.6994344
- ],
- [
- 27.0006074,
- -23.6367644
- ],
- [
- 27.0578041,
- -23.6052574
- ],
- [
- 27.1360547,
- -23.5203437
- ],
- [
- 27.3339623,
- -23.3973792
- ],
- [
- 27.5144057,
- -23.3593929
- ],
- [
- 27.5958145,
- -23.2085465
- ],
- [
- 27.8098634,
- -23.0994957
- ],
- [
- 27.8828506,
- -23.0620496
- ],
- [
- 27.9382928,
- -22.9496487
- ],
- [
- 28.0407556,
- -22.8255118
- ],
- [
- 28.2056786,
- -22.6552861
- ],
- [
- 28.3397223,
- -22.5639374
- ],
- [
- 28.4906093,
- -22.560697
- ],
- [
- 28.6108769,
- -22.5400248
- ],
- [
- 28.828175,
- -22.4550173
- ],
- [
- 28.9285324,
- -22.4232328
- ],
- [
- 28.9594116,
- -22.3090081
- ],
- [
- 29.0162574,
- -22.208335
- ],
- [
- 29.2324117,
- -22.1693453
- ],
- [
- 29.3531213,
- -22.1842926
- ],
- [
- 29.6548952,
- -22.1186426
- ],
- [
- 29.7777102,
- -22.1361956
- ],
- [
- 29.9292989,
- -22.1849425
- ],
- [
- 30.1166795,
- -22.2830348
- ],
- [
- 30.2563377,
- -22.2914767
- ],
- [
- 30.3033582,
- -22.3395204
- ],
- [
- 30.5061784,
- -22.3057617
- ],
- [
- 30.8374279,
- -22.284983
- ],
- [
- 31.0058599,
- -22.3077095
- ],
- [
- 31.1834152,
- -22.3232913
- ],
- [
- 31.2930586,
- -22.3674647
- ],
- [
- 31.5680579,
- -23.1903385
- ],
- [
- 31.5568311,
- -23.4430809
- ],
- [
- 31.6931122,
- -23.6175209
- ],
- [
- 31.7119696,
- -23.741136
- ],
- [
- 31.7774743,
- -23.8800628
- ],
- [
- 31.8886337,
- -23.9481098
- ],
- [
- 31.9144386,
- -24.1746736
- ],
- [
- 31.9948307,
- -24.3040878
- ],
- [
- 32.0166656,
- -24.4405988
- ],
- [
- 32.0077331,
- -24.6536578
- ],
- [
- 32.019643,
- -24.9140701
- ],
- [
- 32.035523,
- -25.0849767
- ],
- [
- 32.019643,
- -25.3821442
- ],
- [
- 31.9928457,
- -25.4493771
- ],
- [
- 31.9997931,
- -25.5165725
- ],
- [
- 32.0057481,
- -25.6078978
- ],
- [
- 32.0057481,
- -25.6624806
- ],
- [
- 31.9362735,
- -25.8403721
- ],
- [
- 31.9809357,
- -25.9546537
- ],
- [
- 31.8687838,
- -26.0037251
- ],
- [
- 31.4162062,
- -25.7277683
- ],
- [
- 31.3229117,
- -25.7438611
- ],
- [
- 31.2504595,
- -25.8296526
- ],
- [
- 31.1393001,
- -25.9162746
- ],
- [
- 31.1164727,
- -25.9912361
- ],
- [
- 30.9656135,
- -26.2665756
- ],
- [
- 30.8921689,
- -26.3279703
- ],
- [
- 30.8534616,
- -26.4035568
- ],
- [
- 30.8226943,
- -26.4488849
- ],
- [
- 30.8022583,
- -26.5240694
- ],
- [
- 30.8038369,
- -26.8082089
- ],
- [
- 30.9020939,
- -26.7807451
- ],
- [
- 30.9100338,
- -26.8489495
- ],
- [
- 30.9824859,
- -26.9082627
- ],
- [
- 30.976531,
- -27.0029222
- ],
- [
- 31.0034434,
- -27.0441587
- ],
- [
- 31.1543322,
- -27.1980416
- ],
- [
- 31.5015607,
- -27.311117
- ],
- [
- 31.9700183,
- -27.311117
- ],
- [
- 31.9700183,
- -27.120472
- ],
- [
- 31.9769658,
- -27.050664
- ],
- [
- 32.0002464,
- -26.7983892
- ],
- [
- 32.1069826,
- -26.7984645
- ],
- [
- 32.3114546,
- -26.8479493
- ],
- [
- 32.899986,
- -26.8516059
- ],
- [
- 32.886091,
- -26.9816971
- ],
- [
- 32.709427,
- -27.4785436
- ],
- [
- 32.6240724,
- -27.7775144
- ],
- [
- 32.5813951,
- -28.07479
- ],
- [
- 32.5387178,
- -28.2288046
- ],
- [
- 32.4275584,
- -28.5021568
- ],
- [
- 32.3640388,
- -28.5945699
- ],
- [
- 32.0702603,
- -28.8469827
- ],
- [
- 31.9878832,
- -28.9069497
- ],
- [
- 31.7764818,
- -28.969487
- ],
- [
- 31.4638459,
- -29.2859343
- ],
- [
- 31.359634,
- -29.3854348
- ],
- [
- 31.1680825,
- -29.6307408
- ],
- [
- 31.064863,
- -29.7893535
- ],
- [
- 31.0534493,
- -29.8470469
- ],
- [
- 31.0669933,
- -29.8640319
- ],
- [
- 31.0455459,
- -29.9502017
- ],
- [
- 30.9518556,
- -30.0033946
- ],
- [
- 30.8651833,
- -30.1024093
- ],
- [
- 30.7244725,
- -30.392502
- ],
- [
- 30.3556256,
- -30.9308873
- ],
- [
- 30.0972364,
- -31.2458274
- ],
- [
- 29.8673136,
- -31.4304296
- ],
- [
- 29.7409393,
- -31.5014699
- ],
- [
- 29.481312,
- -31.6978686
- ],
- [
- 28.8943171,
- -32.2898903
- ],
- [
- 28.5497137,
- -32.5894641
- ],
- [
- 28.1436499,
- -32.8320732
- ],
- [
- 28.0748735,
- -32.941689
- ],
- [
- 27.8450942,
- -33.082869
- ],
- [
- 27.3757956,
- -33.3860685
- ],
- [
- 26.8805407,
- -33.6458951
- ],
- [
- 26.5916871,
- -33.7480756
- ],
- [
- 26.4527308,
- -33.7935795
- ],
- [
- 26.206754,
- -33.7548943
- ],
- [
- 26.0077897,
- -33.7223961
- ],
- [
- 25.8055494,
- -33.7524272
- ],
- [
- 25.7511073,
- -33.8006512
- ],
- [
- 25.6529079,
- -33.8543597
- ],
- [
- 25.6529079,
- -33.9469768
- ],
- [
- 25.7195789,
- -34.0040115
- ],
- [
- 25.7202807,
- -34.0511235
- ],
- [
- 25.5508915,
- -34.063151
- ],
- [
- 25.3504571,
- -34.0502627
- ],
- [
- 25.2810609,
- -34.0020322
- ],
- [
- 25.0476316,
- -33.9994588
- ],
- [
- 24.954724,
- -34.0043594
- ],
- [
- 24.9496586,
- -34.1010363
- ],
- [
- 24.8770358,
- -34.1506456
- ],
- [
- 24.8762914,
- -34.2005281
- ],
- [
- 24.8532574,
- -34.2189562
- ],
- [
- 24.7645287,
- -34.2017946
- ],
- [
- 24.5001356,
- -34.2003254
- ],
- [
- 24.3486733,
- -34.1163824
- ],
- [
- 24.1988819,
- -34.1019039
- ],
- [
- 23.9963377,
- -34.0514443
- ],
- [
- 23.8017509,
- -34.0524332
- ],
- [
- 23.7493589,
- -34.0111855
- ],
- [
- 23.4973536,
- -34.009014
- ],
- [
- 23.4155191,
- -34.0434586
- ],
- [
- 23.4154284,
- -34.1140433
- ],
- [
- 22.9000853,
- -34.0993009
- ],
- [
- 22.8412418,
- -34.0547911
- ],
- [
- 22.6470321,
- -34.0502627
- ],
- [
- 22.6459843,
- -34.0072768
- ],
- [
- 22.570016,
- -34.0064081
- ],
- [
- 22.5050499,
- -34.0645866
- ],
- [
- 22.2519968,
- -34.0645866
- ],
- [
- 22.2221334,
- -34.1014701
- ],
- [
- 22.1621197,
- -34.1057019
- ],
- [
- 22.1712431,
- -34.1521766
- ],
- [
- 22.1576913,
- -34.2180897
- ],
- [
- 22.0015632,
- -34.2172232
- ],
- [
- 21.9496952,
- -34.3220009
- ],
- [
- 21.8611528,
- -34.4007145
- ],
- [
- 21.5614708,
- -34.4020114
- ],
- [
- 21.5468011,
- -34.3661242
- ],
- [
- 21.501744,
- -34.3669892
- ],
- [
- 21.5006961,
- -34.4020114
- ],
- [
- 21.4194886,
- -34.4465247
- ],
- [
- 21.1978706,
- -34.4478208
- ],
- [
- 21.0988193,
- -34.3991325
- ],
- [
- 21.0033746,
- -34.3753872
- ],
- [
- 20.893192,
- -34.3997115
- ],
- [
- 20.8976647,
- -34.4854003
- ],
- [
- 20.7446802,
- -34.4828092
- ],
- [
- 20.5042011,
- -34.486264
- ],
- [
- 20.2527197,
- -34.701477
- ],
- [
- 20.0803502,
- -34.8361855
- ],
- [
- 19.9923317,
- -34.8379056
- ],
- [
- 19.899074,
- -34.8275845
- ],
- [
- 19.8938348,
- -34.7936018
- ],
- [
- 19.5972963,
- -34.7961833
- ],
- [
- 19.3929677,
- -34.642015
- ],
- [
- 19.2877095,
- -34.6404784
- ],
- [
- 19.2861377,
- -34.5986563
- ],
- [
- 19.3474363,
- -34.5244458
- ],
- [
- 19.3285256,
- -34.4534372
- ],
- [
- 19.098001,
- -34.449981
- ],
- [
- 19.0725583,
- -34.3802371
- ],
- [
- 19.0023531,
- -34.3525593
- ],
- [
- 18.9520568,
- -34.3949373
- ],
- [
- 18.7975006,
- -34.3936403
- ],
- [
- 18.7984174,
- -34.1016376
- ],
- [
- 18.501748,
- -34.1015292
- ],
- [
- 18.4999545,
- -34.3616945
- ],
- [
- 18.4477325,
- -34.3620007
- ],
- [
- 18.4479944,
- -34.3522691
- ],
- [
- 18.3974362,
- -34.3514041
- ],
- [
- 18.3971742,
- -34.3022959
- ],
- [
- 18.3565705,
- -34.3005647
- ],
- [
- 18.3479258,
- -34.2020436
- ],
- [
- 18.2972095,
- -34.1950274
- ],
- [
- 18.2951139,
- -33.9937138
- ],
- [
- 18.3374474,
- -33.9914079
- ],
- [
- 18.3476638,
- -33.8492427
- ],
- [
- 18.3479258,
- -33.781555
- ],
- [
- 18.4124718,
- -33.7448849
- ],
- [
- 18.3615477,
- -33.6501624
- ],
- [
- 18.2992013,
- -33.585591
- ],
- [
- 18.2166839,
- -33.448872
- ],
- [
- 18.1389858,
- -33.3974083
- ],
- [
- 17.9473472,
- -33.1602647
- ],
- [
- 17.8855247,
- -33.0575732
- ],
- [
- 17.8485884,
- -32.9668505
- ],
- [
- 17.8396817,
- -32.8507302
- ]
- ]
- ]
- },
- {
- "name": "South Tyrol Orthofoto 2011",
- "type": "tms",
- "template": "http://sdi.provincia.bz.it/geoserver/gwc/service/tms/1.0.0/WMTS_OF2011_APB-PAB@GoogleMapsCompatible@png8/{z}/{x}/{-y}.png",
- "polygon": [
- [
- [
- 10.373383,
- 46.213553
- ],
- [
- 10.373383,
- 47.098175
- ],
- [
- 12.482758,
- 47.098175
- ],
- [
- 12.482758,
- 46.213553
- ],
- [
- 10.373383,
- 46.213553
- ]
- ]
- ],
- "id": "sdi.provinz.bz.it-WMTS_OF2011_APB-PAB"
- },
- {
- "name": "South Tyrol Topomap",
- "type": "tms",
- "template": "http://sdi.provincia.bz.it/geoserver/gwc/service/tms/1.0.0/WMTS_TOPOMAP_APB-PAB@GoogleMapsCompatible@png8/{z}/{x}/{-y}.png",
- "polygon": [
- [
- [
- 10.373383,
- 46.213553
- ],
- [
- 10.373383,
- 47.098175
- ],
- [
- 12.482758,
- 47.098175
- ],
- [
- 12.482758,
- 46.213553
- ],
- [
- 10.373383,
- 46.213553
- ]
- ]
- ],
- "id": "sdi.provinz.bz.it-WMTS_TOPOMAP_APB-PAB"
- },
- {
- "name": "Stadt Uster Orthophoto 2008 10cm",
- "type": "tms",
- "template": "http://mapproxy.sosm.ch:8080/tiles/uster/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
- "polygon": [
- [
- [
- 8.6,
- 47.31
- ],
- [
- 8.6,
- 47.39
- ],
- [
- 8.77,
- 47.39
- ],
- [
- 8.77,
- 47.31
- ],
- [
- 8.6,
- 47.31
- ]
- ]
- ],
- "terms_text": "Stadt Uster Vermessung Orthophoto 2008"
- },
- {
- "name": "Stevns (Denmark)",
- "type": "tms",
- "template": "http://{switch:a,b,c}.tile.openstreetmap.dk/stevns/2009/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- 12.0913942,
- 55.3491574
- ],
- [
- 12.0943104,
- 55.3842256
- ],
- [
- 12.1573875,
- 55.3833103
- ],
- [
- 12.1587287,
- 55.4013326
- ],
- [
- 12.1903468,
- 55.400558
- ],
- [
- 12.1931411,
- 55.4364665
- ],
- [
- 12.2564251,
- 55.4347995
- ],
- [
- 12.2547073,
- 55.4168882
- ],
- [
- 12.3822489,
- 55.4134349
- ],
- [
- 12.3795942,
- 55.3954143
- ],
- [
- 12.4109213,
- 55.3946958
- ],
- [
- 12.409403,
- 55.3766417
- ],
- [
- 12.4407807,
- 55.375779
- ],
- [
- 12.4394142,
- 55.3578314
- ],
- [
- 12.4707413,
- 55.3569971
- ],
- [
- 12.4629475,
- 55.2672214
- ],
- [
- 12.4315633,
- 55.2681491
- ],
- [
- 12.430045,
- 55.2502103
- ],
- [
- 12.3672011,
- 55.2519673
- ],
- [
- 12.3656858,
- 55.2340267
- ],
- [
- 12.2714604,
- 55.2366031
- ],
- [
- 12.2744467,
- 55.272476
- ],
- [
- 12.2115654,
- 55.2741475
- ],
- [
- 12.2130078,
- 55.2920322
- ],
- [
- 12.1815665,
- 55.2928638
- ],
- [
- 12.183141,
- 55.3107091
- ],
- [
- 12.2144897,
- 55.3100981
- ],
- [
- 12.2159927,
- 55.3279764
- ],
- [
- 12.1214458,
- 55.3303379
- ],
- [
- 12.1229489,
- 55.3483291
- ]
- ]
- ],
- "terms_text": "Stevns Kommune"
- },
- {
- "name": "Surrey Air Survey",
- "type": "tms",
- "template": "http://gravitystorm.dev.openstreetmap.org/surrey/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 8,
- 19
- ],
- "polygon": [
- [
- [
- -0.752478,
- 51.0821941
- ],
- [
- -0.7595183,
- 51.0856254
- ],
- [
- -0.8014342,
- 51.1457917
- ],
- [
- -0.8398864,
- 51.1440686
- ],
- [
- -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
- ]
- ]
- ]
- },
- {
- "name": "Toulouse - Orthophotoplan 2007",
- "type": "tms",
- "template": "http://wms.openstreetmap.fr/tms/1.0.0/toulouse_ortho2007/{zoom}/{x}/{y}",
- "scaleExtent": [
- 0,
- 22
- ],
- "polygon": [
- [
- [
- 1.1919978,
- 43.6328791
- ],
- [
- 1.2015377,
- 43.6329729
- ],
- [
- 1.2011107,
- 43.6554932
- ],
- [
- 1.2227985,
- 43.6557029
- ],
- [
- 1.2226231,
- 43.6653353
- ],
- [
- 1.2275341,
- 43.6653849
- ],
- [
- 1.2275417,
- 43.6656387
- ],
- [
- 1.2337568,
- 43.6656883
- ],
- [
- 1.2337644,
- 43.6650153
- ],
- [
- 1.2351218,
- 43.6650319
- ],
- [
- 1.2350913,
- 43.6670729
- ],
- [
- 1.2443566,
- 43.6671556
- ],
- [
- 1.2441584,
- 43.6743925
- ],
- [
- 1.2493973,
- 43.6744256
- ],
- [
- 1.2493973,
- 43.6746628
- ],
- [
- 1.2555666,
- 43.6747234
- ],
- [
- 1.2555742,
- 43.6744532
- ],
- [
- 1.2569545,
- 43.6744697
- ],
- [
- 1.2568782,
- 43.678529
- ],
- [
- 1.2874873,
- 43.6788257
- ],
- [
- 1.2870803,
- 43.7013229
- ],
- [
- 1.3088219,
- 43.7014632
- ],
- [
- 1.3086493,
- 43.7127673
- ],
- [
- 1.3303262,
- 43.7129544
- ],
- [
- 1.3300242,
- 43.7305221
- ],
- [
- 1.3367106,
- 43.7305845
- ],
- [
- 1.3367322,
- 43.7312235
- ],
- [
- 1.3734338,
- 43.7310456
- ],
- [
- 1.3735848,
- 43.7245772
- ],
- [
- 1.4604504,
- 43.7252947
- ],
- [
- 1.4607783,
- 43.7028034
- ],
- [
- 1.4824875,
- 43.7029516
- ],
- [
- 1.4829828,
- 43.6692071
- ],
- [
- 1.5046832,
- 43.6693616
- ],
- [
- 1.5048383,
- 43.6581174
- ],
- [
- 1.5265475,
- 43.6582656
- ],
- [
- 1.5266945,
- 43.6470298
- ],
- [
- 1.548368,
- 43.6471633
- ],
- [
- 1.5485357,
- 43.6359385
- ],
- [
- 1.5702172,
- 43.636082
- ],
- [
- 1.5705123,
- 43.6135777
- ],
- [
- 1.5488166,
- 43.6134276
- ],
- [
- 1.549097,
- 43.5909479
- ],
- [
- 1.5707695,
- 43.5910694
- ],
- [
- 1.5709373,
- 43.5798341
- ],
- [
- 1.5793714,
- 43.5798894
- ],
- [
- 1.5794782,
- 43.5737682
- ],
- [
- 1.5809119,
- 43.5737792
- ],
- [
- 1.5810859,
- 43.5573794
- ],
- [
- 1.5712334,
- 43.5573131
- ],
- [
- 1.5716504,
- 43.5235497
- ],
- [
- 1.3984804,
- 43.5222618
- ],
- [
- 1.3986509,
- 43.5110113
- ],
- [
- 1.3120959,
- 43.5102543
- ],
- [
- 1.3118968,
- 43.5215192
- ],
- [
- 1.2902569,
- 43.5213126
- ],
- [
- 1.2898637,
- 43.5438168
- ],
- [
- 1.311517,
- 43.5440133
- ],
- [
- 1.3113271,
- 43.5552596
- ],
- [
- 1.3036924,
- 43.5551924
- ],
- [
- 1.3036117,
- 43.5595099
- ],
- [
- 1.2955449,
- 43.5594317
- ],
- [
- 1.2955449,
- 43.5595489
- ],
- [
- 1.2895595,
- 43.5594473
- ],
- [
- 1.2892899,
- 43.5775366
- ],
- [
- 1.2675698,
- 43.5773647
- ],
- [
- 1.2673973,
- 43.5886141
- ],
- [
- 1.25355,
- 43.5885047
- ],
- [
- 1.2533774,
- 43.5956282
- ],
- [
- 1.2518029,
- 43.5956282
- ],
- [
- 1.2518029,
- 43.5949409
- ],
- [
- 1.2350437,
- 43.5947847
- ],
- [
- 1.2350437,
- 43.5945972
- ],
- [
- 1.2239572,
- 43.5945972
- ],
- [
- 1.2239357,
- 43.5994708
- ],
- [
- 1.2139708,
- 43.599299
- ],
- [
- 1.2138845,
- 43.6046408
- ],
- [
- 1.2020647,
- 43.6044846
- ],
- [
- 1.2019464,
- 43.61048
- ],
- [
- 1.1924294,
- 43.6103695
- ]
- ]
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData",
- "terms_text": "ToulouseMetropole"
- },
- {
- "name": "Toulouse - Orthophotoplan 2011",
- "type": "tms",
- "template": "http://wms.openstreetmap.fr/tms/1.0.0/toulouse_ortho2011/{zoom}/{x}/{y}",
- "scaleExtent": [
- 0,
- 22
- ],
- "polygon": [
- [
- [
- 1.1135067,
- 43.6867566
- ],
- [
- 1.1351836,
- 43.6870842
- ],
- [
- 1.1348907,
- 43.6983471
- ],
- [
- 1.1782867,
- 43.6990338
- ],
- [
- 1.1779903,
- 43.7102786
- ],
- [
- 1.1996591,
- 43.7106144
- ],
- [
- 1.1993387,
- 43.7218722
- ],
- [
- 1.2427356,
- 43.7225269
- ],
- [
- 1.2424336,
- 43.7337491
- ],
- [
- 1.2641536,
- 43.734092
- ],
- [
- 1.2638301,
- 43.7453588
- ],
- [
- 1.2855285,
- 43.7456548
- ],
- [
- 1.2852481,
- 43.756935
- ],
- [
- 1.306925,
- 43.757231
- ],
- [
- 1.3066446,
- 43.7684779
- ],
- [
- 1.3283431,
- 43.7687894
- ],
- [
- 1.3280842,
- 43.780034
- ],
- [
- 1.4367275,
- 43.7815757
- ],
- [
- 1.4373098,
- 43.7591004
- ],
- [
- 1.4590083,
- 43.7593653
- ],
- [
- 1.4593318,
- 43.7481479
- ],
- [
- 1.4810303,
- 43.7483972
- ],
- [
- 1.4813322,
- 43.7371777
- ],
- [
- 1.5030307,
- 43.7374115
- ],
- [
- 1.5035915,
- 43.7149664
- ],
- [
- 1.5253115,
- 43.7151846
- ],
- [
- 1.5256135,
- 43.7040057
- ],
- [
- 1.5472688,
- 43.7042552
- ],
- [
- 1.5475708,
- 43.6930431
- ],
- [
- 1.5692045,
- 43.6932926
- ],
- [
- 1.5695712,
- 43.6820316
- ],
- [
- 1.5912049,
- 43.6822656
- ],
- [
- 1.5917441,
- 43.6597998
- ],
- [
- 1.613421,
- 43.6600339
- ],
- [
- 1.613723,
- 43.6488291
- ],
- [
- 1.6353783,
- 43.6490788
- ],
- [
- 1.6384146,
- 43.5140731
- ],
- [
- 1.2921649,
- 43.5094658
- ],
- [
- 1.2918629,
- 43.5206966
- ],
- [
- 1.2702076,
- 43.5203994
- ],
- [
- 1.2698841,
- 43.5316437
- ],
- [
- 1.2482288,
- 43.531331
- ],
- [
- 1.2476048,
- 43.5537788
- ],
- [
- 1.2259628,
- 43.5534914
- ],
- [
- 1.2256819,
- 43.564716
- ],
- [
- 1.2039835,
- 43.564419
- ],
- [
- 1.2033148,
- 43.5869049
- ],
- [
- 1.1816164,
- 43.5865611
- ],
- [
- 1.1810237,
- 43.6090368
- ],
- [
- 1.1592821,
- 43.6086932
- ],
- [
- 1.1589585,
- 43.6199523
- ],
- [
- 1.1372601,
- 43.6196244
- ],
- [
- 1.1365933,
- 43.642094
- ],
- [
- 1.1149055,
- 43.6417629
- ]
- ]
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData",
- "terms_text": "ToulouseMetropole"
- },
- {
- "name": "Tours - Orthophotos 2008",
- "type": "tms",
- "template": "http://tms.mapspot.ge/tms/2/nonstandard/{zoom}/{x}/{y}.jpeg",
- "polygon": [
- [
- [
- 0.5457462,
- 47.465264
- ],
- [
- 0.54585,
- 47.4608163
- ],
- [
- 0.5392188,
- 47.4606983
- ],
- [
- 0.5393484,
- 47.456243
- ],
- [
- 0.5327959,
- 47.4561003
- ],
- [
- 0.5329011,
- 47.451565
- ],
- [
- 0.52619,
- 47.4514013
- ],
- [
- 0.5265854,
- 47.4424884
- ],
- [
- 0.5000941,
- 47.4420739
- ],
- [
- 0.5002357,
- 47.4375835
- ],
- [
- 0.4936014,
- 47.4374324
- ],
- [
- 0.4937,
- 47.4329285
- ],
- [
- 0.4606141,
- 47.4324593
- ],
- [
- 0.4607248,
- 47.4279827
- ],
- [
- 0.4541016,
- 47.4278125
- ],
- [
- 0.454932,
- 47.4053921
- ],
- [
- 0.4615431,
- 47.4054476
- ],
- [
- 0.4619097,
- 47.3964924
- ],
- [
- 0.4684346,
- 47.3966005
- ],
- [
- 0.4691319,
- 47.3786415
- ],
- [
- 0.4757125,
- 47.3787609
- ],
- [
- 0.4762116,
- 47.3652018
- ],
- [
- 0.4828297,
- 47.3653499
- ],
- [
- 0.4832223,
- 47.3518574
- ],
- [
- 0.5097927,
- 47.3522592
- ],
- [
- 0.5095688,
- 47.3567713
- ],
- [
- 0.5227698,
- 47.3569785
- ],
- [
- 0.5226429,
- 47.3614867
- ],
- [
- 0.5490721,
- 47.3618878
- ],
- [
- 0.5489087,
- 47.3663307
- ],
- [
- 0.5555159,
- 47.3664985
- ],
- [
- 0.5559105,
- 47.3575522
- ],
- [
- 0.6152789,
- 47.358407
- ],
- [
- 0.6152963,
- 47.362893
- ],
- [
- 0.6285093,
- 47.3630936
- ],
- [
- 0.6288256,
- 47.353987
- ],
- [
- 0.6155012,
- 47.3538823
- ],
- [
- 0.6157682,
- 47.3493424
- ],
- [
- 0.6090956,
- 47.3492991
- ],
- [
- 0.6094735,
- 47.3402962
- ],
- [
- 0.6160477,
- 47.3404448
- ],
- [
- 0.616083,
- 47.3369074
- ],
- [
- 0.77497,
- 47.3388218
- ],
- [
- 0.7745786,
- 47.351628
- ],
- [
- 0.7680363,
- 47.3515901
- ],
- [
- 0.767589,
- 47.3605298
- ],
- [
- 0.7742443,
- 47.3606238
- ],
- [
- 0.7733465,
- 47.3921266
- ],
- [
- 0.7667434,
- 47.3920195
- ],
- [
- 0.7664411,
- 47.4010837
- ],
- [
- 0.7730647,
- 47.4011115
- ],
- [
- 0.7728868,
- 47.4101297
- ],
- [
- 0.7661849,
- 47.4100226
- ],
- [
- 0.7660267,
- 47.4145044
- ],
- [
- 0.7527613,
- 47.4143038
- ],
- [
- 0.7529788,
- 47.4098086
- ],
- [
- 0.7462373,
- 47.4097016
- ],
- [
- 0.7459424,
- 47.4232208
- ],
- [
- 0.7392324,
- 47.4231451
- ],
- [
- 0.738869,
- 47.4366116
- ],
- [
- 0.7323267,
- 47.4365171
- ],
- [
- 0.7321869,
- 47.4410556
- ],
- [
- 0.7255048,
- 47.44098
- ],
- [
- 0.7254209,
- 47.4453479
- ],
- [
- 0.7318793,
- 47.4454803
- ],
- [
- 0.7318514,
- 47.4501126
- ],
- [
- 0.7384496,
- 47.450226
- ],
- [
- 0.7383098,
- 47.454631
- ],
- [
- 0.7449359,
- 47.4547444
- ],
- [
- 0.7443209,
- 47.4771985
- ],
- [
- 0.7310685,
- 47.4769717
- ],
- [
- 0.7309008,
- 47.4815445
- ],
- [
- 0.7176205,
- 47.4812611
- ],
- [
- 0.7177883,
- 47.4768394
- ],
- [
- 0.69777,
- 47.4764993
- ],
- [
- 0.6980496,
- 47.4719827
- ],
- [
- 0.6914514,
- 47.4718882
- ],
- [
- 0.6917309,
- 47.4630241
- ],
- [
- 0.6851048,
- 47.4629295
- ],
- [
- 0.684937,
- 47.4673524
- ],
- [
- 0.678255,
- 47.4673335
- ],
- [
- 0.6779754,
- 47.4762158
- ],
- [
- 0.6714051,
- 47.4761592
- ],
- [
- 0.6710417,
- 47.4881952
- ],
- [
- 0.6577334,
- 47.4879685
- ],
- [
- 0.6578173,
- 47.48504
- ],
- [
- 0.6511911,
- 47.4848322
- ],
- [
- 0.6514707,
- 47.4758568
- ],
- [
- 0.6448166,
- 47.4757245
- ],
- [
- 0.6449284,
- 47.4712646
- ],
- [
- 0.6117976,
- 47.4707543
- ],
- [
- 0.6118815,
- 47.4663129
- ],
- [
- 0.6052833,
- 47.4661239
- ],
- [
- 0.6054231,
- 47.4616631
- ],
- [
- 0.5988808,
- 47.4615497
- ],
- [
- 0.5990206,
- 47.4570886
- ],
- [
- 0.572488,
- 47.4566916
- ],
- [
- 0.5721805,
- 47.4656513
- ]
- ]
- ],
- "terms_url": "http://wiki.openstreetmap.org/wiki/Tours/Orthophoto",
- "terms_text": "Orthophoto Tour(s) Plus 2008"
- },
- {
- "name": "Tours - Orthophotos 2008-2010",
- "type": "tms",
- "template": "http://wms.openstreetmap.fr/tms/1.0.0/tours/{zoom}/{x}/{y}",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- 0.5457462,
- 47.465264
- ],
- [
- 0.54585,
- 47.4608163
- ],
- [
- 0.5392188,
- 47.4606983
- ],
- [
- 0.5393484,
- 47.456243
- ],
- [
- 0.5327959,
- 47.4561003
- ],
- [
- 0.5329011,
- 47.451565
- ],
- [
- 0.52619,
- 47.4514013
- ],
- [
- 0.5265854,
- 47.4424884
- ],
- [
- 0.5000941,
- 47.4420739
- ],
- [
- 0.5002357,
- 47.4375835
- ],
- [
- 0.4936014,
- 47.4374324
- ],
- [
- 0.4937,
- 47.4329285
- ],
- [
- 0.4606141,
- 47.4324593
- ],
- [
- 0.4607248,
- 47.4279827
- ],
- [
- 0.4541016,
- 47.4278125
- ],
- [
- 0.454932,
- 47.4053921
- ],
- [
- 0.4615431,
- 47.4054476
- ],
- [
- 0.4619097,
- 47.3964924
- ],
- [
- 0.4684346,
- 47.3966005
- ],
- [
- 0.4691319,
- 47.3786415
- ],
- [
- 0.4757125,
- 47.3787609
- ],
- [
- 0.4762116,
- 47.3652018
- ],
- [
- 0.4828297,
- 47.3653499
- ],
- [
- 0.4829611,
- 47.3608321
- ],
- [
- 0.4763543,
- 47.360743
- ],
- [
- 0.476654,
- 47.3517263
- ],
- [
- 0.4700497,
- 47.3516186
- ],
- [
- 0.4701971,
- 47.3471313
- ],
- [
- 0.4637503,
- 47.3470104
- ],
- [
- 0.4571425,
- 47.3424146
- ],
- [
- 0.4572922,
- 47.3379061
- ],
- [
- 0.4506741,
- 47.3378081
- ],
- [
- 0.4508379,
- 47.3333051
- ],
- [
- 0.4442212,
- 47.3332032
- ],
- [
- 0.4443809,
- 47.328711
- ],
- [
- 0.4311392,
- 47.3284977
- ],
- [
- 0.4316262,
- 47.3150004
- ],
- [
- 0.4382432,
- 47.3151136
- ],
- [
- 0.4383815,
- 47.3106174
- ],
- [
- 0.4714487,
- 47.3111374
- ],
- [
- 0.4713096,
- 47.3156565
- ],
- [
- 0.477888,
- 47.3157542
- ],
- [
- 0.4780733,
- 47.3112802
- ],
- [
- 0.4846826,
- 47.3113639
- ],
- [
- 0.4848576,
- 47.3068686
- ],
- [
- 0.4914359,
- 47.3069803
- ],
- [
- 0.491745,
- 47.2979733
- ],
- [
- 0.4851578,
- 47.2978722
- ],
- [
- 0.4854269,
- 47.2888744
- ],
- [
- 0.4788485,
- 47.2887697
- ],
- [
- 0.4791574,
- 47.2797818
- ],
- [
- 0.4857769,
- 47.2799005
- ],
- [
- 0.4859107,
- 47.2753885
- ],
- [
- 0.492539,
- 47.2755029
- ],
- [
- 0.4926669,
- 47.2710127
- ],
- [
- 0.4992986,
- 47.2711066
- ],
- [
- 0.4994296,
- 47.2666116
- ],
- [
- 0.5192658,
- 47.2669245
- ],
- [
- 0.5194225,
- 47.2624231
- ],
- [
- 0.5260186,
- 47.2625205
- ],
- [
- 0.5258735,
- 47.2670183
- ],
- [
- 0.5456972,
- 47.2673383
- ],
- [
- 0.5455537,
- 47.2718283
- ],
- [
- 0.5587737,
- 47.2720366
- ],
- [
- 0.5586259,
- 47.2765185
- ],
- [
- 0.5652252,
- 47.2766278
- ],
- [
- 0.5650848,
- 47.2811206
- ],
- [
- 0.5716753,
- 47.2812285
- ],
- [
- 0.5715223,
- 47.2857217
- ],
- [
- 0.5781436,
- 47.2858299
- ],
- [
- 0.5779914,
- 47.2903294
- ],
- [
- 0.5846023,
- 47.2904263
- ],
- [
- 0.5843076,
- 47.2994231
- ],
- [
- 0.597499,
- 47.2996094
- ],
- [
- 0.5976637,
- 47.2951375
- ],
- [
- 0.6571596,
- 47.2960036
- ],
- [
- 0.6572988,
- 47.2915091
- ],
- [
- 0.6705019,
- 47.2917186
- ],
- [
- 0.6703475,
- 47.2962082
- ],
- [
- 0.6836175,
- 47.2963688
- ],
- [
- 0.6834322,
- 47.3008929
- ],
- [
- 0.690062,
- 47.3009558
- ],
- [
- 0.6899241,
- 47.3054703
- ],
- [
- 0.7362019,
- 47.3061157
- ],
- [
- 0.7360848,
- 47.3106063
- ],
- [
- 0.7559022,
- 47.3108935
- ],
- [
- 0.7557718,
- 47.315392
- ],
- [
- 0.7623755,
- 47.3154716
- ],
- [
- 0.7622314,
- 47.3199941
- ],
- [
- 0.7754911,
- 47.3201546
- ],
- [
- 0.77497,
- 47.3388218
- ],
- [
- 0.7745786,
- 47.351628
- ],
- [
- 0.7680363,
- 47.3515901
- ],
- [
- 0.767589,
- 47.3605298
- ],
- [
- 0.7742443,
- 47.3606238
- ],
- [
- 0.7733465,
- 47.3921266
- ],
- [
- 0.7667434,
- 47.3920195
- ],
- [
- 0.7664411,
- 47.4010837
- ],
- [
- 0.7730647,
- 47.4011115
- ],
- [
- 0.7728868,
- 47.4101297
- ],
- [
- 0.7661849,
- 47.4100226
- ],
- [
- 0.7660267,
- 47.4145044
- ],
- [
- 0.7527613,
- 47.4143038
- ],
- [
- 0.7529788,
- 47.4098086
- ],
- [
- 0.7462373,
- 47.4097016
- ],
- [
- 0.7459424,
- 47.4232208
- ],
- [
- 0.7392324,
- 47.4231451
- ],
- [
- 0.738869,
- 47.4366116
- ],
- [
- 0.7323267,
- 47.4365171
- ],
- [
- 0.7321869,
- 47.4410556
- ],
- [
- 0.7255048,
- 47.44098
- ],
- [
- 0.7254209,
- 47.4453479
- ],
- [
- 0.7318793,
- 47.4454803
- ],
- [
- 0.7318514,
- 47.4501126
- ],
- [
- 0.7384496,
- 47.450226
- ],
- [
- 0.7383098,
- 47.454631
- ],
- [
- 0.7449359,
- 47.4547444
- ],
- [
- 0.7443209,
- 47.4771985
- ],
- [
- 0.7310685,
- 47.4769717
- ],
- [
- 0.7309008,
- 47.4815445
- ],
- [
- 0.7176205,
- 47.4812611
- ],
- [
- 0.7177883,
- 47.4768394
- ],
- [
- 0.69777,
- 47.4764993
- ],
- [
- 0.6980496,
- 47.4719827
- ],
- [
- 0.6914514,
- 47.4718882
- ],
- [
- 0.6917309,
- 47.4630241
- ],
- [
- 0.6851048,
- 47.4629295
- ],
- [
- 0.684937,
- 47.4673524
- ],
- [
- 0.678255,
- 47.4673335
- ],
- [
- 0.6779754,
- 47.4762158
- ],
- [
- 0.6714051,
- 47.4761592
- ],
- [
- 0.6710417,
- 47.4881952
- ],
- [
- 0.6577334,
- 47.4879685
- ],
- [
- 0.6578173,
- 47.48504
- ],
- [
- 0.6511911,
- 47.4848322
- ],
- [
- 0.6514707,
- 47.4758568
- ],
- [
- 0.6448166,
- 47.4757245
- ],
- [
- 0.6449284,
- 47.4712646
- ],
- [
- 0.6117976,
- 47.4707543
- ],
- [
- 0.6118815,
- 47.4663129
- ],
- [
- 0.6052833,
- 47.4661239
- ],
- [
- 0.6054231,
- 47.4616631
- ],
- [
- 0.5988808,
- 47.4615497
- ],
- [
- 0.5990206,
- 47.4570886
- ],
- [
- 0.572488,
- 47.4566916
- ],
- [
- 0.5721805,
- 47.4656513
- ]
- ]
- ],
- "terms_url": "http://wiki.openstreetmap.org/wiki/Tours/Orthophoto",
- "terms_text": "Orthophoto Tour(s) Plus 2008"
- },
- {
- "name": "USGS Large Scale Imagery",
- "type": "tms",
- "template": "http://{switch:a,b,c}.tile.openstreetmap.us/usgs_large_scale/{zoom}/{x}/{y}.jpg",
- "scaleExtent": [
- 12,
- 20
- ],
- "polygon": [
- [
- [
- -123.2549305,
- 48.7529029
- ],
- [
- -123.2549305,
- 48.5592263
- ],
- [
- -123.192224,
- 48.5592263
- ],
- [
- -123.192224,
- 48.4348366
- ],
- [
- -122.9419646,
- 48.4348366
- ],
- [
- -122.9419646,
- 48.3720812
- ],
- [
- -122.8806229,
- 48.3720812
- ],
- [
- -122.8806229,
- 48.3094763
- ],
- [
- -122.8167566,
- 48.3094763
- ],
- [
- -122.8167566,
- 48.1904587
- ],
- [
- -123.0041133,
- 48.1904587
- ],
- [
- -123.0041133,
- 48.1275918
- ],
- [
- -123.058416,
- 48.1275918
- ],
- [
- -123.058416,
- 48.190514
- ],
- [
- -123.254113,
- 48.190514
- ],
- [
- -123.254113,
- 48.1274982
- ],
- [
- -123.3706593,
- 48.1274982
- ],
- [
- -123.3706593,
- 48.1908403
- ],
- [
- -124.0582632,
- 48.1908403
- ],
- [
- -124.0582632,
- 48.253442
- ],
- [
- -124.1815163,
- 48.253442
- ],
- [
- -124.1815163,
- 48.3164666
- ],
- [
- -124.4319117,
- 48.3164666
- ],
- [
- -124.4319117,
- 48.3782613
- ],
- [
- -124.5564618,
- 48.3782613
- ],
- [
- -124.5564618,
- 48.4408305
- ],
- [
- -124.7555107,
- 48.4408305
- ],
- [
- -124.7555107,
- 48.1914986
- ],
- [
- -124.8185282,
- 48.1914986
- ],
- [
- -124.8185282,
- 48.1228381
- ],
- [
- -124.7552951,
- 48.1228381
- ],
- [
- -124.7552951,
- 47.5535253
- ],
- [
- -124.3812108,
- 47.5535253
- ],
- [
- -124.3812108,
- 47.1218696
- ],
- [
- -124.1928897,
- 47.1218696
- ],
- [
- -124.1928897,
- 43.7569431
- ],
- [
- -124.4443382,
- 43.7569431
- ],
- [
- -124.4443382,
- 43.1425556
- ],
- [
- -124.6398855,
- 43.1425556
- ],
- [
- -124.6398855,
- 42.6194503
- ],
- [
- -124.4438525,
- 42.6194503
- ],
- [
- -124.4438525,
- 39.8080662
- ],
- [
- -123.8815685,
- 39.8080662
- ],
- [
- -123.8815685,
- 39.1102825
- ],
- [
- -123.75805,
- 39.1102825
- ],
- [
- -123.75805,
- 38.4968799
- ],
- [
- -123.2702803,
- 38.4968799
- ],
- [
- -123.2702803,
- 37.9331905
- ],
- [
- -122.8148084,
- 37.9331905
- ],
- [
- -122.8148084,
- 37.8019606
- ],
- [
- -122.5664316,
- 37.8019606
- ],
- [
- -122.5664316,
- 36.9319611
- ],
- [
- -121.8784026,
- 36.9319611
- ],
- [
- -121.8784026,
- 36.6897596
- ],
- [
- -122.0034748,
- 36.6897596
- ],
- [
- -122.0034748,
- 36.4341056
- ],
- [
- -121.9414159,
- 36.4341056
- ],
- [
- -121.9414159,
- 35.9297636
- ],
- [
- -121.5040977,
- 35.9297636
- ],
- [
- -121.5040977,
- 35.8100273
- ],
- [
- -121.3790276,
- 35.8100273
- ],
- [
- -121.3790276,
- 35.4239164
- ],
- [
- -120.9426515,
- 35.4239164
- ],
- [
- -120.9426515,
- 35.1849683
- ],
- [
- -120.8171978,
- 35.1849683
- ],
- [
- -120.8171978,
- 35.1219894
- ],
- [
- -120.6918447,
- 35.1219894
- ],
- [
- -120.6918447,
- 34.4966794
- ],
- [
- -120.5045898,
- 34.4966794
- ],
- [
- -120.5045898,
- 34.4339651
- ],
- [
- -120.0078775,
- 34.4339651
- ],
- [
- -120.0078775,
- 34.3682626
- ],
- [
- -119.5283517,
- 34.3682626
- ],
- [
- -119.5283517,
- 34.0576434
- ],
- [
- -119.0060985,
- 34.0576434
- ],
- [
- -119.0060985,
- 33.9975267
- ],
- [
- -118.5046259,
- 33.9975267
- ],
- [
- -118.5046259,
- 33.8694631
- ],
- [
- -118.4413209,
- 33.8694631
- ],
- [
- -118.4413209,
- 33.6865253
- ],
- [
- -118.066912,
- 33.6865253
- ],
- [
- -118.066912,
- 33.3063832
- ],
- [
- -117.5030045,
- 33.3063832
- ],
- [
- -117.5030045,
- 33.0500337
- ],
- [
- -117.3188195,
- 33.0500337
- ],
- [
- -117.3188195,
- 32.6205888
- ],
- [
- -117.1917023,
- 32.6205888
- ],
- [
- -117.1917023,
- 32.4974566
- ],
- [
- -116.746496,
- 32.4974566
- ],
- [
- -116.746496,
- 32.5609161
- ],
- [
- -115.9970138,
- 32.5609161
- ],
- [
- -115.9970138,
- 32.6264942
- ],
- [
- -114.8808125,
- 32.6264942
- ],
- [
- -114.8808125,
- 32.4340796
- ],
- [
- -114.6294474,
- 32.4340796
- ],
- [
- -114.6294474,
- 32.3731636
- ],
- [
- -114.4447437,
- 32.3731636
- ],
- [
- -114.4447437,
- 32.3075418
- ],
- [
- -114.2557628,
- 32.3075418
- ],
- [
- -114.2557628,
- 32.2444561
- ],
- [
- -114.0680274,
- 32.2444561
- ],
- [
- -114.0680274,
- 32.1829113
- ],
- [
- -113.8166499,
- 32.1829113
- ],
- [
- -113.8166499,
- 32.1207622
- ],
- [
- -113.6307421,
- 32.1207622
- ],
- [
- -113.6307421,
- 32.0565099
- ],
- [
- -113.4417495,
- 32.0565099
- ],
- [
- -113.4417495,
- 31.9984372
- ],
- [
- -113.2546027,
- 31.9984372
- ],
- [
- -113.2546027,
- 31.9325434
- ],
- [
- -113.068072,
- 31.9325434
- ],
- [
- -113.068072,
- 31.8718062
- ],
- [
- -112.8161105,
- 31.8718062
- ],
- [
- -112.8161105,
- 31.8104171
- ],
- [
- -112.6308756,
- 31.8104171
- ],
- [
- -112.6308756,
- 31.7464723
- ],
- [
- -112.4418918,
- 31.7464723
- ],
- [
- -112.4418918,
- 31.6856001
- ],
- [
- -112.257192,
- 31.6856001
- ],
- [
- -112.257192,
- 31.6210352
- ],
- [
- -112.0033787,
- 31.6210352
- ],
- [
- -112.0033787,
- 31.559584
- ],
- [
- -111.815619,
- 31.559584
- ],
- [
- -111.815619,
- 31.4970238
- ],
- [
- -111.6278586,
- 31.4970238
- ],
- [
- -111.6278586,
- 31.4339867
- ],
- [
- -111.4418978,
- 31.4339867
- ],
- [
- -111.4418978,
- 31.3733859
- ],
- [
- -111.2559708,
- 31.3733859
- ],
- [
- -111.2559708,
- 31.3113225
- ],
- [
- -108.1845822,
- 31.3113225
- ],
- [
- -108.1845822,
- 31.7459502
- ],
- [
- -106.5065055,
- 31.7459502
- ],
- [
- -106.5065055,
- 31.6842308
- ],
- [
- -106.3797265,
- 31.6842308
- ],
- [
- -106.3797265,
- 31.621752
- ],
- [
- -106.317434,
- 31.621752
- ],
- [
- -106.317434,
- 31.4968167
- ],
- [
- -106.2551769,
- 31.4968167
- ],
- [
- -106.2551769,
- 31.4344889
- ],
- [
- -106.1924698,
- 31.4344889
- ],
- [
- -106.1924698,
- 31.3721296
- ],
- [
- -106.0039212,
- 31.3721296
- ],
- [
- -106.0039212,
- 31.309328
- ],
- [
- -105.9416582,
- 31.309328
- ],
- [
- -105.9416582,
- 31.2457547
- ],
- [
- -105.8798174,
- 31.2457547
- ],
- [
- -105.8798174,
- 31.1836194
- ],
- [
- -105.8162349,
- 31.1836194
- ],
- [
- -105.8162349,
- 31.1207155
- ],
- [
- -105.6921198,
- 31.1207155
- ],
- [
- -105.6921198,
- 31.0584835
- ],
- [
- -105.6302881,
- 31.0584835
- ],
- [
- -105.6302881,
- 30.9328271
- ],
- [
- -105.5044418,
- 30.9328271
- ],
- [
- -105.5044418,
- 30.8715864
- ],
- [
- -105.4412973,
- 30.8715864
- ],
- [
- -105.4412973,
- 30.808463
- ],
- [
- -105.3781497,
- 30.808463
- ],
- [
- -105.3781497,
- 30.7471828
- ],
- [
- -105.1904658,
- 30.7471828
- ],
- [
- -105.1904658,
- 30.6843231
- ],
- [
- -105.1286244,
- 30.6843231
- ],
- [
- -105.1286244,
- 30.6199737
- ],
- [
- -105.0036504,
- 30.6199737
- ],
- [
- -105.0036504,
- 30.5589058
- ],
- [
- -104.9417962,
- 30.5589058
- ],
- [
- -104.9417962,
- 30.4963236
- ],
- [
- -104.8782018,
- 30.4963236
- ],
- [
- -104.8782018,
- 30.3098261
- ],
- [
- -104.8155257,
- 30.3098261
- ],
- [
- -104.8155257,
- 30.2478305
- ],
- [
- -104.7536079,
- 30.2478305
- ],
- [
- -104.7536079,
- 29.9353916
- ],
- [
- -104.690949,
- 29.9353916
- ],
- [
- -104.690949,
- 29.8090156
- ],
- [
- -104.6291301,
- 29.8090156
- ],
- [
- -104.6291301,
- 29.6843577
- ],
- [
- -104.5659869,
- 29.6843577
- ],
- [
- -104.5659869,
- 29.6223459
- ],
- [
- -104.5037188,
- 29.6223459
- ],
- [
- -104.5037188,
- 29.5595436
- ],
- [
- -104.4410072,
- 29.5595436
- ],
- [
- -104.4410072,
- 29.4974832
- ],
- [
- -104.2537551,
- 29.4974832
- ],
- [
- -104.2537551,
- 29.3716718
- ],
- [
- -104.1291984,
- 29.3716718
- ],
- [
- -104.1291984,
- 29.3091621
- ],
- [
- -104.0688737,
- 29.3091621
- ],
- [
- -104.0688737,
- 29.2467276
- ],
- [
- -103.8187309,
- 29.2467276
- ],
- [
- -103.8187309,
- 29.1843076
- ],
- [
- -103.755736,
- 29.1843076
- ],
- [
- -103.755736,
- 29.1223174
- ],
- [
- -103.5667542,
- 29.1223174
- ],
- [
- -103.5667542,
- 29.0598119
- ],
- [
- -103.5049819,
- 29.0598119
- ],
- [
- -103.5049819,
- 28.9967506
- ],
- [
- -103.3165753,
- 28.9967506
- ],
- [
- -103.3165753,
- 28.9346923
- ],
- [
- -103.0597572,
- 28.9346923
- ],
- [
- -103.0597572,
- 29.0592965
- ],
- [
- -102.9979694,
- 29.0592965
- ],
- [
- -102.9979694,
- 29.1212855
- ],
- [
- -102.9331397,
- 29.1212855
- ],
- [
- -102.9331397,
- 29.1848575
- ],
- [
- -102.8095989,
- 29.1848575
- ],
- [
- -102.8095989,
- 29.2526154
- ],
- [
- -102.8701345,
- 29.2526154
- ],
- [
- -102.8701345,
- 29.308096
- ],
- [
- -102.8096681,
- 29.308096
- ],
- [
- -102.8096681,
- 29.3715484
- ],
- [
- -102.7475655,
- 29.3715484
- ],
- [
- -102.7475655,
- 29.5581899
- ],
- [
- -102.684554,
- 29.5581899
- ],
- [
- -102.684554,
- 29.6847655
- ],
- [
- -102.4967764,
- 29.6847655
- ],
- [
- -102.4967764,
- 29.7457694
- ],
- [
- -102.3086647,
- 29.7457694
- ],
- [
- -102.3086647,
- 29.8086627
- ],
- [
- -102.1909323,
- 29.8086627
- ],
- [
- -102.1909323,
- 29.7460097
- ],
- [
- -101.5049914,
- 29.7460097
- ],
- [
- -101.5049914,
- 29.6846777
- ],
- [
- -101.3805796,
- 29.6846777
- ],
- [
- -101.3805796,
- 29.5594459
- ],
- [
- -101.3175057,
- 29.5594459
- ],
- [
- -101.3175057,
- 29.4958934
- ],
- [
- -101.1910075,
- 29.4958934
- ],
- [
- -101.1910075,
- 29.4326115
- ],
- [
- -101.067501,
- 29.4326115
- ],
- [
- -101.067501,
- 29.308808
- ],
- [
- -100.9418897,
- 29.308808
- ],
- [
- -100.9418897,
- 29.2456231
- ],
- [
- -100.8167271,
- 29.2456231
- ],
- [
- -100.8167271,
- 29.1190449
- ],
- [
- -100.7522672,
- 29.1190449
- ],
- [
- -100.7522672,
- 29.0578214
- ],
- [
- -100.6925358,
- 29.0578214
- ],
- [
- -100.6925358,
- 28.8720431
- ],
- [
- -100.6290158,
- 28.8720431
- ],
- [
- -100.6290158,
- 28.8095363
- ],
- [
- -100.5679901,
- 28.8095363
- ],
- [
- -100.5679901,
- 28.622554
- ],
- [
- -100.5040411,
- 28.622554
- ],
- [
- -100.5040411,
- 28.5583804
- ],
- [
- -100.4421832,
- 28.5583804
- ],
- [
- -100.4421832,
- 28.4968266
- ],
- [
- -100.379434,
- 28.4968266
- ],
- [
- -100.379434,
- 28.3092865
- ],
- [
- -100.3171942,
- 28.3092865
- ],
- [
- -100.3171942,
- 28.1835681
- ],
- [
- -100.254483,
- 28.1835681
- ],
- [
- -100.254483,
- 28.1213885
- ],
- [
- -100.1282282,
- 28.1213885
- ],
- [
- -100.1282282,
- 28.059215
- ],
- [
- -100.0659537,
- 28.059215
- ],
- [
- -100.0659537,
- 27.9966087
- ],
- [
- -100.0023855,
- 27.9966087
- ],
- [
- -100.0023855,
- 27.9332152
- ],
- [
- -99.9426497,
- 27.9332152
- ],
- [
- -99.9426497,
- 27.7454658
- ],
- [
- -99.816851,
- 27.7454658
- ],
- [
- -99.816851,
- 27.6834301
- ],
- [
- -99.7541346,
- 27.6834301
- ],
- [
- -99.7541346,
- 27.6221543
- ],
- [
- -99.6291629,
- 27.6221543
- ],
- [
- -99.6291629,
- 27.5588977
- ],
- [
- -99.5672838,
- 27.5588977
- ],
- [
- -99.5672838,
- 27.4353752
- ],
- [
- -99.5041798,
- 27.4353752
- ],
- [
- -99.5041798,
- 27.3774021
- ],
- [
- -99.5671796,
- 27.3774021
- ],
- [
- -99.5671796,
- 27.2463726
- ],
- [
- -99.504975,
- 27.2463726
- ],
- [
- -99.504975,
- 26.9965649
- ],
- [
- -99.4427427,
- 26.9965649
- ],
- [
- -99.4427427,
- 26.872803
- ],
- [
- -99.3800633,
- 26.872803
- ],
- [
- -99.3800633,
- 26.8068179
- ],
- [
- -99.3190684,
- 26.8068179
- ],
- [
- -99.3190684,
- 26.7473614
- ],
- [
- -99.2537541,
- 26.7473614
- ],
- [
- -99.2537541,
- 26.6210068
- ],
- [
- -99.1910617,
- 26.6210068
- ],
- [
- -99.1910617,
- 26.4956737
- ],
- [
- -99.1300639,
- 26.4956737
- ],
- [
- -99.1300639,
- 26.3713808
- ],
- [
- -99.0029473,
- 26.3713808
- ],
- [
- -99.0029473,
- 26.3093836
- ],
- [
- -98.816572,
- 26.3093836
- ],
- [
- -98.816572,
- 26.2457762
- ],
- [
- -98.6920082,
- 26.2457762
- ],
- [
- -98.6920082,
- 26.1837096
- ],
- [
- -98.4440896,
- 26.1837096
- ],
- [
- -98.4440896,
- 26.1217217
- ],
- [
- -98.3823181,
- 26.1217217
- ],
- [
- -98.3823181,
- 26.0596488
- ],
- [
- -98.2532707,
- 26.0596488
- ],
- [
- -98.2532707,
- 25.9986871
- ],
- [
- -98.0109084,
- 25.9986871
- ],
- [
- -98.0109084,
- 25.9932255
- ],
- [
- -97.6932319,
- 25.9932255
- ],
- [
- -97.6932319,
- 25.9334103
- ],
- [
- -97.6313904,
- 25.9334103
- ],
- [
- -97.6313904,
- 25.8695893
- ],
- [
- -97.5046779,
- 25.8695893
- ],
- [
- -97.5046779,
- 25.8073488
- ],
- [
- -97.3083401,
- 25.8073488
- ],
- [
- -97.3083401,
- 25.8731159
- ],
- [
- -97.2456326,
- 25.8731159
- ],
- [
- -97.2456326,
- 25.9353731
- ],
- [
- -97.1138939,
- 25.9353731
- ],
- [
- -97.1138939,
- 27.6809179
- ],
- [
- -97.0571035,
- 27.6809179
- ],
- [
- -97.0571035,
- 27.8108242
- ],
- [
- -95.5810766,
- 27.8108242
- ],
- [
- -95.5810766,
- 28.7468827
- ],
- [
- -94.271041,
- 28.7468827
- ],
- [
- -94.271041,
- 29.5594076
- ],
- [
- -92.5029947,
- 29.5594076
- ],
- [
- -92.5029947,
- 29.4974754
- ],
- [
- -91.8776216,
- 29.4974754
- ],
- [
- -91.8776216,
- 29.3727013
- ],
- [
- -91.378418,
- 29.3727013
- ],
- [
- -91.378418,
- 29.2468326
- ],
- [
- -91.3153953,
- 29.2468326
- ],
- [
- -91.3153953,
- 29.1844301
- ],
- [
- -91.1294702,
- 29.1844301
- ],
- [
- -91.1294702,
- 29.1232559
- ],
- [
- -91.0052632,
- 29.1232559
- ],
- [
- -91.0052632,
- 28.9968437
- ],
- [
- -89.4500159,
- 28.9968437
- ],
- [
- -89.4500159,
- 28.8677422
- ],
- [
- -88.8104309,
- 28.8677422
- ],
- [
- -88.8104309,
- 30.1841864
- ],
- [
- -85.8791527,
- 30.1841864
- ],
- [
- -85.8791527,
- 29.5455038
- ],
- [
- -84.8368083,
- 29.5455038
- ],
- [
- -84.8368083,
- 29.6225158
- ],
- [
- -84.7482786,
- 29.6225158
- ],
- [
- -84.7482786,
- 29.683624
- ],
- [
- -84.685894,
- 29.683624
- ],
- [
- -84.685894,
- 29.7468386
- ],
- [
- -83.6296975,
- 29.7468386
- ],
- [
- -83.6296975,
- 29.4324361
- ],
- [
- -83.3174937,
- 29.4324361
- ],
- [
- -83.3174937,
- 29.0579442
- ],
- [
- -82.879659,
- 29.0579442
- ],
- [
- -82.879659,
- 27.7453529
- ],
- [
- -82.8182822,
- 27.7453529
- ],
- [
- -82.8182822,
- 26.9290868
- ],
- [
- -82.3796782,
- 26.9290868
- ],
- [
- -82.3796782,
- 26.3694183
- ],
- [
- -81.8777106,
- 26.3694183
- ],
- [
- -81.8777106,
- 25.805971
- ],
- [
- -81.5036862,
- 25.805971
- ],
- [
- -81.5036862,
- 25.7474753
- ],
- [
- -81.4405462,
- 25.7474753
- ],
- [
- -81.4405462,
- 25.6851489
- ],
- [
- -81.3155883,
- 25.6851489
- ],
- [
- -81.3155883,
- 25.5600985
- ],
- [
- -81.2538534,
- 25.5600985
- ],
- [
- -81.2538534,
- 25.4342361
- ],
- [
- -81.1902012,
- 25.4342361
- ],
- [
- -81.1902012,
- 25.1234341
- ],
- [
- -81.1288133,
- 25.1234341
- ],
- [
- -81.1288133,
- 25.0619389
- ],
- [
- -81.0649231,
- 25.0619389
- ],
- [
- -81.0649231,
- 24.8157807
- ],
- [
- -81.6289469,
- 24.8157807
- ],
- [
- -81.6289469,
- 24.7538367
- ],
- [
- -81.6907173,
- 24.7538367
- ],
- [
- -81.6907173,
- 24.6899374
- ],
- [
- -81.8173189,
- 24.6899374
- ],
- [
- -81.8173189,
- 24.6279161
- ],
- [
- -82.1910041,
- 24.6279161
- ],
- [
- -82.1910041,
- 24.496294
- ],
- [
- -81.6216596,
- 24.496294
- ],
- [
- -81.6216596,
- 24.559484
- ],
- [
- -81.372006,
- 24.559484
- ],
- [
- -81.372006,
- 24.6220687
- ],
- [
- -81.0593278,
- 24.6220687
- ],
- [
- -81.0593278,
- 24.684826
- ],
- [
- -80.9347147,
- 24.684826
- ],
- [
- -80.9347147,
- 24.7474828
- ],
- [
- -80.7471081,
- 24.7474828
- ],
- [
- -80.7471081,
- 24.8100618
- ],
- [
- -80.3629898,
- 24.8100618
- ],
- [
- -80.3629898,
- 25.1175858
- ],
- [
- -80.122344,
- 25.1175858
- ],
- [
- -80.122344,
- 25.7472357
- ],
- [
- -80.0588458,
- 25.7472357
- ],
- [
- -80.0588458,
- 26.3708251
- ],
- [
- -79.995837,
- 26.3708251
- ],
- [
- -79.995837,
- 26.9398003
- ],
- [
- -80.0587265,
- 26.9398003
- ],
- [
- -80.0587265,
- 27.1277466
- ],
- [
- -80.1226251,
- 27.1277466
- ],
- [
- -80.1226251,
- 27.2534279
- ],
- [
- -80.1846956,
- 27.2534279
- ],
- [
- -80.1846956,
- 27.3781229
- ],
- [
- -80.246175,
- 27.3781229
- ],
- [
- -80.246175,
- 27.5658729
- ],
- [
- -80.3094768,
- 27.5658729
- ],
- [
- -80.3094768,
- 27.7530311
- ],
- [
- -80.3721485,
- 27.7530311
- ],
- [
- -80.3721485,
- 27.8774451
- ],
- [
- -80.4351457,
- 27.8774451
- ],
- [
- -80.4351457,
- 28.0033366
- ],
- [
- -80.4966078,
- 28.0033366
- ],
- [
- -80.4966078,
- 28.1277326
- ],
- [
- -80.5587159,
- 28.1277326
- ],
- [
- -80.5587159,
- 28.3723509
- ],
- [
- -80.4966335,
- 28.3723509
- ],
- [
- -80.4966335,
- 29.5160326
- ],
- [
- -81.1213644,
- 29.5160326
- ],
- [
- -81.1213644,
- 31.6846966
- ],
- [
- -80.6018723,
- 31.6846966
- ],
- [
- -80.6018723,
- 32.2475309
- ],
- [
- -79.4921024,
- 32.2475309
- ],
- [
- -79.4921024,
- 32.9970261
- ],
- [
- -79.1116488,
- 32.9970261
- ],
- [
- -79.1116488,
- 33.3729457
- ],
- [
- -78.6153621,
- 33.3729457
- ],
- [
- -78.6153621,
- 33.8097638
- ],
- [
- -77.9316963,
- 33.8097638
- ],
- [
- -77.9316963,
- 33.8718243
- ],
- [
- -77.8692252,
- 33.8718243
- ],
- [
- -77.8692252,
- 34.0552454
- ],
- [
- -77.6826392,
- 34.0552454
- ],
- [
- -77.6826392,
- 34.2974598
- ],
- [
- -77.2453509,
- 34.2974598
- ],
- [
- -77.2453509,
- 34.5598585
- ],
- [
- -76.4973277,
- 34.5598585
- ],
- [
- -76.4973277,
- 34.622796
- ],
- [
- -76.4337602,
- 34.622796
- ],
- [
- -76.4337602,
- 34.6849285
- ],
- [
- -76.373212,
- 34.6849285
- ],
- [
- -76.373212,
- 34.7467674
- ],
- [
- -76.3059364,
- 34.7467674
- ],
- [
- -76.3059364,
- 34.808551
- ],
- [
- -76.2468017,
- 34.808551
- ],
- [
- -76.2468017,
- 34.8728418
- ],
- [
- -76.1825922,
- 34.8728418
- ],
- [
- -76.1825922,
- 34.9335332
- ],
- [
- -76.120814,
- 34.9335332
- ],
- [
- -76.120814,
- 34.9952359
- ],
- [
- -75.9979015,
- 34.9952359
- ],
- [
- -75.9979015,
- 35.0578182
- ],
- [
- -75.870338,
- 35.0578182
- ],
- [
- -75.870338,
- 35.1219097
- ],
- [
- -75.7462194,
- 35.1219097
- ],
- [
- -75.7462194,
- 35.1818911
- ],
- [
- -75.4929694,
- 35.1818911
- ],
- [
- -75.4929694,
- 35.3082988
- ],
- [
- -75.4325662,
- 35.3082988
- ],
- [
- -75.4325662,
- 35.7542495
- ],
- [
- -75.4969907,
- 35.7542495
- ],
- [
- -75.4969907,
- 37.8105602
- ],
- [
- -75.3082972,
- 37.8105602
- ],
- [
- -75.3082972,
- 37.8720088
- ],
- [
- -75.245601,
- 37.8720088
- ],
- [
- -75.245601,
- 37.9954849
- ],
- [
- -75.1828751,
- 37.9954849
- ],
- [
- -75.1828751,
- 38.0585079
- ],
- [
- -75.1184793,
- 38.0585079
- ],
- [
- -75.1184793,
- 38.2469091
- ],
- [
- -75.0592098,
- 38.2469091
- ],
- [
- -75.0592098,
- 38.3704316
- ],
- [
- -74.9948111,
- 38.3704316
- ],
- [
- -74.9948111,
- 38.8718417
- ],
- [
- -74.4878252,
- 38.8718417
- ],
- [
- -74.4878252,
- 39.3089428
- ],
- [
- -74.1766317,
- 39.3089428
- ],
- [
- -74.1766317,
- 39.6224653
- ],
- [
- -74.0567045,
- 39.6224653
- ],
- [
- -74.0567045,
- 39.933178
- ],
- [
- -73.9959035,
- 39.933178
- ],
- [
- -73.9959035,
- 40.1854852
- ],
- [
- -73.9341593,
- 40.1854852
- ],
- [
- -73.9341593,
- 40.4959486
- ],
- [
- -73.8723024,
- 40.4959486
- ],
- [
- -73.8723024,
- 40.5527135
- ],
- [
- -71.8074506,
- 40.5527135
- ],
- [
- -71.8074506,
- 41.3088005
- ],
- [
- -70.882512,
- 41.3088005
- ],
- [
- -70.882512,
- 41.184978
- ],
- [
- -70.7461947,
- 41.184978
- ],
- [
- -70.7461947,
- 41.3091865
- ],
- [
- -70.4337553,
- 41.3091865
- ],
- [
- -70.4337553,
- 41.4963885
- ],
- [
- -69.9334281,
- 41.4963885
- ],
- [
- -69.9334281,
- 41.6230802
- ],
- [
- -69.869857,
- 41.6230802
- ],
- [
- -69.869857,
- 41.8776895
- ],
- [
- -69.935791,
- 41.8776895
- ],
- [
- -69.935791,
- 42.0032342
- ],
- [
- -69.9975823,
- 42.0032342
- ],
- [
- -69.9975823,
- 42.0650191
- ],
- [
- -70.0606103,
- 42.0650191
- ],
- [
- -70.0606103,
- 42.1294348
- ],
- [
- -70.5572884,
- 42.1294348
- ],
- [
- -70.5572884,
- 43.2487079
- ],
- [
- -70.4974097,
- 43.2487079
- ],
- [
- -70.4974097,
- 43.3092194
- ],
- [
- -70.3704249,
- 43.3092194
- ],
- [
- -70.3704249,
- 43.371963
- ],
- [
- -70.3085701,
- 43.371963
- ],
- [
- -70.3085701,
- 43.4969879
- ],
- [
- -70.183921,
- 43.4969879
- ],
- [
- -70.183921,
- 43.6223531
- ],
- [
- -70.057583,
- 43.6223531
- ],
- [
- -70.057583,
- 43.6850173
- ],
- [
- -69.7455247,
- 43.6850173
- ],
- [
- -69.7455247,
- 43.7476571
- ],
- [
- -69.2472845,
- 43.7476571
- ],
- [
- -69.2472845,
- 43.8107035
- ],
- [
- -69.0560701,
- 43.8107035
- ],
- [
- -69.0560701,
- 43.8717247
- ],
- [
- -68.9950522,
- 43.8717247
- ],
- [
- -68.9950522,
- 43.9982022
- ],
- [
- -68.4963672,
- 43.9982022
- ],
- [
- -68.4963672,
- 44.0597368
- ],
- [
- -68.3081038,
- 44.0597368
- ],
- [
- -68.3081038,
- 44.122137
- ],
- [
- -68.1851802,
- 44.122137
- ],
- [
- -68.1851802,
- 44.3081382
- ],
- [
- -67.9956019,
- 44.3081382
- ],
- [
- -67.9956019,
- 44.3727489
- ],
- [
- -67.8103041,
- 44.3727489
- ],
- [
- -67.8103041,
- 44.435178
- ],
- [
- -67.4965289,
- 44.435178
- ],
- [
- -67.4965289,
- 44.4968776
- ],
- [
- -67.37102,
- 44.4968776
- ],
- [
- -67.37102,
- 44.5600642
- ],
- [
- -67.1848753,
- 44.5600642
- ],
- [
- -67.1848753,
- 44.6213345
- ],
- [
- -67.1221208,
- 44.6213345
- ],
- [
- -67.1221208,
- 44.6867918
- ],
- [
- -67.059365,
- 44.6867918
- ],
- [
- -67.059365,
- 44.7473657
- ],
- [
- -66.9311098,
- 44.7473657
- ],
- [
- -66.9311098,
- 44.9406566
- ],
- [
- -66.994683,
- 44.9406566
- ],
- [
- -66.994683,
- 45.0024514
- ],
- [
- -67.0595847,
- 45.0024514
- ],
- [
- -67.0595847,
- 45.1273377
- ],
- [
- -67.1201974,
- 45.1273377
- ],
- [
- -67.1201974,
- 45.1910115
- ],
- [
- -67.2469811,
- 45.1910115
- ],
- [
- -67.2469811,
- 45.253442
- ],
- [
- -67.3177546,
- 45.253442
- ],
- [
- -67.3177546,
- 45.1898369
- ],
- [
- -67.370749,
- 45.1898369
- ],
- [
- -67.370749,
- 45.2534001
- ],
- [
- -67.4326888,
- 45.2534001
- ],
- [
- -67.4326888,
- 45.3083409
- ],
- [
- -67.3708571,
- 45.3083409
- ],
- [
- -67.3708571,
- 45.4396986
- ],
- [
- -67.4305573,
- 45.4396986
- ],
- [
- -67.4305573,
- 45.4950095
- ],
- [
- -67.37099,
- 45.4950095
- ],
- [
- -67.37099,
- 45.6264543
- ],
- [
- -67.6214982,
- 45.6264543
- ],
- [
- -67.6214982,
- 45.6896133
- ],
- [
- -67.683828,
- 45.6896133
- ],
- [
- -67.683828,
- 45.753259
- ],
- [
- -67.7462097,
- 45.753259
- ],
- [
- -67.7462097,
- 47.1268165
- ],
- [
- -67.8700141,
- 47.1268165
- ],
- [
- -67.8700141,
- 47.1900278
- ],
- [
- -67.9323803,
- 47.1900278
- ],
- [
- -67.9323803,
- 47.2539678
- ],
- [
- -67.9959387,
- 47.2539678
- ],
- [
- -67.9959387,
- 47.3149737
- ],
- [
- -68.1206676,
- 47.3149737
- ],
- [
- -68.1206676,
- 47.3780823
- ],
- [
- -68.4423175,
- 47.3780823
- ],
- [
- -68.4423175,
- 47.3166082
- ],
- [
- -68.6314305,
- 47.3166082
- ],
- [
- -68.6314305,
- 47.2544676
- ],
- [
- -68.9978037,
- 47.2544676
- ],
- [
- -68.9978037,
- 47.439895
- ],
- [
- -69.0607223,
- 47.439895
- ],
- [
- -69.0607223,
- 47.5047558
- ],
- [
- -69.2538122,
- 47.5047558
- ],
- [
- -69.2538122,
- 47.4398084
- ],
- [
- -69.3179284,
- 47.4398084
- ],
- [
- -69.3179284,
- 47.378601
- ],
- [
- -69.4438546,
- 47.378601
- ],
- [
- -69.4438546,
- 47.3156274
- ],
- [
- -69.5038204,
- 47.3156274
- ],
- [
- -69.5038204,
- 47.2525839
- ],
- [
- -69.5667838,
- 47.2525839
- ],
- [
- -69.5667838,
- 47.1910884
- ],
- [
- -69.6303478,
- 47.1910884
- ],
- [
- -69.6303478,
- 47.128701
- ],
- [
- -69.6933103,
- 47.128701
- ],
- [
- -69.6933103,
- 47.0654307
- ],
- [
- -69.7557063,
- 47.0654307
- ],
- [
- -69.7557063,
- 47.0042751
- ],
- [
- -69.8180391,
- 47.0042751
- ],
- [
- -69.8180391,
- 46.9415344
- ],
- [
- -69.8804023,
- 46.9415344
- ],
- [
- -69.8804023,
- 46.8792519
- ],
- [
- -69.9421674,
- 46.8792519
- ],
- [
- -69.9421674,
- 46.8177399
- ],
- [
- -70.0063088,
- 46.8177399
- ],
- [
- -70.0063088,
- 46.6920295
- ],
- [
- -70.0704265,
- 46.6920295
- ],
- [
- -70.0704265,
- 46.4425926
- ],
- [
- -70.1945902,
- 46.4425926
- ],
- [
- -70.1945902,
- 46.3785887
- ],
- [
- -70.2562047,
- 46.3785887
- ],
- [
- -70.2562047,
- 46.3152628
- ],
- [
- -70.3203651,
- 46.3152628
- ],
- [
- -70.3203651,
- 46.0651209
- ],
- [
- -70.3814988,
- 46.0651209
- ],
- [
- -70.3814988,
- 45.93552
- ],
- [
- -70.3201618,
- 45.93552
- ],
- [
- -70.3201618,
- 45.879479
- ],
- [
- -70.4493131,
- 45.879479
- ],
- [
- -70.4493131,
- 45.7538713
- ],
- [
- -70.5070021,
- 45.7538713
- ],
- [
- -70.5070021,
- 45.6916912
- ],
- [
- -70.6316642,
- 45.6916912
- ],
- [
- -70.6316642,
- 45.6291619
- ],
- [
- -70.7575538,
- 45.6291619
- ],
- [
- -70.7575538,
- 45.4414685
- ],
- [
- -70.8809878,
- 45.4414685
- ],
- [
- -70.8809878,
- 45.3780612
- ],
- [
- -71.13328,
- 45.3780612
- ],
- [
- -71.13328,
- 45.3151452
- ],
- [
- -71.3830282,
- 45.3151452
- ],
- [
- -71.3830282,
- 45.253416
- ],
- [
- -71.5076448,
- 45.253416
- ],
- [
- -71.5076448,
- 45.0655726
- ],
- [
- -73.9418929,
- 45.0655726
- ],
- [
- -73.9418929,
- 45.0031242
- ],
- [
- -74.7469725,
- 45.0031242
- ],
- [
- -74.7469725,
- 45.0649003
- ],
- [
- -74.8800964,
- 45.0649003
- ],
- [
- -74.8800964,
- 45.0029023
- ],
- [
- -75.0662455,
- 45.0029023
- ],
- [
- -75.0662455,
- 44.9415167
- ],
- [
- -75.2539363,
- 44.9415167
- ],
- [
- -75.2539363,
- 44.8776043
- ],
- [
- -75.3789648,
- 44.8776043
- ],
- [
- -75.3789648,
- 44.8153462
- ],
- [
- -75.4431283,
- 44.8153462
- ],
- [
- -75.4431283,
- 44.7536053
- ],
- [
- -75.5666566,
- 44.7536053
- ],
- [
- -75.5666566,
- 44.6909879
- ],
- [
- -75.6290205,
- 44.6909879
- ],
- [
- -75.6290205,
- 44.6284958
- ],
- [
- -75.7540484,
- 44.6284958
- ],
- [
- -75.7540484,
- 44.566385
- ],
- [
- -75.817312,
- 44.566385
- ],
- [
- -75.817312,
- 44.5028932
- ],
- [
- -75.8799549,
- 44.5028932
- ],
- [
- -75.8799549,
- 44.3784946
- ],
- [
- -76.1300319,
- 44.3784946
- ],
- [
- -76.1300319,
- 44.3159227
- ],
- [
- -76.1926961,
- 44.3159227
- ],
- [
- -76.1926961,
- 44.2534378
- ],
- [
- -76.3182619,
- 44.2534378
- ],
- [
- -76.3182619,
- 44.1916726
- ],
- [
- -76.3792975,
- 44.1916726
- ],
- [
- -76.3792975,
- 44.0653733
- ],
- [
- -76.4427584,
- 44.0653733
- ],
- [
- -76.4427584,
- 43.9963825
- ],
- [
- -76.317027,
- 43.9963825
- ],
- [
- -76.317027,
- 43.9414581
- ],
- [
- -76.5076611,
- 43.9414581
- ],
- [
- -76.5076611,
- 43.8723335
- ],
- [
- -76.3829974,
- 43.8723335
- ],
- [
- -76.3829974,
- 43.8091872
- ],
- [
- -76.2534102,
- 43.8091872
- ],
- [
- -76.2534102,
- 43.5665222
- ],
- [
- -76.5064833,
- 43.5665222
- ],
- [
- -76.5064833,
- 43.5033881
- ],
- [
- -76.6331208,
- 43.5033881
- ],
- [
- -76.6331208,
- 43.4432252
- ],
- [
- -76.6951085,
- 43.4432252
- ],
- [
- -76.6951085,
- 43.3786858
- ],
- [
- -76.8177798,
- 43.3786858
- ],
- [
- -76.8177798,
- 43.318066
- ],
- [
- -77.682,
- 43.318066
- ],
- [
- -77.682,
- 43.3789376
- ],
- [
- -78.0565883,
- 43.3789376
- ],
- [
- -78.0565883,
- 43.4396918
- ],
- [
- -78.4389748,
- 43.4396918
- ],
- [
- -78.4389748,
- 43.3794382
- ],
- [
- -78.8803396,
- 43.3794382
- ],
- [
- -78.8803396,
- 43.3149724
- ],
- [
- -79.1298858,
- 43.3149724
- ],
- [
- -79.1298858,
- 43.2429286
- ],
- [
- -79.0669615,
- 43.2429286
- ],
- [
- -79.0669615,
- 43.1299931
- ],
- [
- -79.1298858,
- 43.1299931
- ],
- [
- -79.1298858,
- 43.0577305
- ],
- [
- -79.071264,
- 43.0577305
- ],
- [
- -79.071264,
- 42.9294906
- ],
- [
- -78.943264,
- 42.9294906
- ],
- [
- -78.943264,
- 42.7542165
- ],
- [
- -79.069439,
- 42.7542165
- ],
- [
- -79.069439,
- 42.6941622
- ],
- [
- -79.133439,
- 42.6941622
- ],
- [
- -79.133439,
- 42.6296973
- ],
- [
- -79.1947499,
- 42.6296973
- ],
- [
- -79.1947499,
- 42.5663538
- ],
- [
- -79.3786827,
- 42.5663538
- ],
- [
- -79.3786827,
- 42.5033425
- ],
- [
- -79.4442961,
- 42.5033425
- ],
- [
- -79.4442961,
- 42.4410614
- ],
- [
- -79.5679936,
- 42.4410614
- ],
- [
- -79.5679936,
- 42.3775264
- ],
- [
- -79.6906154,
- 42.3775264
- ],
- [
- -79.6906154,
- 42.3171086
- ],
- [
- -79.8164642,
- 42.3171086
- ],
- [
- -79.8164642,
- 42.2534481
- ],
- [
- -80.0052373,
- 42.2534481
- ],
- [
- -80.0052373,
- 42.1909188
- ],
- [
- -80.1916829,
- 42.1909188
- ],
- [
- -80.1916829,
- 42.1272555
- ],
- [
- -80.3167992,
- 42.1272555
- ],
- [
- -80.3167992,
- 42.0669857
- ],
- [
- -80.5063234,
- 42.0669857
- ],
- [
- -80.5063234,
- 42.0034331
- ],
- [
- -80.6930471,
- 42.0034331
- ],
- [
- -80.6930471,
- 41.9415141
- ],
- [
- -80.9440403,
- 41.9415141
- ],
- [
- -80.9440403,
- 41.8781193
- ],
- [
- -81.1942729,
- 41.8781193
- ],
- [
- -81.1942729,
- 41.8166455
- ],
- [
- -81.3190089,
- 41.8166455
- ],
- [
- -81.3190089,
- 41.7545453
- ],
- [
- -81.4418435,
- 41.7545453
- ],
- [
- -81.4418435,
- 41.690965
- ],
- [
- -81.5053523,
- 41.690965
- ],
- [
- -81.5053523,
- 41.6301643
- ],
- [
- -82.7470081,
- 41.6301643
- ],
- [
- -82.7470081,
- 41.7536942
- ],
- [
- -82.8839135,
- 41.7536942
- ],
- [
- -82.8839135,
- 41.5656075
- ],
- [
- -82.9957195,
- 41.5656075
- ],
- [
- -82.9957195,
- 41.6270375
- ],
- [
- -83.1257796,
- 41.6270375
- ],
- [
- -83.1257796,
- 41.6878411
- ],
- [
- -83.2474733,
- 41.6878411
- ],
- [
- -83.2474733,
- 41.7536942
- ],
- [
- -83.3737305,
- 41.7536942
- ],
- [
- -83.3737305,
- 41.809276
- ],
- [
- -83.3106019,
- 41.809276
- ],
- [
- -83.3106019,
- 41.8716064
- ],
- [
- -83.2474733,
- 41.8716064
- ],
- [
- -83.2474733,
- 41.9361393
- ],
- [
- -83.1843447,
- 41.9361393
- ],
- [
- -83.1843447,
- 41.9960851
- ],
- [
- -83.1207681,
- 41.9960851
- ],
- [
- -83.1207681,
- 42.2464812
- ],
- [
- -83.0589194,
- 42.2464812
- ],
- [
- -83.0589194,
- 42.3089555
- ],
- [
- -82.8685328,
- 42.3089555
- ],
- [
- -82.8685328,
- 42.3717652
- ],
- [
- -82.8072219,
- 42.3717652
- ],
- [
- -82.8072219,
- 42.558553
- ],
- [
- -82.7553745,
- 42.558553
- ],
- [
- -82.7553745,
- 42.4954945
- ],
- [
- -82.5599041,
- 42.4954945
- ],
- [
- -82.5599041,
- 42.558553
- ],
- [
- -82.4967755,
- 42.558553
- ],
- [
- -82.4967755,
- 42.6833607
- ],
- [
- -82.4328863,
- 42.6833607
- ],
- [
- -82.4328863,
- 42.9342196
- ],
- [
- -82.3700552,
- 42.9342196
- ],
- [
- -82.3700552,
- 43.0648071
- ],
- [
- -82.4328863,
- 43.0648071
- ],
- [
- -82.4328863,
- 43.1917566
- ],
- [
- -82.4947464,
- 43.1917566
- ],
- [
- -82.4947464,
- 43.5034627
- ],
- [
- -82.557133,
- 43.5034627
- ],
- [
- -82.557133,
- 43.8160901
- ],
- [
- -82.6197884,
- 43.8160901
- ],
- [
- -82.6197884,
- 43.9422098
- ],
- [
- -82.6839499,
- 43.9422098
- ],
- [
- -82.6839499,
- 44.0022641
- ],
- [
- -82.7465346,
- 44.0022641
- ],
- [
- -82.7465346,
- 44.0670545
- ],
- [
- -82.8708696,
- 44.0670545
- ],
- [
- -82.8708696,
- 44.1291935
- ],
- [
- -83.008517,
- 44.1291935
- ],
- [
- -83.008517,
- 44.0664786
- ],
- [
- -83.1336086,
- 44.0664786
- ],
- [
- -83.1336086,
- 44.0053949
- ],
- [
- -83.2414522,
- 44.0053949
- ],
- [
- -83.2414522,
- 44.9962034
- ],
- [
- -83.1806112,
- 44.9962034
- ],
- [
- -83.1806112,
- 45.067302
- ],
- [
- -83.2455172,
- 45.067302
- ],
- [
- -83.2455172,
- 45.1287382
- ],
- [
- -83.3065878,
- 45.1287382
- ],
- [
- -83.3065878,
- 45.2551509
- ],
- [
- -83.3706087,
- 45.2551509
- ],
- [
- -83.3706087,
- 45.3165923
- ],
- [
- -83.4325644,
- 45.3165923
- ],
- [
- -83.4325644,
- 45.3792105
- ],
- [
- -83.6178415,
- 45.3792105
- ],
- [
- -83.6178415,
- 45.4419665
- ],
- [
- -83.8084291,
- 45.4419665
- ],
- [
- -83.8084291,
- 45.5036189
- ],
- [
- -84.0550718,
- 45.5036189
- ],
- [
- -84.0550718,
- 45.5647907
- ],
- [
- -84.1235181,
- 45.5647907
- ],
- [
- -84.1235181,
- 45.6287845
- ],
- [
- -84.1807534,
- 45.6287845
- ],
- [
- -84.1807534,
- 45.6914688
- ],
- [
- -84.3111554,
- 45.6914688
- ],
- [
- -84.3111554,
- 45.9337076
- ],
- [
- -83.8209974,
- 45.9337076
- ],
- [
- -83.8209974,
- 45.8725113
- ],
- [
- -83.4968086,
- 45.8725113
- ],
- [
- -83.4968086,
- 45.9337076
- ],
- [
- -83.4338066,
- 45.9337076
- ],
- [
- -83.4338066,
- 46.0016863
- ],
- [
- -83.4962697,
- 46.0016863
- ],
- [
- -83.4962697,
- 46.0668178
- ],
- [
- -83.5599956,
- 46.0668178
- ],
- [
- -83.5599956,
- 46.1261576
- ],
- [
- -83.9954558,
- 46.1261576
- ],
- [
- -83.9954558,
- 46.1931747
- ],
- [
- -84.0591816,
- 46.1931747
- ],
- [
- -84.0591816,
- 46.3814972
- ],
- [
- -84.1152614,
- 46.3814972
- ],
- [
- -84.1152614,
- 46.4953584
- ],
- [
- -84.0591816,
- 46.4953584
- ],
- [
- -84.0591816,
- 46.5682653
- ],
- [
- -84.2579545,
- 46.5682653
- ],
- [
- -84.2579545,
- 46.5051232
- ],
- [
- -84.3071879,
- 46.5051232
- ],
- [
- -84.3071879,
- 46.5682653
- ],
- [
- -84.4415364,
- 46.5682653
- ],
- [
- -84.4415364,
- 46.504525
- ],
- [
- -84.9965729,
- 46.504525
- ],
- [
- -84.9965729,
- 46.6842882
- ],
- [
- -84.9298158,
- 46.6842882
- ],
- [
- -84.9298158,
- 46.818077
- ],
- [
- -85.3165894,
- 46.818077
- ],
- [
- -85.3165894,
- 46.7535825
- ],
- [
- -87.5562645,
- 46.7535825
- ],
- [
- -87.5562645,
- 47.4407371
- ],
- [
- -87.6825361,
- 47.4407371
- ],
- [
- -87.6825361,
- 47.5035554
- ],
- [
- -88.2560738,
- 47.5035554
- ],
- [
- -88.2560738,
- 47.4433716
- ],
- [
- -88.4417419,
- 47.4433716
- ],
- [
- -88.4417419,
- 47.3789949
- ],
- [
- -88.50683,
- 47.3789949
- ],
- [
- -88.50683,
- 47.3153881
- ],
- [
- -88.6312821,
- 47.3153881
- ],
- [
- -88.6312821,
- 47.2539782
- ],
- [
- -88.7569636,
- 47.2539782
- ],
- [
- -88.7569636,
- 47.1934682
- ],
- [
- -88.8838253,
- 47.1934682
- ],
- [
- -88.8838253,
- 47.1284735
- ],
- [
- -88.9434208,
- 47.1284735
- ],
- [
- -88.9434208,
- 47.0662127
- ],
- [
- -89.0708726,
- 47.0662127
- ],
- [
- -89.0708726,
- 47.0026826
- ],
- [
- -89.2565553,
- 47.0026826
- ],
- [
- -89.2565553,
- 46.9410806
- ],
- [
- -90.3677669,
- 46.9410806
- ],
- [
- -90.3677669,
- 47.6844827
- ],
- [
- -90.3069978,
- 47.6844827
- ],
- [
- -90.3069978,
- 47.7460174
- ],
- [
- -89.994859,
- 47.7460174
- ],
- [
- -89.994859,
- 47.8082719
- ],
- [
- -89.8048615,
- 47.8082719
- ],
- [
- -89.8048615,
- 47.8700562
- ],
- [
- -89.6797699,
- 47.8700562
- ],
- [
- -89.6797699,
- 47.9339637
- ],
- [
- -89.4933757,
- 47.9339637
- ],
- [
- -89.4933757,
- 47.9957956
- ],
- [
- -89.4284697,
- 47.9957956
- ],
- [
- -89.4284697,
- 48.0656377
- ],
- [
- -89.9932739,
- 48.0656377
- ],
- [
- -89.9932739,
- 48.1282966
- ],
- [
- -90.7455933,
- 48.1282966
- ],
- [
- -90.7455933,
- 48.1893056
- ],
- [
- -90.8087291,
- 48.1893056
- ],
- [
- -90.8087291,
- 48.2522065
- ],
- [
- -91.067763,
- 48.2522065
- ],
- [
- -91.067763,
- 48.1916658
- ],
- [
- -91.1946247,
- 48.1916658
- ],
- [
- -91.1946247,
- 48.1279027
- ],
- [
- -91.6814196,
- 48.1279027
- ],
- [
- -91.6814196,
- 48.2525994
- ],
- [
- -91.9321927,
- 48.2525994
- ],
- [
- -91.9321927,
- 48.3142454
- ],
- [
- -91.9929683,
- 48.3142454
- ],
- [
- -91.9929683,
- 48.3780845
- ],
- [
- -92.3189383,
- 48.3780845
- ],
- [
- -92.3189383,
- 48.2529081
- ],
- [
- -92.3732233,
- 48.2529081
- ],
- [
- -92.3732233,
- 48.3153385
- ],
- [
- -92.4322288,
- 48.3153385
- ],
- [
- -92.4322288,
- 48.4411448
- ],
- [
- -92.4977248,
- 48.4411448
- ],
- [
- -92.4977248,
- 48.501781
- ],
- [
- -92.5679413,
- 48.501781
- ],
- [
- -92.5679413,
- 48.439579
- ],
- [
- -92.6210462,
- 48.439579
- ],
- [
- -92.6210462,
- 48.5650783
- ],
- [
- -92.8086835,
- 48.5650783
- ],
- [
- -92.8086835,
- 48.6286865
- ],
- [
- -92.8086835,
- 48.6267365
- ],
- [
- -92.933185,
- 48.6267365
- ],
- [
- -92.933185,
- 48.6922145
- ],
- [
- -93.0051716,
- 48.6922145
- ],
- [
- -93.0051716,
- 48.6282965
- ],
- [
- -93.1225924,
- 48.6282965
- ],
- [
- -93.1225924,
- 48.6922145
- ],
- [
- -93.3190806,
- 48.6922145
- ],
- [
- -93.3190806,
- 48.6267365
- ],
- [
- -93.5049477,
- 48.6267365
- ],
- [
- -93.5049477,
- 48.5635164
- ],
- [
- -93.7474601,
- 48.5635164
- ],
- [
- -93.7474601,
- 48.6267365
- ],
- [
- -93.8135461,
- 48.6267365
- ],
- [
- -93.8135461,
- 48.6898775
- ],
- [
- -94.2453121,
- 48.6898775
- ],
- [
- -94.2453121,
- 48.7554327
- ],
- [
- -94.6183171,
- 48.7554327
- ],
- [
- -94.6183171,
- 48.941036
- ],
- [
- -94.6809018,
- 48.941036
- ],
- [
- -94.6809018,
- 49.0029737
- ],
- [
- -94.7441532,
- 49.0029737
- ],
- [
- -94.7441532,
- 49.2536079
- ],
- [
- -94.8084069,
- 49.2536079
- ],
- [
- -94.8084069,
- 49.3784134
- ],
- [
- -95.1192391,
- 49.3784134
- ],
- [
- -95.1192391,
- 49.4425264
- ],
- [
- -95.1934341,
- 49.4425264
- ],
- [
- -95.1934341,
- 49.0035292
- ],
- [
- -96.87069,
- 49.0035292
- ],
- [
- -96.87069,
- 49.0656063
- ],
- [
- -99.0049312,
- 49.0656063
- ],
- [
- -99.0049312,
- 49.0050714
- ],
- [
- -109.3699257,
- 49.0050714
- ],
- [
- -109.3699257,
- 49.0668231
- ],
- [
- -109.5058746,
- 49.0668231
- ],
- [
- -109.5058746,
- 49.0050714
- ],
- [
- -114.1830014,
- 49.0050714
- ],
- [
- -114.1830014,
- 49.0687317
- ],
- [
- -114.7578709,
- 49.0687317
- ],
- [
- -114.7578709,
- 49.0050714
- ],
- [
- -115.433731,
- 49.0050714
- ],
- [
- -115.433731,
- 49.0671412
- ],
- [
- -116.5062706,
- 49.0671412
- ],
- [
- -116.5062706,
- 49.0050714
- ],
- [
- -117.3089504,
- 49.0050714
- ],
- [
- -117.3089504,
- 49.0659803
- ],
- [
- -119.882945,
- 49.0659803
- ],
- [
- -119.882945,
- 49.0050714
- ],
- [
- -120.1208555,
- 49.0050714
- ],
- [
- -120.1208555,
- 49.0678367
- ],
- [
- -121.4451636,
- 49.0678367
- ],
- [
- -121.4451636,
- 49.0050714
- ],
- [
- -121.9311808,
- 49.0050714
- ],
- [
- -121.9311808,
- 49.0656099
- ],
- [
- -122.817484,
- 49.0656099
- ],
- [
- -122.817484,
- 49.0029143
- ],
- [
- -122.8795155,
- 49.0029143
- ],
- [
- -122.8795155,
- 48.9347018
- ],
- [
- -122.8174629,
- 48.9347018
- ],
- [
- -122.8174629,
- 48.8101998
- ],
- [
- -122.7538859,
- 48.8101998
- ],
- [
- -122.7538859,
- 48.7533758
- ],
- [
- -122.8712937,
- 48.7533758
- ],
- [
- -122.8712937,
- 48.8153948
- ],
- [
- -123.0055391,
- 48.8153948
- ],
- [
- -123.0055391,
- 48.7529529
- ],
- [
- -123.1296926,
- 48.7529529
- ],
- [
- -123.1296926,
- 48.6902201
- ],
- [
- -123.1838197,
- 48.6902201
- ],
- [
- -123.1838197,
- 48.7529029
- ]
- ],
- [
- [
- -122.9341743,
- 37.7521547
- ],
- [
- -122.9347457,
- 37.6842013
- ],
- [
- -123.0679013,
- 37.6849023
- ],
- [
- -123.0673747,
- 37.7475251
- ],
- [
- -123.1292603,
- 37.7478506
- ],
- [
- -123.1286894,
- 37.815685
- ],
- [
- -123.0590687,
- 37.8153192
- ],
- [
- -123.0595947,
- 37.7528143
- ]
- ],
- [
- [
- -71.6299464,
- 41.2540893
- ],
- [
- -71.4966465,
- 41.2541393
- ],
- [
- -71.4965596,
- 41.122965
- ],
- [
- -71.6298594,
- 41.1229149
- ]
- ],
- [
- [
- -70.3184265,
- 41.3775196
- ],
- [
- -70.3183384,
- 41.2448243
- ],
- [
- -70.1906612,
- 41.2448722
- ],
- [
- -70.1906239,
- 41.1886019
- ],
- [
- -69.9336025,
- 41.1886984
- ],
- [
- -69.933729,
- 41.3791941
- ],
- [
- -69.9950664,
- 41.3791712
- ],
- [
- -69.995109,
- 41.443159
- ],
- [
- -70.0707828,
- 41.4431307
- ],
- [
- -70.0706972,
- 41.3144915
- ],
- [
- -70.2461667,
- 41.3144258
- ],
- [
- -70.2462087,
- 41.3775467
- ]
- ],
- [
- [
- -68.9403374,
- 43.9404062
- ],
- [
- -68.6856948,
- 43.9404977
- ],
- [
- -68.6856475,
- 43.8721797
- ],
- [
- -68.7465405,
- 43.8721577
- ],
- [
- -68.7464976,
- 43.8102529
- ],
- [
- -68.8090782,
- 43.8102304
- ],
- [
- -68.8090343,
- 43.746728
- ],
- [
- -68.8773094,
- 43.7467034
- ],
- [
- -68.8773544,
- 43.8117826
- ],
- [
- -68.9402483,
- 43.8117599
- ]
- ],
- [
- [
- -123.1291466,
- 49.0645144
- ],
- [
- -122.9954224,
- 49.0645144
- ],
- [
- -122.9954224,
- 48.9343243
- ],
- [
- -123.1291466,
- 48.9343243
- ]
- ],
- [
- [
- -82.9407144,
- 24.7535913
- ],
- [
- -82.8719398,
- 24.7535913
- ],
- [
- -82.8719398,
- 24.6905653
- ],
- [
- -82.7446233,
- 24.6905653
- ],
- [
- -82.7446233,
- 24.6214593
- ],
- [
- -82.8088038,
- 24.6214593
- ],
- [
- -82.8088038,
- 24.5594908
- ],
- [
- -82.9407144,
- 24.5594908
- ]
- ]
- ]
- },
- {
- "name": "USGS Topographic Maps",
- "type": "tms",
- "template": "http://{switch:a,b,c}.tile.openstreetmap.us/usgs_scanned_topos/{zoom}/{x}/{y}.png",
- "polygon": [
- [
- [
- -125.990173,
- 48.9962416
- ],
- [
- -125.989419,
- 47.9948396
- ],
- [
- -123.9929739,
- 47.9955062
- ],
- [
- -123.9922429,
- 47.0059202
- ],
- [
- -125.988688,
- 47.0052409
- ],
- [
- -125.9879604,
- 46.0015618
- ],
- [
- -123.9939396,
- 46.0022529
- ],
- [
- -123.9925238,
- 43.9961708
- ],
- [
- -124.9931832,
- 43.9958116
- ],
- [
- -124.9918175,
- 41.9942149
- ],
- [
- -125.9851789,
- 41.9938465
- ],
- [
- -125.9838655,
- 40.0076111
- ],
- [
- -123.9833285,
- 40.0083757
- ],
- [
- -123.9814115,
- 37.002615
- ],
- [
- -122.21903,
- 37.0033173
- ],
- [
- -122.2184144,
- 36.011671
- ],
- [
- -122.020087,
- 36.011751
- ],
- [
- -122.0188591,
- 33.9961766
- ],
- [
- -119.9787757,
- 33.9970206
- ],
- [
- -119.9775867,
- 31.9987658
- ],
- [
- -114.0122833,
- 32.00129
- ],
- [
- -114.0116894,
- 30.9862401
- ],
- [
- -105.998294,
- 30.9896679
- ],
- [
- -105.9971419,
- 28.9901065
- ],
- [
- -102.0210506,
- 28.9918418
- ],
- [
- -102.0204916,
- 28.00733
- ],
- [
- -100.0062436,
- 28.0082173
- ],
- [
- -100.0051143,
- 25.991909
- ],
- [
- -98.0109067,
- 25.9928035
- ],
- [
- -98.0103613,
- 25.0063461
- ],
- [
- -97.0161086,
- 25.0067957
- ],
- [
- -97.016654,
- 25.9932494
- ],
- [
- -95.9824825,
- 25.9937132
- ],
- [
- -95.9835999,
- 27.9891175
- ],
- [
- -94.0200898,
- 27.9899826
- ],
- [
- -94.0206586,
- 28.9918129
- ],
- [
- -88.0156706,
- 28.9944338
- ],
- [
- -88.0162494,
- 30.0038862
- ],
- [
- -86.0277506,
- 30.0047454
- ],
- [
- -86.0271719,
- 28.9953016
- ],
- [
- -84.0187909,
- 28.9961781
- ],
- [
- -84.017095,
- 25.9817708
- ],
- [
- -81.9971976,
- 25.9826768
- ],
- [
- -81.9966618,
- 25.0134917
- ],
- [
- -84.0165592,
- 25.0125783
- ],
- [
- -84.0160068,
- 24.0052745
- ],
- [
- -80.0199985,
- 24.007096
- ],
- [
- -80.0245309,
- 32.0161282
- ],
- [
- -78.0066484,
- 32.0169819
- ],
- [
- -78.0072238,
- 32.9894278
- ],
- [
- -77.8807233,
- 32.9894807
- ],
- [
- -77.8813253,
- 33.9955918
- ],
- [
- -76.0115411,
- 33.9963653
- ],
- [
- -76.0121459,
- 34.9952552
- ],
- [
- -74.0068449,
- 34.9960749
- ],
- [
- -74.0099997,
- 40.0084254
- ],
- [
- -72.0013745,
- 40.0091931
- ],
- [
- -72.002019,
- 40.9912464
- ],
- [
- -69.8797398,
- 40.9920457
- ],
- [
- -69.8804173,
- 42.00893
- ],
- [
- -69.9927682,
- 42.0088883
- ],
- [
- -69.9934462,
- 43.0105166
- ],
- [
- -67.9845366,
- 43.0112496
- ],
- [
- -67.985224,
- 44.0103812
- ],
- [
- -65.9892568,
- 44.0110975
- ],
- [
- -65.9921237,
- 47.9993584
- ],
- [
- -70.006442,
- 47.9980181
- ],
- [
- -70.005708,
- 47.0042007
- ],
- [
- -72.023686,
- 47.003514
- ],
- [
- -72.0222508,
- 45.0059846
- ],
- [
- -78.0146667,
- 45.0038705
- ],
- [
- -78.0139662,
- 44.0026998
- ],
- [
- -80.029686,
- 44.0019763
- ],
- [
- -80.0290052,
- 43.0122994
- ],
- [
- -81.995479,
- 43.011582
- ],
- [
- -81.9982986,
- 47.0042713
- ],
- [
- -87.505706,
- 47.0023972
- ],
- [
- -87.5064535,
- 48.0142702
- ],
- [
- -88.0260889,
- 48.0140968
- ],
- [
- -88.026838,
- 49.0086686
- ],
- [
- -93.9981078,
- 49.0067142
- ],
- [
- -93.9988778,
- 50.0086456
- ],
- [
- -96.0138899,
- 50.0079995
- ],
- [
- -96.0131199,
- 49.0060547
- ]
- ],
- [
- [
- -160.5787616,
- 22.5062947
- ],
- [
- -160.5782192,
- 21.4984647
- ],
- [
- -159.0030121,
- 21.499196
- ],
- [
- -159.0027422,
- 20.9951068
- ],
- [
- -157.5083185,
- 20.995803
- ],
- [
- -157.5080519,
- 20.4960241
- ],
- [
- -155.966889,
- 20.4967444
- ],
- [
- -155.9674267,
- 21.5028287
- ],
- [
- -157.5044717,
- 21.5021151
- ],
- [
- -157.5047384,
- 21.9984962
- ],
- [
- -159.0090946,
- 21.9978002
- ],
- [
- -159.0093692,
- 22.5070181
- ]
- ],
- [
- [
- -168.006102,
- 68.9941463
- ],
- [
- -168.0047628,
- 68.0107853
- ],
- [
- -165.4842481,
- 68.0112562
- ],
- [
- -165.4829337,
- 67.0037303
- ],
- [
- -168.0034485,
- 67.0032389
- ],
- [
- -168.002195,
- 66.0017503
- ],
- [
- -169.0087448,
- 66.001546
- ],
- [
- -169.0075381,
- 64.9987675
- ],
- [
- -168.0009882,
- 64.9989798
- ],
- [
- -167.9998282,
- 63.9982374
- ],
- [
- -164.9871288,
- 63.9988964
- ],
- [
- -164.9860062,
- 62.9950845
- ],
- [
- -167.9987057,
- 62.9944019
- ],
- [
- -167.9946035,
- 59.0153692
- ],
- [
- -162.5027857,
- 59.0167799
- ],
- [
- -162.5018149,
- 58.0005815
- ],
- [
- -160.0159024,
- 58.0012389
- ],
- [
- -160.0149725,
- 57.000035
- ],
- [
- -160.5054788,
- 56.9999017
- ],
- [
- -160.5045719,
- 55.9968161
- ],
- [
- -164.012195,
- 55.9958373
- ],
- [
- -164.0113186,
- 55.00107
- ],
- [
- -165.994782,
- 55.0005023
- ],
- [
- -165.9941266,
- 54.2400584
- ],
- [
- -168.0002944,
- 54.2394734
- ],
- [
- -168.0000986,
- 54.0094921
- ],
- [
- -170.0156134,
- 54.0089011
- ],
- [
- -170.0147683,
- 53.0016446
- ],
- [
- -171.9993636,
- 53.0010487
- ],
- [
- -171.9989488,
- 52.4977745
- ],
- [
- -176.0083239,
- 52.4965566
- ],
- [
- -176.0081186,
- 52.2452555
- ],
- [
- -178.000097,
- 52.2446469
- ],
- [
- -177.9992996,
- 51.2554252
- ],
- [
- -176.0073212,
- 51.2560472
- ],
- [
- -176.0075146,
- 51.4980163
- ],
- [
- -171.9981395,
- 51.4992617
- ],
- [
- -171.9985419,
- 51.9985373
- ],
- [
- -167.9984317,
- 51.9997661
- ],
- [
- -167.9994645,
- 53.2560877
- ],
- [
- -165.9932968,
- 53.2566866
- ],
- [
- -165.9939308,
- 54.0100804
- ],
- [
- -159.0067205,
- 54.0121291
- ],
- [
- -159.0075717,
- 55.002502
- ],
- [
- -158.0190709,
- 55.0027849
- ],
- [
- -158.0199473,
- 55.9975094
- ],
- [
- -151.9963213,
- 55.9991902
- ],
- [
- -151.9981536,
- 57.9986536
- ],
- [
- -151.500341,
- 57.9987853
- ],
- [
- -151.5012894,
- 58.9919816
- ],
- [
- -138.5159989,
- 58.9953194
- ],
- [
- -138.5150471,
- 57.9986434
- ],
- [
- -136.6872422,
- 57.9991267
- ],
- [
- -136.6863158,
- 57.0016688
- ],
- [
- -135.9973698,
- 57.001856
- ],
- [
- -135.9964667,
- 56.0030544
- ],
- [
- -134.6717732,
- 56.003424
- ],
- [
- -134.6708865,
- 54.9969623
- ],
- [
- -133.9956734,
- 54.9971556
- ],
- [
- -133.9948193,
- 54.0031685
- ],
- [
- -130.0044418,
- 54.0043387
- ],
- [
- -130.0070826,
- 57.0000507
- ],
- [
- -131.975877,
- 56.9995156
- ],
- [
- -131.9787378,
- 59.9933094
- ],
- [
- -138.0071813,
- 59.991805
- ],
- [
- -138.0082158,
- 61.0125755
- ],
- [
- -140.9874011,
- 61.0118551
- ],
- [
- -140.99984,
- 71.0039309
- ],
- [
- -154.5023956,
- 71.0017377
- ],
- [
- -154.5039632,
- 71.9983391
- ],
- [
- -157.499048,
- 71.9978773
- ],
- [
- -157.4974758,
- 70.9982877
- ],
- [
- -163.0233611,
- 70.9973899
- ],
- [
- -163.0218273,
- 69.9707435
- ],
- [
- -164.9730896,
- 69.97041
- ],
- [
- -164.9717003,
- 68.994689
- ]
- ],
- [
- [
- -168.5133204,
- 62.8689586
- ],
- [
- -168.5144423,
- 63.8765677
- ],
- [
- -172.0202755,
- 63.8757975
- ],
- [
- -172.0191536,
- 62.8681608
- ]
- ],
- [
- [
- -170.9947111,
- 59.9954089
- ],
- [
- -170.995726,
- 60.9969787
- ],
- [
- -174.0045311,
- 60.9962508
- ],
- [
- -174.0035162,
- 59.9946581
- ]
- ],
- [
- [
- -156.0717261,
- 20.2854602
- ],
- [
- -154.7940471,
- 20.2860582
- ],
- [
- -154.7933145,
- 18.9029464
- ],
- [
- -156.0709936,
- 18.9023432
- ]
- ]
- ]
- },
- {
- "name": "Vejmidte (Denmark)",
- "type": "tms",
- "template": "http://{switch:a,b,c}.tile.openstreetmap.dk/danmark/vejmidte/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- 8.3743941,
- 54.9551655
- ],
- [
- 8.3683809,
- 55.4042149
- ],
- [
- 8.2103997,
- 55.4039795
- ],
- [
- 8.2087314,
- 55.4937345
- ],
- [
- 8.0502655,
- 55.4924731
- ],
- [
- 8.0185123,
- 56.7501399
- ],
- [
- 8.1819161,
- 56.7509948
- ],
- [
- 8.1763274,
- 57.0208898
- ],
- [
- 8.3413329,
- 57.0219872
- ],
- [
- 8.3392467,
- 57.1119574
- ],
- [
- 8.5054433,
- 57.1123212
- ],
- [
- 8.5033923,
- 57.2020499
- ],
- [
- 9.3316304,
- 57.2027636
- ],
- [
- 9.3319079,
- 57.2924835
- ],
- [
- 9.4978864,
- 57.2919578
- ],
- [
- 9.4988593,
- 57.3820608
- ],
- [
- 9.6649749,
- 57.3811615
- ],
- [
- 9.6687295,
- 57.5605591
- ],
- [
- 9.8351961,
- 57.5596265
- ],
- [
- 9.8374896,
- 57.6493322
- ],
- [
- 10.1725726,
- 57.6462818
- ],
- [
- 10.1754245,
- 57.7367768
- ],
- [
- 10.5118282,
- 57.7330269
- ],
- [
- 10.5152095,
- 57.8228945
- ],
- [
- 10.6834853,
- 57.8207722
- ],
- [
- 10.6751613,
- 57.6412021
- ],
- [
- 10.5077045,
- 57.6433097
- ],
- [
- 10.5039992,
- 57.5535088
- ],
- [
- 10.671038,
- 57.5514113
- ],
- [
- 10.6507805,
- 57.1024538
- ],
- [
- 10.4857673,
- 57.1045138
- ],
- [
- 10.4786236,
- 56.9249051
- ],
- [
- 10.3143981,
- 56.9267573
- ],
- [
- 10.3112341,
- 56.8369269
- ],
- [
- 10.4750295,
- 56.83509
- ],
- [
- 10.4649016,
- 56.5656681
- ],
- [
- 10.9524239,
- 56.5589761
- ],
- [
- 10.9479249,
- 56.4692243
- ],
- [
- 11.1099335,
- 56.4664675
- ],
- [
- 11.1052639,
- 56.376833
- ],
- [
- 10.9429901,
- 56.3795284
- ],
- [
- 10.9341235,
- 56.1994768
- ],
- [
- 10.7719685,
- 56.2020244
- ],
- [
- 10.7694751,
- 56.1120103
- ],
- [
- 10.6079695,
- 56.1150259
- ],
- [
- 10.4466742,
- 56.116717
- ],
- [
- 10.2865948,
- 56.118675
- ],
- [
- 10.2831527,
- 56.0281851
- ],
- [
- 10.4439274,
- 56.0270388
- ],
- [
- 10.4417713,
- 55.7579243
- ],
- [
- 10.4334961,
- 55.6693533
- ],
- [
- 10.743814,
- 55.6646861
- ],
- [
- 10.743814,
- 55.5712253
- ],
- [
- 10.8969041,
- 55.5712253
- ],
- [
- 10.9051793,
- 55.3953852
- ],
- [
- 11.0613726,
- 55.3812841
- ],
- [
- 11.0593038,
- 55.1124061
- ],
- [
- 11.0458567,
- 55.0318621
- ],
- [
- 11.2030844,
- 55.0247474
- ],
- [
- 11.2030844,
- 55.117139
- ],
- [
- 11.0593038,
- 55.1124061
- ],
- [
- 11.0613726,
- 55.3812841
- ],
- [
- 11.0789572,
- 55.5712253
- ],
- [
- 10.8969041,
- 55.5712253
- ],
- [
- 10.9258671,
- 55.6670198
- ],
- [
- 10.743814,
- 55.6646861
- ],
- [
- 10.7562267,
- 55.7579243
- ],
- [
- 10.4417713,
- 55.7579243
- ],
- [
- 10.4439274,
- 56.0270388
- ],
- [
- 10.4466742,
- 56.116717
- ],
- [
- 10.6079695,
- 56.1150259
- ],
- [
- 10.6052053,
- 56.0247462
- ],
- [
- 10.9258671,
- 56.0201215
- ],
- [
- 10.9197132,
- 55.9309388
- ],
- [
- 11.0802782,
- 55.92792
- ],
- [
- 11.0858066,
- 56.0178284
- ],
- [
- 11.7265047,
- 56.005058
- ],
- [
- 11.7319981,
- 56.0952142
- ],
- [
- 12.0540333,
- 56.0871256
- ],
- [
- 12.0608477,
- 56.1762576
- ],
- [
- 12.7023469,
- 56.1594405
- ],
- [
- 12.6611131,
- 55.7114318
- ],
- [
- 12.9792318,
- 55.7014026
- ],
- [
- 12.9612912,
- 55.5217294
- ],
- [
- 12.3268659,
- 55.5412096
- ],
- [
- 12.3206071,
- 55.4513655
- ],
- [
- 12.4778226,
- 55.447067
- ],
- [
- 12.4702432,
- 55.3570479
- ],
- [
- 12.6269738,
- 55.3523837
- ],
- [
- 12.6200898,
- 55.2632576
- ],
- [
- 12.4627339,
- 55.26722
- ],
- [
- 12.4552949,
- 55.1778223
- ],
- [
- 12.2987046,
- 55.1822303
- ],
- [
- 12.2897344,
- 55.0923641
- ],
- [
- 12.6048608,
- 55.0832904
- ],
- [
- 12.5872011,
- 54.9036285
- ],
- [
- 12.2766618,
- 54.9119031
- ],
- [
- 12.2610181,
- 54.7331602
- ],
- [
- 12.1070691,
- 54.7378161
- ],
- [
- 12.0858621,
- 54.4681655
- ],
- [
- 11.7794953,
- 54.4753579
- ],
- [
- 11.7837381,
- 54.5654783
- ],
- [
- 11.1658525,
- 54.5782155
- ],
- [
- 11.1706443,
- 54.6686508
- ],
- [
- 10.8617173,
- 54.6733956
- ],
- [
- 10.8651245,
- 54.7634667
- ],
- [
- 10.7713646,
- 54.7643888
- ],
- [
- 10.7707276,
- 54.7372807
- ],
- [
- 10.7551428,
- 54.7375776
- ],
- [
- 10.7544039,
- 54.7195666
- ],
- [
- 10.7389074,
- 54.7197588
- ],
- [
- 10.7384368,
- 54.7108482
- ],
- [
- 10.7074486,
- 54.7113045
- ],
- [
- 10.7041094,
- 54.6756741
- ],
- [
- 10.5510973,
- 54.6781698
- ],
- [
- 10.5547184,
- 54.7670245
- ],
- [
- 10.2423994,
- 54.7705935
- ],
- [
- 10.2459845,
- 54.8604673
- ],
- [
- 10.0902268,
- 54.8622134
- ],
- [
- 10.0873731,
- 54.7723851
- ],
- [
- 9.1555798,
- 54.7769557
- ],
- [
- 9.1562752,
- 54.8675369
- ],
- [
- 8.5321973,
- 54.8663765
- ],
- [
- 8.531432,
- 54.95516
- ]
- ],
- [
- [
- 11.4577738,
- 56.819554
- ],
- [
- 11.7849181,
- 56.8127385
- ],
- [
- 11.7716715,
- 56.6332796
- ],
- [
- 11.4459621,
- 56.6401087
- ]
- ],
- [
- [
- 11.3274736,
- 57.3612962
- ],
- [
- 11.3161808,
- 57.1818004
- ],
- [
- 11.1508692,
- 57.1847276
- ],
- [
- 11.1456628,
- 57.094962
- ],
- [
- 10.8157703,
- 57.1001693
- ],
- [
- 10.8290599,
- 57.3695272
- ]
- ],
- [
- [
- 11.5843266,
- 56.2777928
- ],
- [
- 11.5782882,
- 56.1880397
- ],
- [
- 11.7392309,
- 56.1845765
- ],
- [
- 11.7456428,
- 56.2743186
- ]
- ],
- [
- [
- 14.6825922,
- 55.3639405
- ],
- [
- 14.8395247,
- 55.3565231
- ],
- [
- 14.8263755,
- 55.2671261
- ],
- [
- 15.1393406,
- 55.2517359
- ],
- [
- 15.1532015,
- 55.3410836
- ],
- [
- 15.309925,
- 55.3330556
- ],
- [
- 15.295719,
- 55.2437356
- ],
- [
- 15.1393406,
- 55.2517359
- ],
- [
- 15.1255631,
- 55.1623802
- ],
- [
- 15.2815819,
- 55.1544167
- ],
- [
- 15.2535578,
- 54.9757646
- ],
- [
- 14.6317464,
- 55.0062496
- ]
- ]
- ],
- "terms_url": "http://wiki.openstreetmap.org/wiki/Vejmidte",
- "terms_text": "Danish municipalities"
- },
- {
- "name": "Vienna: Beschriftungen (annotations)",
- "type": "tms",
- "template": "http://www.wien.gv.at/wmts/beschriftung/normal/google3857/{zoom}/{y}/{x}.png",
- "scaleExtent": [
- 0,
- 19
- ],
- "polygon": [
- [
- [
- 16.17,
- 48.1
- ],
- [
- 16.17,
- 48.33
- ],
- [
- 16.58,
- 48.33
- ],
- [
- 16.58,
- 48.1
- ],
- [
- 16.17,
- 48.1
- ]
- ]
- ],
- "terms_url": "http://data.wien.gv.at/",
- "terms_text": "Stadt Wien"
- },
- {
- "name": "Vienna: Mehrzweckkarte (general purpose)",
- "type": "tms",
- "template": "http://www.wien.gv.at/wmts/fmzk/pastell/google3857/{zoom}/{y}/{x}.jpeg",
- "scaleExtent": [
- 0,
- 19
- ],
- "polygon": [
- [
- [
- 16.17,
- 48.1
- ],
- [
- 16.17,
- 48.33
- ],
- [
- 16.58,
- 48.33
- ],
- [
- 16.58,
- 48.1
- ],
- [
- 16.17,
- 48.1
- ]
- ]
- ],
- "terms_url": "http://data.wien.gv.at/",
- "terms_text": "Stadt Wien"
- },
- {
- "name": "Vienna: Orthofoto (aerial image)",
- "type": "tms",
- "template": "http://www.wien.gv.at/wmts/lb/farbe/google3857/{zoom}/{y}/{x}.jpeg",
- "scaleExtent": [
- 0,
- 19
- ],
- "polygon": [
- [
- [
- 16.17,
- 48.1
- ],
- [
- 16.17,
- 48.33
- ],
- [
- 16.58,
- 48.33
- ],
- [
- 16.58,
- 48.1
- ],
- [
- 16.17,
- 48.1
- ]
- ]
- ],
- "terms_url": "http://data.wien.gv.at/",
- "terms_text": "Stadt Wien"
- },
- {
- "name": "basemap.at",
- "type": "tms",
- "description": "Basemap of Austria, based on goverment data.",
- "template": "http://maps.wien.gv.at/basemap/geolandbasemap/normal/google3857/{zoom}/{y}/{x}.jpeg",
- "polygon": [
- [
- [
- 16.5073284,
- 46.9929304
- ],
- [
- 16.283417,
- 46.9929304
- ],
- [
- 16.135839,
- 46.8713046
- ],
- [
- 15.9831722,
- 46.8190947
- ],
- [
- 16.0493278,
- 46.655175
- ],
- [
- 15.8610387,
- 46.7180116
- ],
- [
- 15.7592608,
- 46.6900933
- ],
- [
- 15.5607938,
- 46.6796202
- ],
- [
- 15.5760605,
- 46.6342132
- ],
- [
- 15.4793715,
- 46.6027553
- ],
- [
- 15.4335715,
- 46.6516819
- ],
- [
- 15.2249267,
- 46.6342132
- ],
- [
- 15.0468154,
- 46.6481886
- ],
- [
- 14.9908376,
- 46.5887681
- ],
- [
- 14.9603042,
- 46.6237293
- ],
- [
- 14.8534374,
- 46.6027553
- ],
- [
- 14.8330818,
- 46.5012666
- ],
- [
- 14.7516595,
- 46.4977636
- ],
- [
- 14.6804149,
- 46.4381781
- ],
- [
- 14.6142593,
- 46.4381781
- ],
- [
- 14.578637,
- 46.3785275
- ],
- [
- 14.4412369,
- 46.4311638
- ],
- [
- 14.1613476,
- 46.4276563
- ],
- [
- 14.1257253,
- 46.4767409
- ],
- [
- 14.0188585,
- 46.4767409
- ],
- [
- 13.9119917,
- 46.5257813
- ],
- [
- 13.8254805,
- 46.5047694
- ],
- [
- 13.4438134,
- 46.560783
- ],
- [
- 13.3064132,
- 46.5502848
- ],
- [
- 13.1283019,
- 46.5887681
- ],
- [
- 12.8433237,
- 46.6132433
- ],
- [
- 12.7262791,
- 46.6412014
- ],
- [
- 12.5125455,
- 46.6656529
- ],
- [
- 12.3598787,
- 46.7040543
- ],
- [
- 12.3649676,
- 46.7703197
- ],
- [
- 12.2886341,
- 46.7772902
- ],
- [
- 12.2733674,
- 46.8852187
- ],
- [
- 12.2072118,
- 46.8747835
- ],
- [
- 12.1308784,
- 46.9026062
- ],
- [
- 12.1156117,
- 46.9998721
- ],
- [
- 12.2530119,
- 47.0657733
- ],
- [
- 12.2123007,
- 47.0934969
- ],
- [
- 11.9833004,
- 47.0449712
- ],
- [
- 11.7339445,
- 46.9616816
- ],
- [
- 11.6321666,
- 47.010283
- ],
- [
- 11.5405665,
- 46.9755722
- ],
- [
- 11.4998553,
- 47.0068129
- ],
- [
- 11.418433,
- 46.9651546
- ],
- [
- 11.2555884,
- 46.9755722
- ],
- [
- 11.1130993,
- 46.913036
- ],
- [
- 11.0418548,
- 46.7633482
- ],
- [
- 10.8891879,
- 46.7598621
- ],
- [
- 10.7416099,
- 46.7842599
- ],
- [
- 10.7059877,
- 46.8643462
- ],
- [
- 10.5787653,
- 46.8399847
- ],
- [
- 10.4566318,
- 46.8504267
- ],
- [
- 10.4769874,
- 46.9269392
- ],
- [
- 10.3853873,
- 46.9894592
- ],
- [
- 10.2327204,
- 46.8643462
- ],
- [
- 10.1207647,
- 46.8330223
- ],
- [
- 9.8663199,
- 46.9408389
- ],
- [
- 9.9019422,
- 47.0033426
- ],
- [
- 9.6831197,
- 47.0588402
- ],
- [
- 9.6118752,
- 47.0380354
- ],
- [
- 9.6322307,
- 47.128131
- ],
- [
- 9.5813418,
- 47.1662025
- ],
- [
- 9.5406306,
- 47.2664422
- ],
- [
- 9.6067863,
- 47.3492559
- ],
- [
- 9.6729419,
- 47.369939
- ],
- [
- 9.6424085,
- 47.4457079
- ],
- [
- 9.5660751,
- 47.4801122
- ],
- [
- 9.7136531,
- 47.5282405
- ],
- [
- 9.7848976,
- 47.5969187
- ],
- [
- 9.8357866,
- 47.5454185
- ],
- [
- 9.9477423,
- 47.538548
- ],
- [
- 10.0902313,
- 47.4491493
- ],
- [
- 10.1105869,
- 47.3664924
- ],
- [
- 10.2428982,
- 47.3871688
- ],
- [
- 10.1869203,
- 47.2698953
- ],
- [
- 10.3243205,
- 47.2975125
- ],
- [
- 10.4820763,
- 47.4491493
- ],
- [
- 10.4311873,
- 47.4869904
- ],
- [
- 10.4413651,
- 47.5900549
- ],
- [
- 10.4871652,
- 47.5522881
- ],
- [
- 10.5482319,
- 47.5351124
- ],
- [
- 10.5991209,
- 47.5660246
- ],
- [
- 10.7568766,
- 47.5316766
- ],
- [
- 10.8891879,
- 47.5454185
- ],
- [
- 10.9400769,
- 47.4869904
- ],
- [
- 10.9960547,
- 47.3906141
- ],
- [
- 11.2352328,
- 47.4422662
- ],
- [
- 11.2810328,
- 47.3975039
- ],
- [
- 11.4235219,
- 47.5144941
- ],
- [
- 11.5761888,
- 47.5076195
- ],
- [
- 11.6067221,
- 47.5900549
- ],
- [
- 11.8357224,
- 47.5866227
- ],
- [
- 12.003656,
- 47.6243647
- ],
- [
- 12.2072118,
- 47.6037815
- ],
- [
- 12.1614117,
- 47.6963421
- ],
- [
- 12.2581008,
- 47.7442718
- ],
- [
- 12.2530119,
- 47.6792136
- ],
- [
- 12.4311232,
- 47.7100408
- ],
- [
- 12.4921899,
- 47.631224
- ],
- [
- 12.5685234,
- 47.6277944
- ],
- [
- 12.6295901,
- 47.6894913
- ],
- [
- 12.7720792,
- 47.6689338
- ],
- [
- 12.8331459,
- 47.5419833
- ],
- [
- 12.975635,
- 47.4732332
- ],
- [
- 13.0417906,
- 47.4938677
- ],
- [
- 13.0367017,
- 47.5557226
- ],
- [
- 13.0977685,
- 47.6415112
- ],
- [
- 13.0316128,
- 47.7100408
- ],
- [
- 12.9043905,
- 47.7203125
- ],
- [
- 13.0061684,
- 47.84683
- ],
- [
- 12.9451016,
- 47.9355501
- ],
- [
- 12.8636793,
- 47.9594103
- ],
- [
- 12.8636793,
- 48.0036929
- ],
- [
- 12.7517236,
- 48.0989418
- ],
- [
- 12.8738571,
- 48.2109733
- ],
- [
- 12.9603683,
- 48.2109733
- ],
- [
- 13.0417906,
- 48.2652035
- ],
- [
- 13.1842797,
- 48.2990682
- ],
- [
- 13.2606131,
- 48.2922971
- ],
- [
- 13.3980133,
- 48.3565867
- ],
- [
- 13.4438134,
- 48.417418
- ],
- [
- 13.4387245,
- 48.5523383
- ],
- [
- 13.509969,
- 48.5860123
- ],
- [
- 13.6117469,
- 48.5725454
- ],
- [
- 13.7287915,
- 48.5118999
- ],
- [
- 13.7847694,
- 48.5725454
- ],
- [
- 13.8203916,
- 48.6263915
- ],
- [
- 13.7949471,
- 48.7171267
- ],
- [
- 13.850925,
- 48.7741724
- ],
- [
- 14.0595697,
- 48.6633774
- ],
- [
- 14.0137696,
- 48.6331182
- ],
- [
- 14.0748364,
- 48.5927444
- ],
- [
- 14.2173255,
- 48.5961101
- ],
- [
- 14.3649034,
- 48.5489696
- ],
- [
- 14.4666813,
- 48.6499311
- ],
- [
- 14.5582815,
- 48.5961101
- ],
- [
- 14.5989926,
- 48.6263915
- ],
- [
- 14.7211261,
- 48.5759124
- ],
- [
- 14.7211261,
- 48.6868997
- ],
- [
- 14.822904,
- 48.7271983
- ],
- [
- 14.8178151,
- 48.777526
- ],
- [
- 14.9647227,
- 48.7851754
- ],
- [
- 14.9893637,
- 49.0126611
- ],
- [
- 15.1485933,
- 48.9950306
- ],
- [
- 15.1943934,
- 48.9315502
- ],
- [
- 15.3063491,
- 48.9850128
- ],
- [
- 15.3928603,
- 48.9850128
- ],
- [
- 15.4844604,
- 48.9282069
- ],
- [
- 15.749083,
- 48.8545973
- ],
- [
- 15.8406831,
- 48.8880697
- ],
- [
- 16.0086166,
- 48.7808794
- ],
- [
- 16.2070835,
- 48.7339115
- ],
- [
- 16.3953727,
- 48.7372678
- ],
- [
- 16.4920617,
- 48.8110498
- ],
- [
- 16.6905286,
- 48.7741724
- ],
- [
- 16.7057953,
- 48.7339115
- ],
- [
- 16.8991733,
- 48.713769
- ],
- [
- 16.9755067,
- 48.515271
- ],
- [
- 16.8482844,
- 48.4511817
- ],
- [
- 16.8533733,
- 48.3464411
- ],
- [
- 16.9551512,
- 48.2516513
- ],
- [
- 16.9907734,
- 48.1498955
- ],
- [
- 17.0925513,
- 48.1397088
- ],
- [
- 17.0823736,
- 48.0241182
- ],
- [
- 17.1739737,
- 48.0207146
- ],
- [
- 17.0823736,
- 47.8741447
- ],
- [
- 16.9856845,
- 47.8673174
- ],
- [
- 17.0823736,
- 47.8092489
- ],
- [
- 17.0925513,
- 47.7031919
- ],
- [
- 16.7414176,
- 47.6792136
- ],
- [
- 16.7057953,
- 47.7511153
- ],
- [
- 16.5378617,
- 47.7545368
- ],
- [
- 16.5480395,
- 47.7066164
- ],
- [
- 16.4208172,
- 47.6689338
- ],
- [
- 16.573484,
- 47.6175045
- ],
- [
- 16.670173,
- 47.631224
- ],
- [
- 16.7108842,
- 47.538548
- ],
- [
- 16.6599952,
- 47.4491493
- ],
- [
- 16.5429506,
- 47.3940591
- ],
- [
- 16.4615283,
- 47.3940591
- ],
- [
- 16.4920617,
- 47.276801
- ],
- [
- 16.425906,
- 47.1973317
- ],
- [
- 16.4717061,
- 47.1489007
- ],
- [
- 16.5480395,
- 47.1489007
- ],
- [
- 16.476795,
- 47.0796369
- ],
- [
- 16.527684,
- 47.0588402
- ]
- ]
- ],
- "terms_text": "basemap.at",
- "id": "basemap.at"
- }
- ],
- "wikipedia": [
- [
- "English",
- "English",
- "en"
- ],
- [
- "German",
- "Deutsch",
- "de"
- ],
- [
- "Dutch",
- "Nederlands",
- "nl"
- ],
- [
- "French",
- "Français",
- "fr"
- ],
- [
- "Italian",
- "Italiano",
- "it"
- ],
- [
- "Russian",
- "Русский",
- "ru"
- ],
- [
- "Spanish",
- "Español",
- "es"
- ],
- [
- "Polish",
- "Polski",
- "pl"
- ],
- [
- "Swedish",
- "Svenska",
- "sv"
- ],
- [
- "Japanese",
- "日本語",
- "ja"
- ],
- [
- "Portuguese",
- "Português",
- "pt"
- ],
- [
- "Chinese",
- "中文",
- "zh"
- ],
- [
- "Vietnamese",
- "Tiếng Việt",
- "vi"
- ],
- [
- "Ukrainian",
- "Українська",
- "uk"
- ],
- [
- "Catalan",
- "Català",
- "ca"
- ],
- [
- "Norwegian (Bokmål)",
- "Norsk (Bokmål)",
- "no"
- ],
- [
- "Waray-Waray",
- "Winaray",
- "war"
- ],
- [
- "Cebuano",
- "Sinugboanong Binisaya",
- "ceb"
- ],
- [
- "Finnish",
- "Suomi",
- "fi"
- ],
- [
- "Persian",
- "فارسی",
- "fa"
- ],
- [
- "Czech",
- "Čeština",
- "cs"
- ],
- [
- "Hungarian",
- "Magyar",
- "hu"
- ],
- [
- "Korean",
- "한국어",
- "ko"
- ],
- [
- "Romanian",
- "Română",
- "ro"
- ],
- [
- "Arabic",
- "العربية",
- "ar"
- ],
- [
- "Turkish",
- "Türkçe",
- "tr"
- ],
- [
- "Indonesian",
- "Bahasa Indonesia",
- "id"
- ],
- [
- "Kazakh",
- "Қазақша",
- "kk"
- ],
- [
- "Malay",
- "Bahasa Melayu",
- "ms"
- ],
- [
- "Serbian",
- "Српски / Srpski",
- "sr"
- ],
- [
- "Slovak",
- "Slovenčina",
- "sk"
- ],
- [
- "Esperanto",
- "Esperanto",
- "eo"
- ],
- [
- "Danish",
- "Dansk",
- "da"
- ],
- [
- "Lithuanian",
- "Lietuvių",
- "lt"
- ],
- [
- "Basque",
- "Euskara",
- "eu"
- ],
- [
- "Bulgarian",
- "Български",
- "bg"
- ],
- [
- "Hebrew",
- "עברית",
- "he"
- ],
- [
- "Slovenian",
- "Slovenščina",
- "sl"
- ],
- [
- "Croatian",
- "Hrvatski",
- "hr"
- ],
- [
- "Volapük",
- "Volapük",
- "vo"
- ],
- [
- "Estonian",
- "Eesti",
- "et"
- ],
- [
- "Hindi",
- "हिन्दी",
- "hi"
- ],
- [
- "Uzbek",
- "O‘zbek",
- "uz"
- ],
- [
- "Galician",
- "Galego",
- "gl"
- ],
- [
- "Norwegian (Nynorsk)",
- "Nynorsk",
- "nn"
- ],
- [
- "Simple English",
- "Simple English",
- "simple"
- ],
- [
- "Azerbaijani",
- "Azərbaycanca",
- "az"
- ],
- [
- "Latin",
- "Latina",
- "la"
- ],
- [
- "Greek",
- "Ελληνικά",
- "el"
- ],
- [
- "Thai",
- "ไทย",
- "th"
- ],
- [
- "Serbo-Croatian",
- "Srpskohrvatski / Српскохрватски",
- "sh"
- ],
- [
- "Georgian",
- "ქართული",
- "ka"
- ],
- [
- "Occitan",
- "Occitan",
- "oc"
- ],
- [
- "Macedonian",
- "Македонски",
- "mk"
- ],
- [
- "Newar / Nepal Bhasa",
- "नेपाल भाषा",
- "new"
- ],
- [
- "Tagalog",
- "Tagalog",
- "tl"
- ],
- [
- "Piedmontese",
- "Piemontèis",
- "pms"
- ],
- [
- "Belarusian",
- "Беларуская",
- "be"
- ],
- [
- "Haitian",
- "Krèyol ayisyen",
- "ht"
- ],
- [
- "Tamil",
- "தமிழ்",
- "ta"
- ],
- [
- "Telugu",
- "తెలుగు",
- "te"
- ],
- [
- "Belarusian (Taraškievica)",
- "Беларуская (тарашкевіца)",
- "be-x-old"
- ],
- [
- "Latvian",
- "Latviešu",
- "lv"
- ],
- [
- "Breton",
- "Brezhoneg",
- "br"
- ],
- [
- "Malagasy",
- "Malagasy",
- "mg"
- ],
- [
- "Albanian",
- "Shqip",
- "sq"
- ],
- [
- "Armenian",
- "Հայերեն",
- "hy"
- ],
- [
- "Tatar",
- "Tatarça / Татарча",
- "tt"
- ],
- [
- "Javanese",
- "Basa Jawa",
- "jv"
- ],
- [
- "Welsh",
- "Cymraeg",
- "cy"
- ],
- [
- "Marathi",
- "मराठी",
- "mr"
- ],
- [
- "Luxembourgish",
- "Lëtzebuergesch",
- "lb"
- ],
- [
- "Icelandic",
- "Íslenska",
- "is"
- ],
- [
- "Bosnian",
- "Bosanski",
- "bs"
- ],
- [
- "Burmese",
- "မြန်မာဘာသာ",
- "my"
- ],
- [
- "Yoruba",
- "Yorùbá",
- "yo"
- ],
- [
- "Bashkir",
- "Башҡорт",
- "ba"
- ],
- [
- "Malayalam",
- "മലയാളം",
- "ml"
- ],
- [
- "Aragonese",
- "Aragonés",
- "an"
- ],
- [
- "Lombard",
- "Lumbaart",
- "lmo"
- ],
- [
- "Afrikaans",
- "Afrikaans",
- "af"
- ],
- [
- "West Frisian",
- "Frysk",
- "fy"
- ],
- [
- "Western Panjabi",
- "شاہ مکھی پنجابی (Shāhmukhī Pañjābī)",
- "pnb"
- ],
- [
- "Bengali",
- "বাংলা",
- "bn"
- ],
- [
- "Swahili",
- "Kiswahili",
- "sw"
- ],
- [
- "Bishnupriya Manipuri",
- "ইমার ঠার/বিষ্ণুপ্রিয়া মণিপুরী",
- "bpy"
- ],
- [
- "Ido",
- "Ido",
- "io"
- ],
- [
- "Kirghiz",
- "Кыргызча",
- "ky"
- ],
- [
- "Urdu",
- "اردو",
- "ur"
- ],
- [
- "Nepali",
- "नेपाली",
- "ne"
- ],
- [
- "Sicilian",
- "Sicilianu",
- "scn"
- ],
- [
- "Gujarati",
- "ગુજરાતી",
- "gu"
- ],
- [
- "Cantonese",
- "粵語",
- "zh-yue"
- ],
- [
- "Low Saxon",
- "Plattdüütsch",
- "nds"
- ],
- [
- "Kurdish",
- "Kurdî / كوردی",
- "ku"
- ],
- [
- "Irish",
- "Gaeilge",
- "ga"
- ],
- [
- "Asturian",
- "Asturianu",
- "ast"
- ],
- [
- "Quechua",
- "Runa Simi",
- "qu"
- ],
- [
- "Sundanese",
- "Basa Sunda",
- "su"
- ],
- [
- "Chuvash",
- "Чăваш",
- "cv"
- ],
- [
- "Scots",
- "Scots",
- "sco"
- ],
- [
- "Interlingua",
- "Interlingua",
- "ia"
- ],
- [
- "Alemannic",
- "Alemannisch",
- "als"
- ],
- [
- "Buginese",
- "Basa Ugi",
- "bug"
- ],
- [
- "Neapolitan",
- "Nnapulitano",
- "nap"
- ],
- [
- "Samogitian",
- "Žemaitėška",
- "bat-smg"
- ],
- [
- "Kannada",
- "ಕನ್ನಡ",
- "kn"
- ],
- [
- "Banyumasan",
- "Basa Banyumasan",
- "map-bms"
- ],
- [
- "Walloon",
- "Walon",
- "wa"
- ],
- [
- "Amharic",
- "አማርኛ",
- "am"
- ],
- [
- "Sorani",
- "Soranî / کوردی",
- "ckb"
- ],
- [
- "Scottish Gaelic",
- "Gàidhlig",
- "gd"
- ],
- [
- "Fiji Hindi",
- "Fiji Hindi",
- "hif"
- ],
- [
- "Min Nan",
- "Bân-lâm-gú",
- "zh-min-nan"
- ],
- [
- "Tajik",
- "Тоҷикӣ",
- "tg"
- ],
- [
- "Mazandarani",
- "مَزِروني",
- "mzn"
- ],
- [
- "Egyptian Arabic",
- "مصرى (Maṣrī)",
- "arz"
- ],
- [
- "Yiddish",
- "ייִדיש",
- "yi"
- ],
- [
- "Venetian",
- "Vèneto",
- "vec"
- ],
- [
- "Mongolian",
- "Монгол",
- "mn"
- ],
- [
- "Tarantino",
- "Tarandíne",
- "roa-tara"
- ],
- [
- "Sanskrit",
- "संस्कृतम्",
- "sa"
- ],
- [
- "Nahuatl",
- "Nāhuatl",
- "nah"
- ],
- [
- "Ossetian",
- "Иронау",
- "os"
- ],
- [
- "Sakha",
- "Саха тыла (Saxa Tyla)",
- "sah"
- ],
- [
- "Kapampangan",
- "Kapampangan",
- "pam"
- ],
- [
- "Upper Sorbian",
- "Hornjoserbsce",
- "hsb"
- ],
- [
- "Sinhalese",
- "සිංහල",
- "si"
- ],
- [
- "Northern Sami",
- "Sámegiella",
- "se"
- ],
- [
- "Limburgish",
- "Limburgs",
- "li"
- ],
- [
- "Maori",
- "Māori",
- "mi"
- ],
- [
- "Bavarian",
- "Boarisch",
- "bar"
- ],
- [
- "Corsican",
- "Corsu",
- "co"
- ],
- [
- "Ilokano",
- "Ilokano",
- "ilo"
- ],
- [
- "Gan",
- "贛語",
- "gan"
- ],
- [
- "Tibetan",
- "བོད་སྐད",
- "bo"
- ],
- [
- "Gilaki",
- "گیلکی",
- "glk"
- ],
- [
- "Faroese",
- "Føroyskt",
- "fo"
- ],
- [
- "Rusyn",
- "русиньскый язык",
- "rue"
- ],
- [
- "Punjabi",
- "ਪੰਜਾਬੀ",
- "pa"
- ],
- [
- "Central_Bicolano",
- "Bikol",
- "bcl"
- ],
- [
- "Hill Mari",
- "Кырык Мары (Kyryk Mary) ",
- "mrj"
- ],
- [
- "Võro",
- "Võro",
- "fiu-vro"
- ],
- [
- "Dutch Low Saxon",
- "Nedersaksisch",
- "nds-nl"
- ],
- [
- "Turkmen",
- "تركمن / Туркмен",
- "tk"
- ],
- [
- "Pashto",
- "پښتو",
- "ps"
- ],
- [
- "West Flemish",
- "West-Vlams",
- "vls"
- ],
- [
- "Mingrelian",
- "მარგალური (Margaluri)",
- "xmf"
- ],
- [
- "Manx",
- "Gaelg",
- "gv"
- ],
- [
- "Zazaki",
- "Zazaki",
- "diq"
- ],
- [
- "Pangasinan",
- "Pangasinan",
- "pag"
- ],
- [
- "Komi",
- "Коми",
- "kv"
- ],
- [
- "Zeelandic",
- "Zeêuws",
- "zea"
- ],
- [
- "Divehi",
- "ދިވެހިބަސް",
- "dv"
- ],
- [
- "Oriya",
- "ଓଡ଼ିଆ",
- "or"
- ],
- [
- "Khmer",
- "ភាសាខ្មែរ",
- "km"
- ],
- [
- "Norman",
- "Nouormand/Normaund",
- "nrm"
- ],
- [
- "Romansh",
- "Rumantsch",
- "rm"
- ],
- [
- "Komi-Permyak",
- "Перем Коми (Perem Komi)",
- "koi"
- ],
- [
- "Udmurt",
- "Удмурт кыл",
- "udm"
- ],
- [
- "Meadow Mari",
- "Олык Марий (Olyk Marij)",
- "mhr"
- ],
- [
- "Ladino",
- "Dzhudezmo",
- "lad"
- ],
- [
- "North Frisian",
- "Nordfriisk",
- "frr"
- ],
- [
- "Kashubian",
- "Kaszëbsczi",
- "csb"
- ],
- [
- "Ligurian",
- "Líguru",
- "lij"
- ],
- [
- "Wu",
- "吴语",
- "wuu"
- ],
- [
- "Friulian",
- "Furlan",
- "fur"
- ],
- [
- "Vepsian",
- "Vepsän",
- "vep"
- ],
- [
- "Classical Chinese",
- "古文 / 文言文",
- "zh-classical"
- ],
- [
- "Uyghur",
- "ئۇيغۇر تىلى",
- "ug"
- ],
- [
- "Saterland Frisian",
- "Seeltersk",
- "stq"
- ],
- [
- "Sardinian",
- "Sardu",
- "sc"
- ],
- [
- "Aromanian",
- "Armãneashce",
- "roa-rup"
- ],
- [
- "Pali",
- "पाऴि",
- "pi"
- ],
- [
- "Somali",
- "Soomaaliga",
- "so"
- ],
- [
- "Bihari",
- "भोजपुरी",
- "bh"
- ],
- [
- "Maltese",
- "Malti",
- "mt"
- ],
- [
- "Aymara",
- "Aymar",
- "ay"
- ],
- [
- "Ripuarian",
- "Ripoarisch",
- "ksh"
- ],
- [
- "Novial",
- "Novial",
- "nov"
- ],
- [
- "Anglo-Saxon",
- "Englisc",
- "ang"
- ],
- [
- "Cornish",
- "Kernewek/Karnuack",
- "kw"
- ],
- [
- "Navajo",
- "Diné bizaad",
- "nv"
- ],
- [
- "Picard",
- "Picard",
- "pcd"
- ],
- [
- "Hakka",
- "Hak-kâ-fa / 客家話",
- "hak"
- ],
- [
- "Guarani",
- "Avañe'ẽ",
- "gn"
- ],
- [
- "Extremaduran",
- "Estremeñu",
- "ext"
- ],
- [
- "Franco-Provençal/Arpitan",
- "Arpitan",
- "frp"
- ],
- [
- "Assamese",
- "অসমীয়া",
- "as"
- ],
- [
- "Silesian",
- "Ślůnski",
- "szl"
- ],
- [
- "Gagauz",
- "Gagauz",
- "gag"
- ],
- [
- "Interlingue",
- "Interlingue",
- "ie"
- ],
- [
- "Lingala",
- "Lingala",
- "ln"
- ],
- [
- "Emilian-Romagnol",
- "Emiliàn e rumagnòl",
- "eml"
- ],
- [
- "Chechen",
- "Нохчийн",
- "ce"
- ],
- [
- "Kalmyk",
- "Хальмг",
- "xal"
- ],
- [
- "Palatinate German",
- "Pfälzisch",
- "pfl"
- ],
- [
- "Hawaiian",
- "Hawai`i",
- "haw"
- ],
- [
- "Karachay-Balkar",
- "Къарачай-Малкъар (Qarachay-Malqar)",
- "krc"
- ],
- [
- "Pennsylvania German",
- "Deitsch",
- "pdc"
- ],
- [
- "Kinyarwanda",
- "Ikinyarwanda",
- "rw"
- ],
- [
- "Crimean Tatar",
- "Qırımtatarca",
- "crh"
- ],
- [
- "Acehnese",
- "Bahsa Acèh",
- "ace"
- ],
- [
- "Tongan",
- "faka Tonga",
- "to"
- ],
- [
- "Greenlandic",
- "Kalaallisut",
- "kl"
- ],
- [
- "Lower Sorbian",
- "Dolnoserbski",
- "dsb"
- ],
- [
- "Aramaic",
- "ܐܪܡܝܐ",
- "arc"
- ],
- [
- "Erzya",
- "Эрзянь (Erzjanj Kelj)",
- "myv"
- ],
- [
- "Lezgian",
- "Лезги чІал (Lezgi č’al)",
- "lez"
- ],
- [
- "Banjar",
- "Bahasa Banjar",
- "bjn"
- ],
- [
- "Shona",
- "chiShona",
- "sn"
- ],
- [
- "Papiamentu",
- "Papiamentu",
- "pap"
- ],
- [
- "Kabyle",
- "Taqbaylit",
- "kab"
- ],
- [
- "Tok Pisin",
- "Tok Pisin",
- "tpi"
- ],
- [
- "Lak",
- "Лакку",
- "lbe"
- ],
- [
- "Buryat (Russia)",
- "Буряад",
- "bxr"
- ],
- [
- "Lojban",
- "Lojban",
- "jbo"
- ],
- [
- "Wolof",
- "Wolof",
- "wo"
- ],
- [
- "Moksha",
- "Мокшень (Mokshanj Kälj)",
- "mdf"
- ],
- [
- "Zamboanga Chavacano",
- "Chavacano de Zamboanga",
- "cbk-zam"
- ],
- [
- "Avar",
- "Авар",
- "av"
- ],
- [
- "Sranan",
- "Sranantongo",
- "srn"
- ],
- [
- "Mirandese",
- "Mirandés",
- "mwl"
- ],
- [
- "Kabardian Circassian",
- "Адыгэбзэ (Adighabze)",
- "kbd"
- ],
- [
- "Tahitian",
- "Reo Mā`ohi",
- "ty"
- ],
- [
- "Lao",
- "ລາວ",
- "lo"
- ],
- [
- "Abkhazian",
- "Аҧсуа",
- "ab"
- ],
- [
- "Tetum",
- "Tetun",
- "tet"
- ],
- [
- "Latgalian",
- "Latgaļu",
- "ltg"
- ],
- [
- "Nauruan",
- "dorerin Naoero",
- "na"
- ],
- [
- "Kongo",
- "KiKongo",
- "kg"
- ],
- [
- "Igbo",
- "Igbo",
- "ig"
- ],
- [
- "Northern Sotho",
- "Sesotho sa Leboa",
- "nso"
- ],
- [
- "Zhuang",
- "Cuengh",
- "za"
- ],
- [
- "Karakalpak",
- "Qaraqalpaqsha",
- "kaa"
- ],
- [
- "Zulu",
- "isiZulu",
- "zu"
- ],
- [
- "Cheyenne",
- "Tsetsêhestâhese",
- "chy"
- ],
- [
- "Romani",
- "romani - रोमानी",
- "rmy"
- ],
- [
- "Old Church Slavonic",
- "Словѣньскъ",
- "cu"
- ],
- [
- "Tswana",
- "Setswana",
- "tn"
- ],
- [
- "Cherokee",
- "ᏣᎳᎩ",
- "chr"
- ],
- [
- "Bislama",
- "Bislama",
- "bi"
- ],
- [
- "Min Dong",
- "Mìng-dĕ̤ng-ngṳ̄",
- "cdo"
- ],
- [
- "Gothic",
- "𐌲𐌿𐍄𐌹𐍃𐌺",
- "got"
- ],
- [
- "Samoan",
- "Gagana Samoa",
- "sm"
- ],
- [
- "Moldovan",
- "Молдовеняскэ",
- "mo"
- ],
- [
- "Bambara",
- "Bamanankan",
- "bm"
- ],
- [
- "Inuktitut",
- "ᐃᓄᒃᑎᑐᑦ",
- "iu"
- ],
- [
- "Norfolk",
- "Norfuk",
- "pih"
- ],
- [
- "Pontic",
- "Ποντιακά",
- "pnt"
- ],
- [
- "Sindhi",
- "سنڌي، سندھی ، सिन्ध",
- "sd"
- ],
- [
- "Swati",
- "SiSwati",
- "ss"
- ],
- [
- "Kikuyu",
- "Gĩkũyũ",
- "ki"
- ],
- [
- "Ewe",
- "Eʋegbe",
- "ee"
- ],
- [
- "Hausa",
- "هَوُسَ",
- "ha"
- ],
- [
- "Oromo",
- "Oromoo",
- "om"
- ],
- [
- "Fijian",
- "Na Vosa Vakaviti",
- "fj"
- ],
- [
- "Tigrinya",
- "ትግርኛ",
- "ti"
- ],
- [
- "Tsonga",
- "Xitsonga",
- "ts"
- ],
- [
- "Kashmiri",
- "कश्मीरी / كشميري",
- "ks"
- ],
- [
- "Venda",
- "Tshivenda",
- "ve"
- ],
- [
- "Sango",
- "Sängö",
- "sg"
- ],
- [
- "Kirundi",
- "Kirundi",
- "rn"
- ],
- [
- "Sesotho",
- "Sesotho",
- "st"
- ],
- [
- "Dzongkha",
- "ཇོང་ཁ",
- "dz"
- ],
- [
- "Cree",
- "Nehiyaw",
- "cr"
- ],
- [
- "Akan",
- "Akana",
- "ak"
- ],
- [
- "Tumbuka",
- "chiTumbuka",
- "tum"
- ],
- [
- "Luganda",
- "Luganda",
- "lg"
- ],
- [
- "Chichewa",
- "Chi-Chewa",
- "ny"
- ],
- [
- "Fula",
- "Fulfulde",
- "ff"
- ],
- [
- "Inupiak",
- "Iñupiak",
- "ik"
- ],
- [
- "Chamorro",
- "Chamoru",
- "ch"
- ],
- [
- "Twi",
- "Twi",
- "tw"
- ],
- [
- "Xhosa",
- "isiXhosa",
- "xh"
- ],
- [
- "Ndonga",
- "Oshiwambo",
- "ng"
- ],
- [
- "Sichuan Yi",
- "ꆇꉙ",
- "ii"
- ],
- [
- "Choctaw",
- "Choctaw",
- "cho"
- ],
- [
- "Marshallese",
- "Ebon",
- "mh"
- ],
- [
- "Afar",
- "Afar",
- "aa"
- ],
- [
- "Kuanyama",
- "Kuanyama",
- "kj"
- ],
- [
- "Hiri Motu",
- "Hiri Motu",
- "ho"
- ],
- [
- "Muscogee",
- "Muskogee",
- "mus"
- ],
- [
- "Kanuri",
- "Kanuri",
- "kr"
- ],
- [
- "Herero",
- "Otsiherero",
- "hz"
- ]
- ],
- "presets": {
- "presets": {
- "address": {
- "fields": [
- "address"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "addr:housenumber": "*"
- },
- "addTags": {},
- "removeTags": {},
- "matchScore": 0.2,
- "name": "Address"
- },
- "aerialway": {
- "fields": [
- "aerialway"
- ],
- "geometry": [
- "point",
- "vertex",
- "line"
- ],
- "tags": {
- "aerialway": "*"
- },
- "terms": [
- "ski lift",
- "funifor",
- "funitel"
- ],
- "name": "Aerialway"
- },
- "aerialway/cable_car": {
- "geometry": [
- "line"
- ],
- "terms": [
- "tramway",
- "ropeway"
- ],
- "fields": [
- "aerialway/occupancy",
- "aerialway/capacity",
- "aerialway/duration",
- "aerialway/heating"
- ],
- "tags": {
- "aerialway": "cable_car"
- },
- "name": "Cable Car"
- },
- "aerialway/chair_lift": {
- "geometry": [
- "line"
- ],
- "fields": [
- "aerialway/occupancy",
- "aerialway/capacity",
- "aerialway/duration",
- "aerialway/bubble",
- "aerialway/heating"
- ],
- "tags": {
- "aerialway": "chair_lift"
- },
- "name": "Chair Lift"
- },
- "aerialway/gondola": {
- "geometry": [
- "line"
- ],
- "fields": [
- "aerialway/occupancy",
- "aerialway/capacity",
- "aerialway/duration",
- "aerialway/bubble",
- "aerialway/heating"
- ],
- "tags": {
- "aerialway": "gondola"
- },
- "name": "Gondola"
- },
- "aerialway/magic_carpet": {
- "geometry": [
- "line"
- ],
- "fields": [
- "aerialway/capacity",
- "aerialway/duration",
- "aerialway/heating"
- ],
- "tags": {
- "aerialway": "magic_carpet"
- },
- "name": "Magic Carpet Lift"
- },
- "aerialway/platter": {
- "geometry": [
- "line"
- ],
- "terms": [
- "button lift",
- "poma lift"
- ],
- "fields": [
- "aerialway/capacity",
- "aerialway/duration"
- ],
- "tags": {
- "aerialway": "platter"
- },
- "name": "Platter Lift"
- },
- "aerialway/pylon": {
- "geometry": [
- "point",
- "vertex"
- ],
- "fields": [
- "ref"
- ],
- "tags": {
- "aerialway": "pylon"
- },
- "name": "Aerialway Pylon"
- },
- "aerialway/rope_tow": {
- "geometry": [
- "line"
- ],
- "terms": [
- "handle tow",
- "bugel lift"
- ],
- "fields": [
- "aerialway/capacity",
- "aerialway/duration"
- ],
- "tags": {
- "aerialway": "rope_tow"
- },
- "name": "Rope Tow Lift"
- },
- "aerialway/station": {
- "geometry": [
- "point",
- "vertex"
- ],
- "fields": [
- "aerialway/access",
- "aerialway/summer/access",
- "elevation"
- ],
- "tags": {
- "aerialway": "station"
- },
- "name": "Aerialway Station"
- },
- "aerialway/t-bar": {
- "geometry": [
- "line"
- ],
- "fields": [
- "aerialway/capacity",
- "aerialway/duration"
- ],
- "tags": {
- "aerialway": "t-bar"
- },
- "name": "T-bar Lift"
- },
- "aeroway": {
- "icon": "airport",
- "fields": [
- "aeroway"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "aeroway": "*"
- },
- "name": "Aeroway"
- },
- "aeroway/aerodrome": {
- "icon": "airport",
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "airplane",
- "airport",
- "aerodrome"
- ],
- "fields": [
- "ref",
- "iata",
- "icao",
- "operator"
- ],
- "tags": {
- "aeroway": "aerodrome"
- },
- "name": "Airport"
- },
- "aeroway/apron": {
- "icon": "airport",
- "geometry": [
- "area"
- ],
- "terms": [
- "ramp"
- ],
- "fields": [
- "ref",
- "surface"
- ],
- "tags": {
- "aeroway": "apron"
- },
- "name": "Apron"
- },
- "aeroway/gate": {
- "icon": "airport",
- "geometry": [
- "point"
- ],
- "fields": [
- "ref"
- ],
- "tags": {
- "aeroway": "gate"
- },
- "name": "Airport gate"
- },
- "aeroway/hangar": {
- "geometry": [
- "area"
- ],
- "fields": [
- "building_area"
- ],
- "tags": {
- "aeroway": "hangar"
- },
- "name": "Hangar"
- },
- "aeroway/helipad": {
- "icon": "heliport",
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "helicopter",
- "helipad",
- "heliport"
- ],
- "tags": {
- "aeroway": "helipad"
- },
- "name": "Helipad"
- },
- "aeroway/runway": {
- "geometry": [
- "line",
- "area"
- ],
- "terms": [
- "landing strip"
- ],
- "fields": [
- "ref",
- "surface",
- "length",
- "width"
- ],
- "tags": {
- "aeroway": "runway"
- },
- "name": "Runway"
- },
- "aeroway/taxiway": {
- "geometry": [
- "line"
- ],
- "fields": [
- "ref",
- "surface"
- ],
- "tags": {
- "aeroway": "taxiway"
- },
- "name": "Taxiway"
- },
- "aeroway/terminal": {
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "airport",
- "aerodrome"
- ],
- "fields": [
- "operator",
- "building_area"
- ],
- "tags": {
- "aeroway": "terminal"
- },
- "name": "Airport terminal"
- },
- "amenity": {
- "fields": [
- "amenity"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "*"
- },
- "name": "Amenity"
- },
- "amenity/arts_centre": {
- "name": "Arts Center",
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "arts",
- "arts centre"
- ],
- "tags": {
- "amenity": "arts_centre"
- },
- "icon": "theatre",
- "fields": [
- "building_area",
- "address"
- ]
- },
- "amenity/atm": {
- "icon": "bank",
- "fields": [
- "operator"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "atm"
- },
- "name": "ATM"
- },
- "amenity/bank": {
- "icon": "bank",
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "coffer",
- "countinghouse",
- "credit union",
- "depository",
- "exchequer",
- "fund",
- "hoard",
- "investment firm",
- "repository",
- "reserve",
- "reservoir",
- "safe",
- "savings",
- "stock",
- "stockpile",
- "store",
- "storehouse",
- "thrift",
- "treasury",
- "trust company",
- "vault"
- ],
- "tags": {
- "amenity": "bank"
- },
- "name": "Bank"
- },
- "amenity/bar": {
- "icon": "bar",
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "bar"
- },
- "terms": [],
- "name": "Bar"
- },
- "amenity/bbq": {
- "geometry": [
- "point"
- ],
- "tags": {
- "amenity": "bbq"
- },
- "fields": [
- "covered",
- "fuel"
- ],
- "terms": [
- "barbecue",
- "bbq",
- "grill"
- ],
- "name": "Barbecue/Grill"
- },
- "amenity/bench": {
- "geometry": [
- "point",
- "vertex",
- "line"
- ],
- "tags": {
- "amenity": "bench"
- },
- "fields": [
- "backrest"
- ],
- "name": "Bench"
- },
- "amenity/bicycle_parking": {
- "icon": "bicycle",
- "fields": [
- "bicycle_parking",
- "capacity",
- "operator",
- "covered",
- "access_simple"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "bicycle_parking"
- },
- "name": "Bicycle Parking"
- },
- "amenity/bicycle_rental": {
- "icon": "bicycle",
- "fields": [
- "capacity",
- "network",
- "operator"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "bicycle_rental"
- },
- "name": "Bicycle Rental"
- },
- "amenity/boat_rental": {
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "boat_rental"
- },
- "fields": [
- "operator"
- ],
- "name": "Boat Rental"
- },
- "amenity/bus_station": {
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "bus_station"
- },
- "fields": [
- "operator"
- ],
- "name": "Bus Station"
- },
- "amenity/cafe": {
- "icon": "cafe",
- "fields": [
- "cuisine",
- "internet_access",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "coffee",
- "tea",
- "coffee shop"
- ],
- "tags": {
- "amenity": "cafe"
- },
- "name": "Cafe"
- },
- "amenity/car_rental": {
- "icon": "car",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "car_rental"
- },
- "fields": [
- "operator"
- ],
- "name": "Car Rental"
- },
- "amenity/car_sharing": {
- "icon": "car",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "car_sharing"
- },
- "fields": [
- "operator",
- "capacity"
- ],
- "name": "Car Sharing"
- },
- "amenity/car_wash": {
- "icon": "car",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "car_wash"
- },
- "fields": [
- "building_area"
- ],
- "name": "Car Wash"
- },
- "amenity/charging_station": {
- "icon": "car",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "charging_station"
- },
- "fields": [
- "operator"
- ],
- "terms": [
- "EV",
- "Electric Vehicle",
- "Supercharger"
- ],
- "name": "Charging Station"
- },
- "amenity/childcare": {
- "icon": "school",
- "fields": [
- "building_area",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "nursery",
- "orphanage",
- "playgroup"
- ],
- "tags": {
- "amenity": "childcare"
- },
- "name": "Childcare"
- },
- "amenity/cinema": {
- "icon": "cinema",
- "fields": [
- "building_area",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "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"
- ],
- "tags": {
- "amenity": "cinema"
- },
- "name": "Cinema"
- },
- "amenity/clinic": {
- "name": "Clinic",
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "clinic",
- "medical clinic"
- ],
- "tags": {
- "amenity": "clinic"
- },
- "icon": "hospital",
- "fields": [
- "building_area",
- "address",
- "opening_hours"
- ]
- },
- "amenity/clock": {
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "clock"
- },
- "name": "Clock"
- },
- "amenity/college": {
- "icon": "college",
- "fields": [
- "operator",
- "address"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "college"
- },
- "terms": [],
- "name": "College"
- },
- "amenity/compressed_air": {
- "icon": "car",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "compressed_air"
- },
- "name": "Compressed Air"
- },
- "amenity/courthouse": {
- "fields": [
- "operator",
- "building_area",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "courthouse"
- },
- "name": "Courthouse"
- },
- "amenity/dentist": {
- "name": "Dentist",
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "dentist",
- "dentist's office"
- ],
- "tags": {
- "amenity": "dentist"
- },
- "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/dojo": {
- "icon": "pitch",
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "martial arts",
- "dojo",
- "dojang"
- ],
- "tags": {
- "amenity": "dojo"
- },
- "fields": [
- "address",
- "sport"
- ],
- "name": "Dojo / Martial Arts Academy"
- },
- "amenity/drinking_water": {
- "icon": "water",
- "geometry": [
- "point"
- ],
- "tags": {
- "amenity": "drinking_water"
- },
- "terms": [
- "water fountain",
- "potable water"
- ],
- "name": "Drinking Water"
- },
- "amenity/embassy": {
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "amenity": "embassy"
- },
- "fields": [
- "country",
- "building_area"
- ],
- "icon": "embassy",
- "name": "Embassy"
- },
- "amenity/fast_food": {
- "icon": "fast-food",
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "fast_food"
- },
- "terms": [],
- "name": "Fast Food"
- },
- "amenity/fire_station": {
- "icon": "fire-station",
- "fields": [
- "operator",
- "building_area",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "fire_station"
- },
- "terms": [],
- "name": "Fire Station"
- },
- "amenity/fountain": {
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "fountain"
- },
- "name": "Fountain"
- },
- "amenity/fuel": {
- "icon": "fuel",
- "fields": [
- "operator",
- "address",
- "building_area"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "petrol",
- "fuel",
- "propane",
- "diesel",
- "lng",
- "cng",
- "biodiesel"
- ],
- "tags": {
- "amenity": "fuel"
- },
- "name": "Gas Station"
- },
- "amenity/grave_yard": {
- "icon": "cemetery",
- "fields": [
- "religion",
- "denomination"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "grave_yard"
- },
- "name": "Graveyard"
- },
- "amenity/hospital": {
- "icon": "hospital",
- "fields": [
- "emergency",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "clinic",
- "emergency room",
- "health service",
- "hospice",
- "infirmary",
- "institution",
- "nursing home",
- "rest home",
- "sanatorium",
- "sanitarium",
- "sick bay",
- "surgery",
- "ward"
- ],
- "tags": {
- "amenity": "hospital"
- },
- "name": "Hospital Grounds"
- },
- "amenity/kindergarten": {
- "icon": "school",
- "fields": [
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "nursery",
- "preschool"
- ],
- "tags": {
- "amenity": "kindergarten"
- },
- "name": "Kindergarten Grounds"
- },
- "amenity/library": {
- "icon": "library",
- "fields": [
- "operator",
- "building_area",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "library"
- },
- "terms": [],
- "name": "Library"
- },
- "amenity/marketplace": {
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "marketplace"
- },
- "fields": [
- "building_area"
- ],
- "name": "Marketplace"
- },
- "amenity/nightclub": {
- "icon": "bar",
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "nightclub"
- },
- "terms": [
- "disco*",
- "night club",
- "dancing",
- "dance club"
- ],
- "name": "Nightclub"
- },
- "amenity/parking": {
- "icon": "parking",
- "fields": [
- "parking",
- "capacity",
- "fee",
- "access_simple",
- "supervised",
- "park_ride",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "parking"
- },
- "terms": [],
- "name": "Car Parking"
- },
- "amenity/parking_entrance": {
- "icon": "entrance",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "amenity": "parking_entrance"
- },
- "fields": [
- "access_simple",
- "ref"
- ],
- "name": "Parking Garage Entrance/Exit"
- },
- "amenity/pharmacy": {
- "icon": "pharmacy",
- "fields": [
- "operator",
- "building_area",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "pharmacy"
- },
- "terms": [],
- "name": "Pharmacy"
- },
- "amenity/place_of_worship": {
- "icon": "place-of-worship",
- "fields": [
- "religion",
- "denomination",
- "building_area",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "abbey",
- "basilica",
- "bethel",
- "cathedral",
- "chancel",
- "chantry",
- "chapel",
- "church",
- "fold",
- "house of God",
- "house of prayer",
- "house of worship",
- "minster",
- "mission",
- "mosque",
- "oratory",
- "parish",
- "sacellum",
- "sanctuary",
- "shrine",
- "synagogue",
- "tabernacle",
- "temple"
- ],
- "tags": {
- "amenity": "place_of_worship"
- },
- "name": "Place of Worship"
- },
- "amenity/place_of_worship/buddhist": {
- "icon": "place-of-worship",
- "fields": [
- "denomination",
- "building_area",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "stupa",
- "vihara",
- "monastery",
- "temple",
- "pagoda",
- "zendo",
- "dojo"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "buddhist"
- },
- "name": "Buddhist Temple"
- },
- "amenity/place_of_worship/christian": {
- "icon": "religious-christian",
- "fields": [
- "denomination",
- "building_area",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "christian",
- "abbey",
- "basilica",
- "bethel",
- "cathedral",
- "chancel",
- "chantry",
- "chapel",
- "church",
- "fold",
- "house of God",
- "house of prayer",
- "house of worship",
- "minster",
- "mission",
- "oratory",
- "parish",
- "sacellum",
- "sanctuary",
- "shrine",
- "tabernacle",
- "temple"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "christian"
- },
- "name": "Church"
- },
- "amenity/place_of_worship/jewish": {
- "icon": "religious-jewish",
- "fields": [
- "denomination",
- "building_area",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "jewish",
- "synagogue"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "jewish"
- },
- "name": "Synagogue"
- },
- "amenity/place_of_worship/muslim": {
- "icon": "religious-muslim",
- "fields": [
- "denomination",
- "building_area",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "muslim",
- "mosque"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "muslim"
- },
- "name": "Mosque"
- },
- "amenity/police": {
- "icon": "police",
- "fields": [
- "operator",
- "building_area",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "badge",
- "bear",
- "blue",
- "bluecoat",
- "bobby",
- "boy scout",
- "bull",
- "constable",
- "constabulary",
- "cop",
- "copper",
- "corps",
- "county mounty",
- "detective",
- "fed",
- "flatfoot",
- "force",
- "fuzz",
- "gendarme",
- "gumshoe",
- "heat",
- "law",
- "law enforcement",
- "man",
- "narc",
- "officers",
- "patrolman",
- "police"
- ],
- "tags": {
- "amenity": "police"
- },
- "name": "Police"
- },
- "amenity/post_box": {
- "icon": "post",
- "fields": [
- "operator",
- "collection_times"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "post_box"
- },
- "terms": [
- "letter drop",
- "letterbox",
- "mail drop",
- "mailbox",
- "pillar box",
- "postbox"
- ],
- "name": "Mailbox"
- },
- "amenity/post_office": {
- "icon": "post",
- "fields": [
- "operator",
- "collection_times",
- "building_area"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "post_office"
- },
- "name": "Post Office"
- },
- "amenity/pub": {
- "icon": "beer",
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "pub"
- },
- "terms": [],
- "name": "Pub"
- },
- "amenity/ranger_station": {
- "fields": [
- "building_area",
- "opening_hours",
- "operator",
- "phone"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "visitor center",
- "visitor centre",
- "permit center",
- "permit centre",
- "backcountry office",
- "warden office",
- "warden center"
- ],
- "tags": {
- "amenity": "ranger_station"
- },
- "name": "Ranger Station"
- },
- "amenity/recycling": {
- "icon": "recycling",
- "fields": [
- "recycling/cans",
- "recycling/glass",
- "recycling/paper",
- "recycling/clothes"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [],
- "tags": {
- "amenity": "recycling"
- },
- "name": "Recycling"
- },
- "amenity/restaurant": {
- "icon": "restaurant",
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "bar",
- "cafeteria",
- "café",
- "canteen",
- "chophouse",
- "coffee shop",
- "diner",
- "dining room",
- "dive*",
- "doughtnut shop",
- "drive-in",
- "eatery",
- "eating house",
- "eating place",
- "fast-food place",
- "fish and chips",
- "greasy spoon",
- "grill",
- "hamburger stand",
- "hashery",
- "hideaway",
- "hotdog stand",
- "inn",
- "joint*",
- "luncheonette",
- "lunchroom",
- "night club",
- "outlet*",
- "pizzeria",
- "saloon",
- "soda fountain",
- "watering hole"
- ],
- "tags": {
- "amenity": "restaurant"
- },
- "name": "Restaurant"
- },
- "amenity/school": {
- "icon": "school",
- "fields": [
- "operator",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "academy",
- "alma mater",
- "blackboard",
- "college",
- "department",
- "discipline",
- "establishment",
- "faculty",
- "hall",
- "halls of ivy",
- "institute",
- "institution",
- "jail*",
- "schoolhouse",
- "seminary",
- "university"
- ],
- "tags": {
- "amenity": "school"
- },
- "name": "School Grounds"
- },
- "amenity/shelter": {
- "fields": [
- "shelter_type"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "shelter"
- },
- "terms": [
- "lean-to"
- ],
- "name": "Shelter"
- },
- "amenity/social_facility": {
- "name": "Social Facility",
- "geometry": [
- "point",
- "area"
- ],
- "terms": [],
- "tags": {
- "amenity": "social_facility"
- },
- "fields": [
- "social_facility_for",
- "address",
- "phone",
- "opening_hours",
- "wheelchair",
- "operator"
- ]
- },
- "amenity/social_facility/food_bank": {
- "name": "Food Bank",
- "geometry": [
- "point",
- "area"
- ],
- "terms": [],
- "tags": {
- "amenity": "social_facility",
- "social_facility": "food_bank"
- },
- "fields": [
- "social_facility_for",
- "address",
- "phone",
- "opening_hours",
- "wheelchair",
- "operator"
- ]
- },
- "amenity/social_facility/group_home": {
- "name": "Group Home",
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "elderly",
- "old",
- "senior living"
- ],
- "tags": {
- "amenity": "social_facility",
- "social_facility": "group_home",
- "social_facility_for": "senior"
- },
- "fields": [
- "social_facility_for",
- "address",
- "phone",
- "opening_hours",
- "wheelchair",
- "operator"
- ]
- },
- "amenity/social_facility/homeless_shelter": {
- "name": "Homeless Shelter",
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "houseless",
- "unhoused",
- "displaced"
- ],
- "tags": {
- "amenity": "social_facility",
- "social_facility": "shelter",
- "social_facility:for": "homeless"
- },
- "fields": [
- "social_facility_for",
- "address",
- "phone",
- "opening_hours",
- "wheelchair",
- "operator"
- ]
- },
- "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",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "swimming_pool"
- },
- "icon": "swimming",
- "searchable": false,
- "name": "Swimming Pool"
- },
- "amenity/taxi": {
- "fields": [
- "operator",
- "capacity"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "cab"
- ],
- "tags": {
- "amenity": "taxi"
- },
- "name": "Taxi Stand"
- },
- "amenity/telephone": {
- "icon": "telephone",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "telephone"
- },
- "terms": [
- "phone"
- ],
- "name": "Telephone"
- },
- "amenity/theatre": {
- "icon": "theatre",
- "fields": [
- "operator",
- "building_area",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "theatre",
- "performance",
- "play",
- "musical"
- ],
- "tags": {
- "amenity": "theatre"
- },
- "name": "Theater"
- },
- "amenity/toilets": {
- "fields": [
- "toilets/disposal",
- "operator",
- "building_area",
- "access_toilets"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "bathroom",
- "restroom",
- "outhouse",
- "privy",
- "head",
- "lavatory",
- "latrine",
- "water closet",
- "WC",
- "W.C."
- ],
- "tags": {
- "amenity": "toilets"
- },
- "icon": "toilets",
- "name": "Toilets"
- },
- "amenity/townhall": {
- "icon": "town-hall",
- "fields": [
- "building_area",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "village hall",
- "city government",
- "courthouse",
- "municipal building",
- "municipal center",
- "municipal centre"
- ],
- "tags": {
- "amenity": "townhall"
- },
- "name": "Town Hall"
- },
- "amenity/university": {
- "icon": "college",
- "fields": [
- "operator",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "university"
- },
- "terms": [
- "college"
- ],
- "name": "University"
- },
- "amenity/vending_machine": {
- "fields": [
- "vending",
- "operator"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "amenity": "vending_machine"
- },
- "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": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "waste_basket"
- },
- "terms": [
- "rubbish bin",
- "litter bin",
- "trash can",
- "garbage can"
- ],
- "name": "Waste Basket"
- },
- "area": {
- "name": "Area",
- "tags": {
- "area": "yes"
- },
- "geometry": [
- "area"
- ],
- "matchScore": 0.1
- },
- "barrier": {
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "barrier": "*"
- },
- "fields": [
- "barrier"
- ],
- "name": "Barrier"
- },
- "barrier/block": {
- "fields": [
- "access"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "barrier": "block"
- },
- "name": "Block"
- },
- "barrier/bollard": {
- "fields": [
- "access"
- ],
- "geometry": [
- "point",
- "vertex",
- "line"
- ],
- "tags": {
- "barrier": "bollard"
- },
- "name": "Bollard"
- },
- "barrier/cattle_grid": {
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "cattle_grid"
- },
- "name": "Cattle Grid"
- },
- "barrier/city_wall": {
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "barrier": "city_wall"
- },
- "name": "City Wall"
- },
- "barrier/cycle_barrier": {
- "fields": [
- "access"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "cycle_barrier"
- },
- "name": "Cycle Barrier"
- },
- "barrier/ditch": {
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "barrier": "ditch"
- },
- "name": "Ditch"
- },
- "barrier/entrance": {
- "icon": "entrance",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "entrance"
- },
- "name": "Entrance",
- "searchable": false
- },
- "barrier/fence": {
- "geometry": [
- "line"
- ],
- "tags": {
- "barrier": "fence"
- },
- "name": "Fence"
- },
- "barrier/gate": {
- "fields": [
- "access"
- ],
- "geometry": [
- "point",
- "vertex",
- "line"
- ],
- "tags": {
- "barrier": "gate"
- },
- "name": "Gate"
- },
- "barrier/hedge": {
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "barrier": "hedge"
- },
- "name": "Hedge"
- },
- "barrier/kissing_gate": {
- "fields": [
- "access"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "kissing_gate"
- },
- "name": "Kissing Gate"
- },
- "barrier/lift_gate": {
- "fields": [
- "access"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "barrier": "lift_gate"
- },
- "name": "Lift Gate"
- },
- "barrier/retaining_wall": {
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "barrier": "retaining_wall"
- },
- "name": "Retaining Wall"
- },
- "barrier/stile": {
- "fields": [
- "access"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "barrier": "stile"
- },
- "name": "Stile"
- },
- "barrier/toll_booth": {
- "fields": [
- "access"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "toll_booth"
- },
- "name": "Toll Booth"
- },
- "barrier/wall": {
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "barrier": "wall"
- },
- "name": "Wall"
- },
- "boundary/administrative": {
- "name": "Administrative Boundary",
- "geometry": [
- "line"
- ],
- "tags": {
- "boundary": "administrative"
- },
- "fields": [
- "admin_level"
- ]
- },
- "building": {
- "icon": "building",
- "fields": [
- "building",
- "levels",
- "address"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "*"
- },
- "terms": [],
- "name": "Building"
- },
- "building/apartments": {
- "icon": "commercial",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "apartments"
- },
- "name": "Apartments"
- },
- "building/barn": {
- "icon": "building",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "barn"
- },
- "name": "Barn"
- },
- "building/bunker": {
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "bunker"
- },
- "name": "Bunker",
- "searchable": false
- },
- "building/cabin": {
- "icon": "building",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "cabin"
- },
- "name": "Cabin"
- },
- "building/cathedral": {
- "icon": "place-of-worship",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "cathedral"
- },
- "name": "Cathedral"
- },
- "building/chapel": {
- "icon": "place-of-worship",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "chapel"
- },
- "name": "Chapel"
- },
- "building/church": {
- "icon": "place-of-worship",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "church"
- },
- "name": "Church"
- },
- "building/commercial": {
- "icon": "commercial",
- "fields": [
- "address",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "commercial"
- },
- "name": "Commercial Building"
- },
- "building/construction": {
- "icon": "building",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "construction"
- },
- "name": "Building Under Construction"
- },
- "building/detached": {
- "icon": "building",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "detached"
- },
- "name": "Detached Home"
- },
- "building/dormitory": {
- "icon": "building",
- "fields": [
- "address",
- "levels",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "dormitory"
- },
- "name": "Dormitory"
- },
- "building/entrance": {
- "icon": "entrance",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "building": "entrance"
- },
- "name": "Entrance/Exit",
- "searchable": false
- },
- "building/garage": {
- "fields": [
- "capacity"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "garage"
- },
- "name": "Garage",
- "icon": "warehouse"
- },
- "building/garages": {
- "icon": "warehouse",
- "fields": [
- "capacity"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "garages"
- },
- "name": "Garages"
- },
- "building/greenhouse": {
- "icon": "building",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "greenhouse"
- },
- "name": "Greenhouse"
- },
- "building/hospital": {
- "icon": "building",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "hospital"
- },
- "name": "Hospital Building"
- },
- "building/hotel": {
- "icon": "building",
- "fields": [
- "address",
- "levels",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "hotel"
- },
- "name": "Hotel Building"
- },
- "building/house": {
- "icon": "building",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "building": "house"
- },
- "name": "House"
- },
- "building/hut": {
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "hut"
- },
- "name": "Hut"
- },
- "building/industrial": {
- "icon": "industrial",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "industrial"
- },
- "name": "Industrial Building"
- },
- "building/public": {
- "icon": "building",
- "fields": [
- "address",
- "levels",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "public"
- },
- "name": "Public Building"
- },
- "building/residential": {
- "icon": "building",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "residential"
- },
- "name": "Residential Building"
- },
- "building/retail": {
- "icon": "building",
- "fields": [
- "address",
- "levels",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "retail"
- },
- "name": "Retail Building"
- },
- "building/roof": {
- "icon": "building",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "roof"
- },
- "name": "Roof"
- },
- "building/school": {
- "icon": "building",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "school"
- },
- "name": "School Building"
- },
- "building/shed": {
- "icon": "building",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "shed"
- },
- "name": "Shed"
- },
- "building/stable": {
- "icon": "building",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "stable"
- },
- "name": "Stable"
- },
- "building/static_caravan": {
- "icon": "building",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "static_caravan"
- },
- "name": "Static Mobile Home"
- },
- "building/terrace": {
- "icon": "building",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "terrace"
- },
- "name": "Row Houses"
- },
- "building/train_station": {
- "icon": "building",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "train_station"
- },
- "name": "Train Station",
- "searchable": false
- },
- "building/university": {
- "icon": "building",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "university"
- },
- "name": "University Building"
- },
- "building/warehouse": {
- "icon": "building",
- "fields": [
- "address",
- "levels"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "warehouse"
- },
- "name": "Warehouse"
- },
- "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_laboratory": {
- "name": "Photographic Laboratory",
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "photographic laboratory",
- "film developer"
- ],
- "tags": {
- "craft": "photographic_laboratory"
- },
- "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"
- ],
- "searchable": false
- },
- "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"
- ],
- "tags": {
- "embankment": "yes"
- },
- "name": "Embankment",
- "matchScore": 0.2
- },
- "emergency/ambulance_station": {
- "fields": [
- "operator"
- ],
- "geometry": [
- "area",
- "point",
- "vertex"
- ],
- "tags": {
- "emergency": "ambulance_station"
- },
- "name": "Ambulance Station"
- },
- "emergency/fire_hydrant": {
- "fields": [
- "fire_hydrant/type"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "emergency": "fire_hydrant"
- },
- "name": "Fire Hydrant"
- },
- "emergency/phone": {
- "icon": "emergency-telephone",
- "fields": [
- "operator"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "emergency": "phone"
- },
- "name": "Emergency Phone"
- },
- "entrance": {
- "icon": "entrance",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "entrance": "*"
- },
- "fields": [
- "entrance",
- "access_simple",
- "address"
- ],
- "name": "Entrance/Exit"
- },
- "footway/crossing": {
- "fields": [
- "crossing",
- "access",
- "surface",
- "sloped_curb",
- "tactile_paving"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "footway",
- "footway": "crossing"
- },
- "terms": [],
- "name": "Crossing"
- },
- "footway/crosswalk": {
- "fields": [
- "crossing",
- "access",
- "surface",
- "sloped_curb",
- "tactile_paving"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "footway",
- "footway": "crossing",
- "crossing": "zebra"
- },
- "terms": [
- "crosswalk",
- "zebra crossing"
- ],
- "name": "Crosswalk"
- },
- "footway/sidewalk": {
- "fields": [
- "surface",
- "lit",
- "width",
- "structure",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "footway",
- "footway": "sidewalk"
- },
- "terms": [],
- "name": "Sidewalk"
- },
- "ford": {
- "geometry": [
- "vertex"
- ],
- "tags": {
- "ford": "yes"
- },
- "name": "Ford"
- },
- "golf/bunker": {
- "icon": "golf",
- "geometry": [
- "area"
- ],
- "tags": {
- "golf": "bunker",
- "natural": "sand"
- },
- "terms": [
- "hazard",
- "bunker"
- ],
- "name": "Sand Trap"
- },
- "golf/fairway": {
- "icon": "golf",
- "geometry": [
- "area"
- ],
- "tags": {
- "golf": "fairway",
- "landuse": "grass"
- },
- "name": "Fairway"
- },
- "golf/green": {
- "icon": "golf",
- "geometry": [
- "area"
- ],
- "tags": {
- "golf": "green",
- "landuse": "grass",
- "leisure": "pitch",
- "sport": "golf"
- },
- "terms": [
- "putting green"
- ],
- "name": "Putting Green"
- },
- "golf/hole": {
- "icon": "golf",
- "fields": [
- "golf_hole",
- "par",
- "handicap"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "golf": "hole"
- },
- "name": "Golf Hole"
- },
- "golf/lateral_water_hazard": {
- "icon": "golf",
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "golf": "lateral_water_hazard",
- "natural": "water"
- },
- "name": "Lateral Water Hazard"
- },
- "golf/rough": {
- "icon": "golf",
- "geometry": [
- "area"
- ],
- "tags": {
- "golf": "rough",
- "landuse": "grass"
- },
- "name": "Rough"
- },
- "golf/tee": {
- "icon": "golf",
- "geometry": [
- "area"
- ],
- "tags": {
- "golf": "tee",
- "landuse": "grass"
- },
- "terms": [
- "teeing ground"
- ],
- "name": "Tee Box"
- },
- "golf/water_hazard": {
- "icon": "golf",
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "golf": "water_hazard",
- "natural": "water"
- },
- "name": "Water Hazard"
- },
- "highway": {
- "fields": [
- "highway"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "highway": "*"
- },
- "name": "Highway"
- },
- "highway/bridleway": {
- "fields": [
- "surface",
- "width",
- "structure",
- "access"
- ],
- "icon": "highway-bridleway",
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "bridleway"
- },
- "terms": [
- "bridleway",
- "equestrian trail",
- "horse riding path",
- "bridle road",
- "horse trail"
- ],
- "name": "Bridle Path"
- },
- "highway/bus_stop": {
- "icon": "bus",
- "fields": [
- "operator",
- "shelter"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "highway": "bus_stop"
- },
- "terms": [],
- "name": "Bus Stop"
- },
- "highway/crossing": {
- "fields": [
- "crossing",
- "sloped_curb",
- "tactile_paving"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "crossing"
- },
- "terms": [],
- "name": "Crossing"
- },
- "highway/crosswalk": {
- "fields": [
- "crossing",
- "sloped_curb",
- "tactile_paving"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "crossing",
- "crossing": "zebra"
- },
- "terms": [
- "crosswalk",
- "zebra crossing"
- ],
- "name": "Crosswalk"
- },
- "highway/cycleway": {
- "icon": "highway-cycleway",
- "fields": [
- "surface",
- "lit",
- "width",
- "oneway",
- "structure",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "cycleway"
- },
- "terms": [],
- "name": "Cycle Path"
- },
- "highway/footway": {
- "icon": "highway-footway",
- "fields": [
- "surface",
- "lit",
- "width",
- "structure",
- "access"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "terms": [
- "beaten path",
- "boulevard",
- "clearing",
- "course",
- "cut*",
- "drag*",
- "footpath",
- "highway",
- "lane",
- "line",
- "orbit",
- "passage",
- "pathway",
- "rail",
- "rails",
- "road",
- "roadway",
- "route",
- "street",
- "thoroughfare",
- "trackway",
- "trail",
- "trajectory",
- "walk"
- ],
- "tags": {
- "highway": "footway"
- },
- "name": "Foot Path"
- },
- "highway/living_street": {
- "icon": "highway-living-street",
- "fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "surface"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "living_street"
- },
- "name": "Living Street"
- },
- "highway/mini_roundabout": {
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "mini_roundabout"
- },
- "fields": [
- "clock_direction"
- ],
- "name": "Mini-Roundabout"
- },
- "highway/motorway": {
- "icon": "highway-motorway",
- "fields": [
- "oneway_yes",
- "maxspeed",
- "structure",
- "access",
- "lanes",
- "surface",
- "ref"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "motorway"
- },
- "terms": [],
- "name": "Motorway"
- },
- "highway/motorway_junction": {
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "motorway_junction"
- },
- "fields": [
- "ref"
- ],
- "name": "Motorway Junction / Exit"
- },
- "highway/motorway_link": {
- "icon": "highway-motorway-link",
- "fields": [
- "oneway_yes",
- "maxspeed",
- "structure",
- "access",
- "surface",
- "ref"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "motorway_link"
- },
- "terms": [
- "ramp",
- "on ramp",
- "off ramp"
- ],
- "name": "Motorway Link"
- },
- "highway/path": {
- "icon": "highway-path",
- "fields": [
- "surface",
- "width",
- "structure",
- "access",
- "incline",
- "sac_scale",
- "trail_visibility",
- "mtb/scale",
- "mtb/scale/uphill",
- "mtb/scale/imba",
- "ref"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "path"
- },
- "terms": [],
- "name": "Path"
- },
- "highway/pedestrian": {
- "fields": [
- "surface",
- "lit",
- "width",
- "oneway",
- "structure",
- "access"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "highway": "pedestrian"
- },
- "terms": [],
- "name": "Pedestrian"
- },
- "highway/primary": {
- "icon": "highway-primary",
- "fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "lanes",
- "surface",
- "ref"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "primary"
- },
- "terms": [],
- "name": "Primary Road"
- },
- "highway/primary_link": {
- "icon": "highway-primary-link",
- "fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "surface",
- "ref"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "primary_link"
- },
- "terms": [
- "ramp",
- "on ramp",
- "off ramp"
- ],
- "name": "Primary Link"
- },
- "highway/residential": {
- "icon": "highway-residential",
- "fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "surface"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "residential"
- },
- "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": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "surface"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "road"
- },
- "terms": [],
- "name": "Unknown Road"
- },
- "highway/secondary": {
- "icon": "highway-secondary",
- "fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "lanes",
- "surface",
- "ref"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "secondary"
- },
- "terms": [],
- "name": "Secondary Road"
- },
- "highway/secondary_link": {
- "icon": "highway-secondary-link",
- "fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "surface",
- "ref"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "secondary_link"
- },
- "terms": [
- "ramp",
- "on ramp",
- "off ramp"
- ],
- "name": "Secondary Link"
- },
- "highway/service": {
- "icon": "highway-service",
- "fields": [
- "service",
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "surface"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "service"
- },
- "terms": [],
- "name": "Service Road"
- },
- "highway/service/alley": {
- "icon": "highway-service",
- "fields": [
- "oneway",
- "access",
- "surface"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "service",
- "service": "alley"
- },
- "name": "Alley"
- },
- "highway/service/drive-through": {
- "icon": "highway-service",
- "fields": [
- "oneway",
- "access",
- "surface"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "service",
- "service": "drive-through"
- },
- "name": "Drive-Through"
- },
- "highway/service/driveway": {
- "icon": "highway-service",
- "fields": [
- "oneway",
- "access",
- "surface"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "service",
- "service": "driveway"
- },
- "name": "Driveway"
- },
- "highway/service/emergency_access": {
- "icon": "highway-service",
- "fields": [
- "oneway",
- "access",
- "surface"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "service",
- "service": "emergency_access"
- },
- "name": "Emergency Access"
- },
- "highway/service/parking_aisle": {
- "icon": "highway-service",
- "fields": [
- "oneway",
- "access",
- "surface"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "service",
- "service": "parking_aisle"
- },
- "name": "Parking Aisle"
- },
- "highway/services": {
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "highway": "services"
- },
- "terms": [
- "services",
- "travel plaza",
- "service station"
- ],
- "name": "Service Area"
- },
- "highway/steps": {
- "fields": [
- "surface",
- "lit",
- "width",
- "access"
- ],
- "icon": "highway-steps",
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "steps"
- },
- "terms": [
- "stairs",
- "staircase"
- ],
- "name": "Steps"
- },
- "highway/stop": {
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "stop"
- },
- "terms": [
- "stop sign"
- ],
- "name": "Stop Sign"
- },
- "highway/street_lamp": {
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "highway": "street_lamp"
- },
- "fields": [
- "lamp_type",
- "ref"
- ],
- "terms": [
- "streetlight",
- "street light",
- "lamp",
- "light",
- "gaslight"
- ],
- "name": "Street Lamp"
- },
- "highway/tertiary": {
- "icon": "highway-tertiary",
- "fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "lanes",
- "surface",
- "ref"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "tertiary"
- },
- "terms": [],
- "name": "Tertiary Road"
- },
- "highway/tertiary_link": {
- "icon": "highway-tertiary-link",
- "fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "surface",
- "ref"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "tertiary_link"
- },
- "terms": [
- "ramp",
- "on ramp",
- "off ramp"
- ],
- "name": "Tertiary Link"
- },
- "highway/track": {
- "icon": "highway-track",
- "fields": [
- "surface",
- "width",
- "structure",
- "access",
- "incline",
- "tracktype",
- "smoothness",
- "mtb/scale",
- "mtb/scale/uphill",
- "mtb/scale/imba"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "track"
- },
- "terms": [],
- "name": "Track"
- },
- "highway/traffic_signals": {
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "traffic_signals"
- },
- "terms": [
- "light",
- "stoplight",
- "traffic light"
- ],
- "name": "Traffic Signals"
- },
- "highway/trunk": {
- "icon": "highway-trunk",
- "fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "lanes",
- "surface",
- "ref"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "trunk"
- },
- "terms": [],
- "name": "Trunk Road"
- },
- "highway/trunk_link": {
- "icon": "highway-trunk-link",
- "fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "surface",
- "ref"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "trunk_link"
- },
- "terms": [
- "ramp",
- "on ramp",
- "off ramp"
- ],
- "name": "Trunk Link"
- },
- "highway/turning_circle": {
- "icon": "circle",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "turning_circle"
- },
- "terms": [],
- "name": "Turning Circle"
- },
- "highway/unclassified": {
- "icon": "highway-unclassified",
- "fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "surface"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "unclassified"
- },
- "terms": [],
- "name": "Unclassified Road"
- },
- "historic": {
- "fields": [
- "historic"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "historic": "*"
- },
- "name": "Historic Site"
- },
- "historic/archaeological_site": {
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "historic": "archaeological_site"
- },
- "name": "Archaeological Site"
- },
- "historic/boundary_stone": {
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "historic": "boundary_stone"
- },
- "name": "Boundary Stone"
- },
- "historic/castle": {
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "historic": "castle"
- },
- "name": "Castle"
- },
- "historic/memorial": {
- "icon": "monument",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "historic": "memorial"
- },
- "name": "Memorial"
- },
- "historic/monument": {
- "icon": "monument",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "historic": "monument"
- },
- "name": "Monument"
- },
- "historic/ruins": {
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "historic": "ruins"
- },
- "name": "Ruins"
- },
- "historic/wayside_cross": {
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "historic": "wayside_cross"
- },
- "name": "Wayside Cross"
- },
- "historic/wayside_shrine": {
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "historic": "wayside_shrine"
- },
- "name": "Wayside Shrine"
- },
- "landuse": {
- "fields": [
- "landuse"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "landuse": "*"
- },
- "name": "Landuse"
- },
- "landuse/allotments": {
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "landuse": "allotments"
- },
- "terms": [],
- "name": "Allotments"
- },
- "landuse/basin": {
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "landuse": "basin"
- },
- "terms": [],
- "name": "Basin"
- },
- "landuse/cemetery": {
- "icon": "cemetery",
- "fields": [
- "religion",
- "denomination"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "landuse": "cemetery"
- },
- "terms": [],
- "name": "Cemetery"
- },
- "landuse/churchyard": {
- "fields": [
- "religion",
- "denomination"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "churchyard"
- },
- "terms": [],
- "name": "Churchyard"
- },
- "landuse/commercial": {
- "icon": "commercial",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "landuse": "commercial"
- },
- "terms": [],
- "name": "Commercial"
- },
- "landuse/construction": {
- "fields": [
- "construction",
- "operator"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "landuse": "construction"
- },
- "terms": [],
- "name": "Construction"
- },
- "landuse/farm": {
- "fields": [
- "crop"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "landuse": "farm"
- },
- "terms": [],
- "name": "Farm",
- "icon": "farm"
- },
- "landuse/farmland": {
- "fields": [
- "crop"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "landuse": "farmland"
- },
- "terms": [],
- "name": "Farmland",
- "icon": "farm",
- "searchable": false
- },
- "landuse/farmyard": {
- "fields": [
- "crop"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "landuse": "farmyard"
- },
- "terms": [],
- "name": "Farmyard",
- "icon": "farm"
- },
- "landuse/forest": {
- "fields": [
- "wood"
- ],
- "icon": "park2",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "landuse": "forest"
- },
- "terms": [],
- "name": "Forest"
- },
- "landuse/grass": {
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "landuse": "grass"
- },
- "terms": [],
- "name": "Grass"
- },
- "landuse/industrial": {
- "icon": "industrial",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "landuse": "industrial"
- },
- "terms": [],
- "name": "Industrial"
- },
- "landuse/landfill": {
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "landfill"
- },
- "terms": [
- "dump"
- ],
- "name": "Landfill"
- },
- "landuse/meadow": {
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "landuse": "meadow"
- },
- "terms": [],
- "name": "Meadow"
- },
- "landuse/military": {
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "military"
- },
- "terms": [],
- "name": "Military"
- },
- "landuse/orchard": {
- "fields": [
- "trees"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "landuse": "orchard"
- },
- "terms": [],
- "name": "Orchard",
- "icon": "park2"
- },
- "landuse/quarry": {
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "landuse": "quarry"
- },
- "terms": [],
- "name": "Quarry"
- },
- "landuse/residential": {
- "icon": "building",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "landuse": "residential"
- },
- "terms": [],
- "name": "Residential"
- },
- "landuse/retail": {
- "icon": "shop",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "landuse": "retail"
- },
- "name": "Retail"
- },
- "landuse/vineyard": {
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "landuse": "vineyard"
- },
- "terms": [],
- "name": "Vineyard"
- },
- "leisure": {
- "fields": [
- "leisure"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "leisure": "*"
- },
- "name": "Leisure"
- },
- "leisure/common": {
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "open space"
- ],
- "tags": {
- "leisure": "common"
- },
- "name": "Common"
- },
- "leisure/dog_park": {
- "geometry": [
- "point",
- "area"
- ],
- "terms": [],
- "tags": {
- "leisure": "dog_park"
- },
- "name": "Dog Park",
- "icon": "dog-park"
- },
- "leisure/firepit": {
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "firepit"
- },
- "terms": [
- "fireplace",
- "campfire"
- ],
- "name": "Firepit"
- },
- "leisure/garden": {
- "icon": "garden",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "leisure": "garden"
- },
- "name": "Garden"
- },
- "leisure/golf_course": {
- "icon": "golf",
- "fields": [
- "operator",
- "address"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "golf_course"
- },
- "terms": [
- "links"
- ],
- "name": "Golf Course"
- },
- "leisure/ice_rink": {
- "icon": "pitch",
- "fields": [
- "building_area",
- "seasonal",
- "sport_ice"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "hockey",
- "skating",
- "curling"
- ],
- "tags": {
- "leisure": "ice_rink"
- },
- "name": "Ice Rink"
- },
- "leisure/marina": {
- "icon": "harbor",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "leisure": "marina"
- },
- "name": "Marina"
- },
- "leisure/park": {
- "icon": "park",
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "esplanade",
- "estate",
- "forest",
- "garden",
- "grass",
- "green",
- "grounds",
- "lawn",
- "lot",
- "meadow",
- "parkland",
- "place",
- "playground",
- "plaza",
- "pleasure garden",
- "recreation area",
- "square",
- "tract",
- "village green",
- "woodland"
- ],
- "tags": {
- "leisure": "park"
- },
- "name": "Park"
- },
- "leisure/picnic_table": {
- "geometry": [
- "point"
- ],
- "tags": {
- "leisure": "picnic_table"
- },
- "terms": [
- "bench",
- "table"
- ],
- "name": "Picnic Table"
- },
- "leisure/pitch": {
- "icon": "pitch",
- "fields": [
- "sport",
- "surface",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch"
- },
- "terms": [],
- "name": "Sport Pitch"
- },
- "leisure/pitch/american_football": {
- "icon": "america-football",
- "fields": [
- "surface",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "american_football"
- },
- "terms": [],
- "name": "American Football Field"
- },
- "leisure/pitch/baseball": {
- "icon": "baseball",
- "fields": [
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "baseball"
- },
- "terms": [],
- "name": "Baseball Diamond"
- },
- "leisure/pitch/basketball": {
- "icon": "basketball",
- "fields": [
- "surface",
- "hoops",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "basketball"
- },
- "terms": [],
- "name": "Basketball Court"
- },
- "leisure/pitch/skateboard": {
- "icon": "pitch",
- "fields": [
- "surface",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "skateboard"
- },
- "terms": [],
- "name": "Skate Park"
- },
- "leisure/pitch/soccer": {
- "icon": "soccer",
- "fields": [
- "surface",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "soccer"
- },
- "terms": [],
- "name": "Soccer Field"
- },
- "leisure/pitch/tennis": {
- "icon": "tennis",
- "fields": [
- "surface",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "tennis"
- },
- "terms": [],
- "name": "Tennis Court"
- },
- "leisure/pitch/volleyball": {
- "icon": "pitch",
- "fields": [
- "surface",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "volleyball"
- },
- "terms": [],
- "name": "Volleyball Court"
- },
- "leisure/playground": {
- "icon": "playground",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "playground"
- },
- "name": "Playground",
- "terms": [
- "jungle gym",
- "play area"
- ]
- },
- "leisure/slipway": {
- "geometry": [
- "point",
- "line"
- ],
- "tags": {
- "leisure": "slipway"
- },
- "name": "Slipway"
- },
- "leisure/sports_center": {
- "icon": "pitch",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "sports_centre"
- },
- "terms": [
- "gym"
- ],
- "fields": [
- "sport"
- ],
- "name": "Sports Center / Gym"
- },
- "leisure/stadium": {
- "icon": "pitch",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "stadium"
- },
- "fields": [
- "sport"
- ],
- "name": "Stadium"
- },
- "leisure/swimming_pool": {
- "fields": [
- "access_simple"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "leisure": "swimming_pool"
- },
- "icon": "swimming",
- "name": "Swimming Pool"
- },
- "leisure/track": {
- "icon": "pitch",
- "fields": [
- "surface",
- "lit",
- "width"
- ],
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "tags": {
- "leisure": "track"
- },
- "name": "Race Track"
- },
- "line": {
- "name": "Line",
- "tags": {},
- "geometry": [
- "line"
- ],
- "matchScore": 0.1
- },
- "man_made": {
- "fields": [
- "man_made"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "man_made": "*"
- },
- "name": "Man Made"
- },
- "man_made/breakwater": {
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "man_made": "breakwater"
- },
- "name": "Breakwater"
- },
- "man_made/cutline": {
- "geometry": [
- "line"
- ],
- "tags": {
- "man_made": "cutline"
- },
- "name": "Cut line"
- },
- "man_made/embankment": {
- "geometry": [
- "line"
- ],
- "tags": {
- "man_made": "embankment"
- },
- "name": "Embankment",
- "searchable": false
- },
- "man_made/flagpole": {
- "geometry": [
- "point"
- ],
- "tags": {
- "man_made": "flagpole"
- },
- "name": "Flagpole",
- "icon": "embassy"
- },
- "man_made/lighthouse": {
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "lighthouse"
- },
- "name": "Lighthouse",
- "icon": "lighthouse"
- },
- "man_made/observation": {
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "lookout tower",
- "fire tower"
- ],
- "tags": {
- "man_made": "tower",
- "tower:type": "observation"
- },
- "name": "Observation Tower"
- },
- "man_made/pier": {
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "man_made": "pier"
- },
- "name": "Pier"
- },
- "man_made/pipeline": {
- "geometry": [
- "line"
- ],
- "tags": {
- "man_made": "pipeline"
- },
- "fields": [
- "location",
- "operator"
- ],
- "name": "Pipeline",
- "icon": "pipeline"
- },
- "man_made/survey_point": {
- "icon": "monument",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "man_made": "survey_point"
- },
- "fields": [
- "ref"
- ],
- "name": "Survey Point"
- },
- "man_made/tower": {
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "tower"
- },
- "fields": [
- "towertype"
- ],
- "name": "Tower"
- },
- "man_made/wastewater_plant": {
- "icon": "water",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "wastewater_plant"
- },
- "name": "Wastewater Plant",
- "terms": [
- "sewage works",
- "sewage treatment plant",
- "water treatment plant",
- "reclamation plant"
- ]
- },
- "man_made/water_tower": {
- "icon": "water",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "water_tower"
- },
- "name": "Water Tower"
- },
- "man_made/water_well": {
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "water_well"
- },
- "name": "Water well"
- },
- "man_made/water_works": {
- "icon": "water",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "water_works"
- },
- "name": "Water Works"
- },
- "military/airfield": {
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "military": "airfield"
- },
- "terms": [],
- "name": "Airfield",
- "icon": "airfield"
- },
- "military/barracks": {
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "military": "barracks"
- },
- "terms": [],
- "name": "Barracks"
- },
- "military/bunker": {
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "military": "bunker"
- },
- "terms": [],
- "name": "Bunker"
- },
- "military/range": {
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "military": "range"
- },
- "terms": [],
- "name": "Military Range"
- },
- "natural": {
- "fields": [
- "natural"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "natural": "*"
- },
- "name": "Natural"
- },
- "natural/bay": {
- "geometry": [
- "point",
- "area"
- ],
- "terms": [],
- "tags": {
- "natural": "bay"
- },
- "name": "Bay"
- },
- "natural/beach": {
- "fields": [
- "surface"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [],
- "tags": {
- "natural": "beach"
- },
- "name": "Beach"
- },
- "natural/cliff": {
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "terms": [],
- "tags": {
- "natural": "cliff"
- },
- "name": "Cliff"
- },
- "natural/coastline": {
- "geometry": [
- "line"
- ],
- "terms": [
- "shore"
- ],
- "tags": {
- "natural": "coastline"
- },
- "name": "Coastline"
- },
- "natural/fell": {
- "geometry": [
- "area"
- ],
- "terms": [],
- "tags": {
- "natural": "fell"
- },
- "name": "Fell"
- },
- "natural/glacier": {
- "geometry": [
- "area"
- ],
- "terms": [],
- "tags": {
- "natural": "glacier"
- },
- "name": "Glacier"
- },
- "natural/grassland": {
- "geometry": [
- "point",
- "area"
- ],
- "terms": [],
- "tags": {
- "natural": "grassland"
- },
- "name": "Grassland"
- },
- "natural/heath": {
- "geometry": [
- "area"
- ],
- "terms": [],
- "tags": {
- "natural": "heath"
- },
- "name": "Heath"
- },
- "natural/peak": {
- "icon": "triangle",
- "fields": [
- "elevation"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "natural": "peak"
- },
- "terms": [
- "acme",
- "aiguille",
- "alp",
- "climax",
- "crest",
- "crown",
- "hill",
- "mount",
- "mountain",
- "pinnacle",
- "summit",
- "tip",
- "top"
- ],
- "name": "Peak"
- },
- "natural/scree": {
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "scree"
- },
- "terms": [
- "loose rocks"
- ],
- "name": "Scree"
- },
- "natural/scrub": {
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "scrub"
- },
- "terms": [],
- "name": "Scrub"
- },
- "natural/spring": {
- "geometry": [
- "point",
- "vertex"
- ],
- "terms": [],
- "tags": {
- "natural": "spring"
- },
- "name": "Spring"
- },
- "natural/tree": {
- "fields": [
- "tree_type",
- "denotation"
- ],
- "icon": "park",
- "geometry": [
- "point",
- "vertex"
- ],
- "terms": [],
- "tags": {
- "natural": "tree"
- },
- "name": "Tree"
- },
- "natural/water": {
- "fields": [
- "water"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "water"
- },
- "icon": "water",
- "name": "Water"
- },
- "natural/water/lake": {
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "water",
- "water": "lake"
- },
- "terms": [
- "lakelet",
- "loch",
- "mere"
- ],
- "icon": "water",
- "name": "Lake"
- },
- "natural/water/pond": {
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "water",
- "water": "pond"
- },
- "terms": [
- "lakelet",
- "millpond",
- "tarn",
- "pool",
- "mere"
- ],
- "icon": "water",
- "name": "Pond"
- },
- "natural/water/reservoir": {
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "water",
- "water": "reservoir"
- },
- "icon": "water",
- "name": "Reservoir"
- },
- "natural/wetland": {
- "icon": "wetland",
- "fields": [
- "wetland"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "natural": "wetland"
- },
- "terms": [],
- "name": "Wetland"
- },
- "natural/wood": {
- "fields": [
- "wood"
- ],
- "icon": "park2",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "natural": "wood"
- },
- "terms": [],
- "name": "Wood"
- },
- "office": {
- "icon": "commercial",
- "fields": [
- "office",
- "address",
- "opening_hours",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "*"
- },
- "terms": [],
- "name": "Office"
- },
- "office/accountant": {
- "icon": "commercial",
- "fields": [
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "accountant"
- },
- "terms": [],
- "name": "Accountant"
- },
- "office/administrative": {
- "icon": "commercial",
- "fields": [
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "administrative"
- },
- "terms": [],
- "name": "Administrative Office"
- },
- "office/architect": {
- "icon": "commercial",
- "fields": [
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "architect"
- },
- "terms": [],
- "name": "Architect"
- },
- "office/company": {
- "icon": "commercial",
- "fields": [
- "address",
- "opening_hours",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "company"
- },
- "terms": [],
- "name": "Company Office"
- },
- "office/educational_institution": {
- "icon": "commercial",
- "fields": [
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "educational_institution"
- },
- "terms": [],
- "name": "Educational Institution"
- },
- "office/employment_agency": {
- "icon": "commercial",
- "fields": [
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "employment_agency"
- },
- "terms": [],
- "name": "Employment Agency"
- },
- "office/estate_agent": {
- "icon": "commercial",
- "fields": [
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "estate_agent"
- },
- "terms": [],
- "name": "Real Estate Office"
- },
- "office/financial": {
- "icon": "commercial",
- "fields": [
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "financial"
- },
- "terms": [],
- "name": "Financial Office"
- },
- "office/government": {
- "icon": "commercial",
- "fields": [
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "government"
- },
- "terms": [],
- "name": "Government Office"
- },
- "office/insurance": {
- "icon": "commercial",
- "fields": [
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "insurance"
- },
- "terms": [],
- "name": "Insurance Office"
- },
- "office/it": {
- "icon": "commercial",
- "fields": [
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "it"
- },
- "terms": [],
- "name": "IT Office"
- },
- "office/lawyer": {
- "icon": "commercial",
- "fields": [
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "lawyer"
- },
- "terms": [],
- "name": "Law Office"
- },
- "office/newspaper": {
- "icon": "commercial",
- "fields": [
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "newspaper"
- },
- "terms": [],
- "name": "Newspaper"
- },
- "office/ngo": {
- "icon": "commercial",
- "fields": [
- "address",
- "opening_hours",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "ngo"
- },
- "terms": [],
- "name": "NGO Office"
- },
- "office/physician": {
- "icon": "commercial",
- "fields": [
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "physician"
- },
- "terms": [],
- "name": "Physician"
- },
- "office/political_party": {
- "icon": "commercial",
- "fields": [
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "political_party"
- },
- "terms": [],
- "name": "Political Party"
- },
- "office/research": {
- "icon": "commercial",
- "fields": [
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "research"
- },
- "terms": [],
- "name": "Research Office"
- },
- "office/telecommunication": {
- "icon": "commercial",
- "fields": [
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "telecommunication"
- },
- "terms": [],
- "name": "Telecom Office"
- },
- "office/therapist": {
- "icon": "commercial",
- "fields": [
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "therapist"
- },
- "terms": [],
- "name": "Therapist"
- },
- "office/travel_agent": {
- "icon": "suitcase",
- "fields": [
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "travel_agent"
- },
- "terms": [],
- "name": "Travel Agency",
- "searchable": false
- },
- "piste": {
- "icon": "skiing",
- "fields": [
- "piste/type",
- "piste/difficulty",
- "piste/grooming",
- "oneway",
- "lit"
- ],
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "terms": [
- "ski",
- "sled",
- "sleigh",
- "snowboard",
- "nordic",
- "downhill",
- "snowmobile"
- ],
- "tags": {
- "piste:type": "*"
- },
- "name": "Piste/Ski Trail"
- },
- "place": {
- "fields": [
- "place"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "place": "*"
- },
- "name": "Place"
- },
- "place/city": {
- "icon": "city",
- "fields": [
- "population"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "city"
- },
- "name": "City"
- },
- "place/hamlet": {
- "icon": "triangle-stroked",
- "fields": [
- "population"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "hamlet"
- },
- "name": "Hamlet"
- },
- "place/island": {
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "archipelago",
- "atoll",
- "bar",
- "cay",
- "isle",
- "islet",
- "key",
- "reef"
- ],
- "tags": {
- "place": "island"
- },
- "name": "Island"
- },
- "place/isolated_dwelling": {
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "isolated_dwelling"
- },
- "name": "Isolated Dwelling"
- },
- "place/locality": {
- "icon": "marker",
- "fields": [
- "population"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "locality"
- },
- "name": "Locality"
- },
- "place/neighbourhood": {
- "icon": "triangle-stroked",
- "fields": [
- "population"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "neighbourhood"
- },
- "terms": [
- "neighbourhood"
- ],
- "name": "Neighborhood"
- },
- "place/suburb": {
- "icon": "triangle-stroked",
- "fields": [
- "population"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "suburb"
- },
- "terms": [
- "Boro",
- "Quarter"
- ],
- "name": "Borough"
- },
- "place/town": {
- "icon": "town",
- "fields": [
- "population"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "town"
- },
- "name": "Town"
- },
- "place/village": {
- "icon": "village",
- "fields": [
- "population"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "village"
- },
- "name": "Village"
- },
- "point": {
- "name": "Point",
- "tags": {},
- "geometry": [
- "point"
- ],
- "matchScore": 0.1
- },
- "power": {
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "power": "*"
- },
- "fields": [
- "power"
- ],
- "name": "Power"
- },
- "power/generator": {
- "name": "Power Generator",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "power": "generator"
- },
- "fields": [
- "generator/source",
- "generator/method",
- "generator/type"
- ]
- },
- "power/line": {
- "geometry": [
- "line"
- ],
- "tags": {
- "power": "line"
- },
- "name": "Power Line",
- "icon": "power-line"
- },
- "power/minor_line": {
- "geometry": [
- "line"
- ],
- "tags": {
- "power": "minor_line"
- },
- "name": "Minor Power Line",
- "icon": "power-line"
- },
- "power/pole": {
- "geometry": [
- "vertex"
- ],
- "tags": {
- "power": "pole"
- },
- "name": "Power Pole"
- },
- "power/sub_station": {
- "fields": [
- "operator",
- "building"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "power": "sub_station"
- },
- "name": "Substation"
- },
- "power/tower": {
- "geometry": [
- "vertex"
- ],
- "tags": {
- "power": "tower"
- },
- "name": "High-Voltage Tower"
- },
- "power/transformer": {
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "power": "transformer"
- },
- "name": "Transformer"
- },
- "public_transport/platform": {
- "fields": [
- "ref",
- "operator",
- "network",
- "shelter"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "public_transport": "platform"
- },
- "name": "Platform"
- },
- "public_transport/stop_position": {
- "icon": "bus",
- "fields": [
- "ref",
- "operator",
- "network"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "public_transport": "stop_position"
- },
- "name": "Stop Position"
- },
- "railway": {
- "fields": [
- "railway"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "railway": "*"
- },
- "name": "Railway"
- },
- "railway/abandoned": {
- "icon": "railway-abandoned",
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "abandoned"
- },
- "fields": [
- "structure"
- ],
- "terms": [],
- "name": "Abandoned Railway"
- },
- "railway/disused": {
- "icon": "railway-disused",
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "disused"
- },
- "fields": [
- "structure"
- ],
- "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": [
- "point",
- "vertex"
- ],
- "tags": {
- "railway": "halt"
- },
- "name": "Railway Halt",
- "terms": [
- "break",
- "interrupt",
- "rest",
- "wait",
- "interruption"
- ]
- },
- "railway/level_crossing": {
- "icon": "cross",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "railway": "level_crossing"
- },
- "terms": [
- "crossing",
- "railroad crossing",
- "railway crossing",
- "grade crossing",
- "road through railroad",
- "train crossing"
- ],
- "name": "Level Crossing"
- },
- "railway/monorail": {
- "icon": "railway-monorail",
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "monorail"
- },
- "fields": [
- "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",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "railway": "platform"
- },
- "name": "Railway Platform"
- },
- "railway/rail": {
- "icon": "railway-rail",
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "rail"
- },
- "fields": [
- "structure",
- "gauge",
- "electrified"
- ],
- "terms": [],
- "name": "Rail"
- },
- "railway/station": {
- "icon": "rail",
- "fields": [
- "building_area"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "railway": "station"
- },
- "terms": [
- "train station",
- "station"
- ],
- "name": "Railway Station"
- },
- "railway/subway": {
- "icon": "railway-subway",
- "fields": [
- "structure",
- "gauge",
- "electrified"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "subway"
- },
- "terms": [],
- "name": "Subway"
- },
- "railway/subway_entrance": {
- "icon": "rail-metro",
- "geometry": [
- "point"
- ],
- "tags": {
- "railway": "subway_entrance"
- },
- "terms": [],
- "name": "Subway Entrance"
- },
- "railway/tram": {
- "icon": "railway-light-rail",
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "tram"
- },
- "fields": [
- "structure",
- "gauge",
- "electrified"
- ],
- "terms": [
- "streetcar"
- ],
- "name": "Tram"
- },
- "relation": {
- "name": "Relation",
- "icon": "relation",
- "tags": {},
- "geometry": [
- "relation"
- ],
- "fields": [
- "relation"
- ]
- },
- "route/ferry": {
- "icon": "ferry",
- "geometry": [
- "line"
- ],
- "tags": {
- "route": "ferry"
- },
- "name": "Ferry Route"
- },
- "shop": {
- "icon": "shop",
- "fields": [
- "shop",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "*"
- },
- "terms": [],
- "name": "Shop"
- },
- "shop/alcohol": {
- "icon": "alcohol-shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "alcohol"
- },
- "terms": [
- "alcohol"
- ],
- "name": "Liquor Store"
- },
- "shop/art": {
- "icon": "art-gallery",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "art store",
- "art gallery"
- ],
- "tags": {
- "shop": "art"
- },
- "name": "Art Shop"
- },
- "shop/bakery": {
- "icon": "bakery",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "bakery"
- },
- "name": "Bakery"
- },
- "shop/beauty": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "nail spa",
- "spa",
- "salon",
- "tanning"
- ],
- "tags": {
- "shop": "beauty"
- },
- "name": "Beauty Shop"
- },
- "shop/beverages": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "beverages"
- },
- "name": "Beverage Store"
- },
- "shop/bicycle": {
- "icon": "bicycle",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "bicycle"
- },
- "name": "Bicycle Shop"
- },
- "shop/bookmaker": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "bookmaker"
- },
- "name": "Bookmaker"
- },
- "shop/books": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "books"
- },
- "name": "Bookstore"
- },
- "shop/boutique": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "boutique"
- },
- "name": "Boutique"
- },
- "shop/butcher": {
- "icon": "slaughterhouse",
- "fields": [
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [],
- "tags": {
- "shop": "butcher"
- },
- "name": "Butcher"
- },
- "shop/car": {
- "icon": "car",
- "fields": [
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "car"
- },
- "name": "Car Dealership"
- },
- "shop/car_parts": {
- "icon": "car",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "car_parts"
- },
- "name": "Car Parts Store"
- },
- "shop/car_repair": {
- "icon": "car",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "car_repair"
- },
- "name": "Car Repair Shop"
- },
- "shop/chemist": {
- "icon": "chemist",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "chemist"
- },
- "name": "Chemist"
- },
- "shop/clothes": {
- "icon": "clothing-store",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "clothes"
- },
- "name": "Clothing Store"
- },
- "shop/computer": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "computer"
- },
- "name": "Computer Store"
- },
- "shop/confectionery": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "confectionery"
- },
- "name": "Confectionery"
- },
- "shop/convenience": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "convenience"
- },
- "name": "Convenience Store"
- },
- "shop/deli": {
- "icon": "restaurant",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "deli"
- },
- "name": "Deli"
- },
- "shop/department_store": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "department_store"
- },
- "name": "Department Store"
- },
- "shop/doityourself": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "doityourself"
- },
- "name": "DIY Store"
- },
- "shop/dry_cleaning": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "dry_cleaning"
- },
- "name": "Dry Cleaners"
- },
- "shop/electronics": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "electronics"
- },
- "name": "Electronics Store"
- },
- "shop/farm": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "farm"
- },
- "terms": [
- "farm shop",
- "farm stand"
- ],
- "name": "Produce Stand"
- },
- "shop/fishmonger": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "fishmonger"
- },
- "name": "Fishmonger",
- "searchable": false
- },
- "shop/florist": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "florist"
- },
- "name": "Florist"
- },
- "shop/funeral_directors": {
- "icon": "cemetery",
- "fields": [
- "address",
- "building_area",
- "religion",
- "denomination"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "funeral_directors"
- },
- "terms": [
- "undertaker",
- "funeral parlour",
- "funeral parlor",
- "memorial home"
- ],
- "name": "Funeral Home"
- },
- "shop/furniture": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "furniture"
- },
- "name": "Furniture Store"
- },
- "shop/garden_centre": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "garden centre"
- ],
- "tags": {
- "shop": "garden_centre"
- },
- "name": "Garden Center"
- },
- "shop/gift": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "gift"
- },
- "name": "Gift Shop"
- },
- "shop/greengrocer": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "greengrocer"
- },
- "name": "Greengrocer"
- },
- "shop/hairdresser": {
- "icon": "hairdresser",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "hairdresser"
- },
- "name": "Hairdresser"
- },
- "shop/hardware": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "hardware"
- },
- "name": "Hardware Store"
- },
- "shop/hifi": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "hifi"
- },
- "name": "Hifi Store"
- },
- "shop/jewelry": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "jewelry"
- },
- "name": "Jeweler"
- },
- "shop/kiosk": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "kiosk"
- },
- "name": "Kiosk"
- },
- "shop/laundry": {
- "icon": "laundry",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "laundry"
- },
- "name": "Laundry"
- },
- "shop/locksmith": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "keys"
- ],
- "tags": {
- "shop": "locksmith"
- },
- "name": "Locksmith"
- },
- "shop/lottery": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "lottery"
- },
- "name": "Lottery Shop"
- },
- "shop/mall": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "mall"
- },
- "name": "Mall"
- },
- "shop/mobile_phone": {
- "icon": "mobilephone",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "mobile_phone"
- },
- "name": "Mobile Phone Store"
- },
- "shop/motorcycle": {
- "icon": "scooter",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "motorcycle"
- },
- "name": "Motorcycle Dealership"
- },
- "shop/music": {
- "icon": "music",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "music"
- },
- "name": "Music Store"
- },
- "shop/newsagent": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "newsagent"
- },
- "name": "Newsagent"
- },
- "shop/optician": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "optician"
- },
- "name": "Optician"
- },
- "shop/outdoor": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "outdoor"
- },
- "name": "Outdoor Store"
- },
- "shop/pet": {
- "icon": "dog-park",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "pet"
- },
- "name": "Pet Store"
- },
- "shop/photo": {
- "icon": "camera",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "photo"
- },
- "name": "Photography Store"
- },
- "shop/seafood": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "seafood"
- },
- "terms": [
- "fishmonger"
- ],
- "name": "Seafood Shop"
- },
- "shop/shoes": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "shoes"
- },
- "name": "Shoe Store"
- },
- "shop/sports": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "sports"
- },
- "name": "Sporting Goods Store"
- },
- "shop/stationery": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "stationery"
- },
- "name": "Stationery Store"
- },
- "shop/supermarket": {
- "icon": "grocery",
- "fields": [
- "operator",
- "building_area",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "bazaar",
- "boutique",
- "chain",
- "co-op",
- "cut-rate store",
- "discount store",
- "five-and-dime",
- "flea market",
- "galleria",
- "grocery store",
- "mall",
- "mart",
- "outlet",
- "outlet store",
- "shop",
- "shopping center",
- "shopping centre",
- "shopping plaza",
- "stand",
- "store",
- "supermarket",
- "thrift shop"
- ],
- "tags": {
- "shop": "supermarket"
- },
- "name": "Supermarket"
- },
- "shop/tailor": {
- "name": "Tailor",
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "tailor",
- "clothes"
- ],
- "tags": {
- "shop": "tailor"
- },
- "icon": "clothing-store",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
- },
- "shop/toys": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "toys"
- },
- "name": "Toy Store"
- },
- "shop/travel_agency": {
- "icon": "suitcase",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "travel_agency"
- },
- "name": "Travel Agency"
- },
- "shop/tyres": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "tyres"
- },
- "name": "Tire Store"
- },
- "shop/vacant": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "vacant"
- },
- "name": "Vacant Shop"
- },
- "shop/variety_store": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "variety_store"
- },
- "name": "Variety Store"
- },
- "shop/video": {
- "icon": "shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "video"
- },
- "name": "Video Store"
- },
- "shop/wine": {
- "icon": "alcohol-shop",
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "shop": "wine"
- },
- "terms": [
- "winery"
- ],
- "name": "Wine Shop"
- },
- "tourism": {
- "fields": [
- "tourism"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "tourism": "*"
- },
- "name": "Tourism"
- },
- "tourism/alpine_hut": {
- "icon": "lodging",
- "fields": [
- "operator",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "tourism": "alpine_hut"
- },
- "name": "Alpine Hut"
- },
- "tourism/artwork": {
- "fields": [
- "artwork_type",
- "artist"
- ],
- "icon": "art-gallery",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "tourism": "artwork"
- },
- "terms": [
- "mural",
- "sculpture",
- "statue"
- ],
- "name": "Artwork"
- },
- "tourism/attraction": {
- "icon": "monument",
- "fields": [
- "operator",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "tourism": "attraction"
- },
- "name": "Tourist Attraction"
- },
- "tourism/camp_site": {
- "icon": "campsite",
- "fields": [
- "operator",
- "address",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "camping"
- ],
- "tags": {
- "tourism": "camp_site"
- },
- "name": "Camp Site"
- },
- "tourism/caravan_site": {
- "fields": [
- "operator",
- "address",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "tourism": "caravan_site"
- },
- "name": "RV Park"
- },
- "tourism/chalet": {
- "icon": "lodging",
- "fields": [
- "operator",
- "building_area",
- "address",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "tourism": "chalet"
- },
- "name": "Chalet"
- },
- "tourism/guest_house": {
- "icon": "lodging",
- "fields": [
- "operator",
- "address",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "tourism": "guest_house"
- },
- "terms": [
- "B&B",
- "Bed & Breakfast",
- "Bed and Breakfast"
- ],
- "name": "Guest House"
- },
- "tourism/hostel": {
- "icon": "lodging",
- "fields": [
- "operator",
- "building_area",
- "address",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "tourism": "hostel"
- },
- "name": "Hostel"
- },
- "tourism/hotel": {
- "icon": "lodging",
- "fields": [
- "operator",
- "building_area",
- "address",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [],
- "tags": {
- "tourism": "hotel"
- },
- "name": "Hotel"
- },
- "tourism/information": {
- "fields": [
- "information",
- "building_area",
- "address",
- "operator"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "tourism": "information"
- },
- "name": "Information"
- },
- "tourism/motel": {
- "icon": "lodging",
- "fields": [
- "operator",
- "building_area",
- "address",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "tourism": "motel"
- },
- "name": "Motel"
- },
- "tourism/museum": {
- "icon": "museum",
- "fields": [
- "operator",
- "building_area",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "exhibition",
- "exhibits archive",
- "foundation",
- "gallery",
- "hall",
- "institution",
- "library",
- "menagerie",
- "repository",
- "salon",
- "storehouse",
- "treasury",
- "vault"
- ],
- "tags": {
- "tourism": "museum"
- },
- "name": "Museum"
- },
- "tourism/picnic_site": {
- "icon": "park",
- "fields": [
- "operator",
- "address",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [],
- "tags": {
- "tourism": "picnic_site"
- },
- "name": "Picnic Site"
- },
- "tourism/theme_park": {
- "fields": [
- "operator",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "tourism": "theme_park"
- },
- "name": "Theme Park"
- },
- "tourism/viewpoint": {
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "tourism": "viewpoint"
- },
- "name": "Viewpoint"
- },
- "tourism/zoo": {
- "icon": "zoo",
- "fields": [
- "operator",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "tourism": "zoo"
- },
- "name": "Zoo"
- },
- "type/boundary": {
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "boundary"
- },
- "name": "Boundary",
- "icon": "boundary",
- "fields": [
- "boundary"
- ]
- },
- "type/boundary/administrative": {
- "name": "Administrative Boundary",
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "boundary",
- "boundary": "administrative"
- },
- "fields": [
- "admin_level"
- ],
- "icon": "boundary"
- },
- "type/multipolygon": {
- "geometry": [
- "area",
- "relation"
- ],
- "tags": {
- "type": "multipolygon"
- },
- "removeTags": {},
- "name": "Multipolygon",
- "icon": "multipolygon",
- "searchable": false,
- "matchScore": 0.1
- },
- "type/restriction": {
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction"
- },
- "name": "Restriction",
- "icon": "restriction",
- "fields": [
- "restriction",
- "except"
- ]
- },
- "type/restriction/no_left_turn": {
- "name": "No Left Turn",
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "no_left_turn"
- },
- "fields": [
- "except"
- ],
- "icon": "restriction-no-left-turn"
- },
- "type/restriction/no_right_turn": {
- "name": "No Right Turn",
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "no_right_turn"
- },
- "fields": [
- "except"
- ],
- "icon": "restriction-no-right-turn"
- },
- "type/restriction/no_straight_on": {
- "name": "No Straight On",
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "no_straight_on"
- },
- "fields": [
- "except"
- ],
- "icon": "restriction-no-straight-on"
- },
- "type/restriction/no_u_turn": {
- "name": "No U-turn",
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "no_u_turn"
- },
- "fields": [
- "except"
- ],
- "icon": "restriction-no-u-turn"
- },
- "type/restriction/only_left_turn": {
- "name": "Left Turn Only",
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "only_left_turn"
- },
- "fields": [
- "except"
- ],
- "icon": "restriction-only-left-turn"
- },
- "type/restriction/only_right_turn": {
- "name": "Right Turn Only",
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "only_right_turn"
- },
- "fields": [
- "except"
- ],
- "icon": "restriction-only-right-turn"
- },
- "type/restriction/only_straight_on": {
- "name": "No Turns",
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "only_straight_on"
- },
- "fields": [
- "except"
- ],
- "icon": "restriction-only-straight-on"
- },
- "type/route": {
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route"
- },
- "name": "Route",
- "icon": "route",
- "fields": [
- "route",
- "ref"
- ]
- },
- "type/route/bicycle": {
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "bicycle"
- },
- "name": "Cycle Route",
- "icon": "route-bicycle",
- "fields": [
- "ref",
- "network"
- ]
- },
- "type/route/bus": {
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "bus"
- },
- "name": "Bus Route",
- "icon": "route-bus",
- "fields": [
- "ref",
- "operator",
- "network"
- ]
- },
- "type/route/detour": {
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "detour"
- },
- "name": "Detour Route",
- "icon": "route-detour",
- "fields": [
- "ref"
- ]
- },
- "type/route/ferry": {
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "ferry"
- },
- "name": "Ferry Route",
- "icon": "route-ferry",
- "fields": [
- "ref",
- "operator",
- "network"
- ]
- },
- "type/route/foot": {
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "foot"
- },
- "name": "Foot Route",
- "icon": "route-foot",
- "fields": [
- "ref",
- "operator",
- "network"
- ]
- },
- "type/route/hiking": {
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "hiking"
- },
- "name": "Hiking Route",
- "icon": "route-foot",
- "fields": [
- "ref",
- "operator",
- "network"
- ]
- },
- "type/route/pipeline": {
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "pipeline"
- },
- "name": "Pipeline Route",
- "icon": "route-pipeline",
- "fields": [
- "ref",
- "operator"
- ]
- },
- "type/route/power": {
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "power"
- },
- "name": "Power Route",
- "icon": "route-power",
- "fields": [
- "ref",
- "operator"
- ]
- },
- "type/route/road": {
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "road"
- },
- "name": "Road Route",
- "icon": "route-road",
- "fields": [
- "ref"
- ]
- },
- "type/route/train": {
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "train"
- },
- "name": "Train Route",
- "icon": "route-train",
- "fields": [
- "ref",
- "operator"
- ]
- },
- "type/route/tram": {
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "tram"
- },
- "name": "Tram Route",
- "icon": "route-tram",
- "fields": [
- "ref",
- "operator"
- ]
- },
- "type/route_master": {
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route_master"
- },
- "name": "Route Master",
- "icon": "route-master",
- "fields": [
- "route_master",
- "ref",
- "operator",
- "network"
- ]
- },
- "vertex": {
- "name": "Other",
- "tags": {},
- "geometry": [
- "vertex"
- ],
- "matchScore": 0.1
- },
- "waterway": {
- "fields": [
- "waterway"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "waterway": "*"
- },
- "name": "Waterway"
- },
- "waterway/canal": {
- "icon": "waterway-canal",
- "fields": [
- "width"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "waterway": "canal"
- },
- "name": "Canal"
- },
- "waterway/dam": {
- "icon": "dam",
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "waterway": "dam"
- },
- "name": "Dam"
- },
- "waterway/ditch": {
- "icon": "waterway-ditch",
- "fields": [
- "tunnel"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "waterway": "ditch"
- },
- "name": "Ditch"
- },
- "waterway/drain": {
- "icon": "waterway-stream",
- "fields": [
- "tunnel"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "waterway": "drain"
- },
- "name": "Drain"
- },
- "waterway/river": {
- "icon": "waterway-river",
- "fields": [
- "tunnel",
- "width"
- ],
- "geometry": [
- "line"
- ],
- "terms": [
- "beck",
- "branch",
- "brook",
- "course",
- "creek",
- "estuary",
- "rill",
- "rivulet",
- "run",
- "runnel",
- "stream",
- "tributary",
- "watercourse"
- ],
- "tags": {
- "waterway": "river"
- },
- "name": "River"
- },
- "waterway/riverbank": {
- "icon": "water",
- "geometry": [
- "area"
- ],
- "tags": {
- "waterway": "riverbank"
- },
- "name": "Riverbank"
- },
- "waterway/stream": {
- "icon": "waterway-stream",
- "fields": [
- "tunnel",
- "width"
- ],
- "geometry": [
- "line"
- ],
- "terms": [
- "beck",
- "branch",
- "brook",
- "burn",
- "course",
- "creek",
- "current",
- "drift",
- "flood",
- "flow",
- "freshet",
- "race",
- "rill",
- "rindle",
- "rivulet",
- "run",
- "runnel",
- "rush",
- "spate",
- "spritz",
- "surge",
- "tide",
- "torrent",
- "tributary",
- "watercourse"
- ],
- "tags": {
- "waterway": "stream"
- },
- "name": "Stream"
- },
- "waterway/weir": {
- "icon": "dam",
- "geometry": [
- "vertex",
- "line"
- ],
- "tags": {
- "waterway": "weir"
- },
- "name": "Weir"
- },
- "amenity/fuel/76": {
- "tags": {
- "name": "76",
- "amenity": "fuel"
- },
- "name": "76",
- "icon": "fuel",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "address",
- "building_area"
- ],
- "suggestion": true
- },
- "amenity/fuel/Neste": {
- "tags": {
- "name": "Neste",
- "amenity": "fuel"
- },
- "name": "Neste",
- "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/Shell": {
- "tags": {
- "name": "Shell",
- "amenity": "fuel"
- },
- "name": "Shell",
- "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/Migrol": {
- "tags": {
- "name": "Migrol",
- "amenity": "fuel"
- },
- "name": "Migrol",
- "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/Texaco": {
- "tags": {
- "name": "Texaco",
- "amenity": "fuel"
- },
- "name": "Texaco",
- "icon": "fuel",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "address",
- "building_area"
- ],
- "suggestion": true
- },
- "amenity/fuel/Total": {
- "tags": {
- "name": "Total",
- "amenity": "fuel"
- },
- "name": "Total",
- "icon": "fuel",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "address",
- "building_area"
- ],
- "suggestion": true
- },
- "amenity/fuel/Statoil": {
- "tags": {
- "name": "Statoil",
- "amenity": "fuel"
- },
- "name": "Statoil",
- "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/Jet": {
- "tags": {
- "name": "Jet",
- "amenity": "fuel"
- },
- "name": "Jet",
- "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/OMV": {
- "tags": {
- "name": "OMV",
- "amenity": "fuel"
- },
- "name": "OMV",
- "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/JET": {
- "tags": {
- "name": "JET",
- "amenity": "fuel"
- },
- "name": "JET",
- "icon": "fuel",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "address",
- "building_area"
- ],
- "suggestion": true
- },
- "amenity/fuel/United": {
- "tags": {
- "name": "United",
- "amenity": "fuel"
- },
- "name": "United",
- "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/Caltex": {
- "tags": {
- "name": "Caltex",
- "amenity": "fuel"
- },
- "name": "Caltex",
- "icon": "fuel",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "address",
- "building_area"
- ],
- "suggestion": true
- },
- "amenity/fuel/Sunoco": {
- "tags": {
- "name": "Sunoco",
- "amenity": "fuel"
- },
- "name": "Sunoco",
- "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/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/Total Access": {
- "tags": {
- "name": "Total Access",
- "amenity": "fuel"
- },
- "name": "Total Access",
- "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/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",
- "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/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",
- "amenity": "fuel"
- },
- "name": "ÖMV",
- "icon": "fuel",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "address",
- "building_area"
- ],
- "suggestion": true
- },
- "amenity/fuel/Tinq": {
- "tags": {
- "name": "Tinq",
- "amenity": "fuel"
- },
- "name": "Tinq",
- "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/Repsol": {
- "tags": {
- "name": "Repsol",
- "amenity": "fuel"
- },
- "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/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/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/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",
- "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/Elan": {
- "tags": {
- "name": "Elan",
- "amenity": "fuel"
- },
- "name": "Elan",
- "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/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/Neste A24": {
- "tags": {
- "name": "Neste A24",
- "amenity": "fuel"
- },
- "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",
- "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/REPSOL": {
- "tags": {
- "name": "REPSOL",
- "amenity": "fuel"
- },
- "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/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",
- "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/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/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/YPF": {
- "tags": {
- "name": "YPF",
- "amenity": "fuel"
- },
- "name": "YPF",
- "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/Башнефть": {
- "tags": {
- "name": "Башнефть",
- "amenity": "fuel"
- },
- "name": "Башнефть",
- "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/コスモ石油 (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/出光": {
- "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/Conoco": {
- "tags": {
- "name": "Conoco",
- "amenity": "fuel"
- },
- "name": "Conoco",
- "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/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/Posto Shell": {
- "tags": {
- "name": "Posto Shell",
- "amenity": "fuel"
- },
- "name": "Posto Shell",
- "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": "บางจาก",
- "amenity": "fuel"
- },
- "name": "บางจาก",
- "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/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": "ป ต ท",
- "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/ANP": {
- "tags": {
- "name": "ANP",
- "amenity": "fuel"
- },
- "name": "ANP",
- "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/Petrolimex": {
- "tags": {
- "name": "Petrolimex",
- "amenity": "fuel"
- },
- "name": "Petrolimex",
- "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/Posto": {
- "tags": {
- "name": "Posto",
- "amenity": "fuel"
- },
- "name": "Posto",
- "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",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "address",
- "building_area"
- ],
- "suggestion": true
- },
- "amenity/fuel/昭和シェル (Showa-shell)": {
- "tags": {
- "name": "昭和シェル (Showa-shell)",
- "amenity": "fuel"
- },
- "name": "昭和シェル (Showa-shell)",
- "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/CNG": {
- "tags": {
- "name": "CNG",
- "amenity": "fuel"
- },
- "name": "CNG",
- "icon": "fuel",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "address",
- "building_area"
- ],
- "suggestion": true
- },
- "amenity/pub/Kings Arms": {
- "tags": {
- "name": "Kings Arms",
- "amenity": "pub"
- },
- "name": "Kings Arms",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Ship": {
- "tags": {
- "name": "The Ship",
- "amenity": "pub"
- },
- "name": "The Ship",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The White Horse": {
- "tags": {
- "name": "The White Horse",
- "amenity": "pub"
- },
- "name": "The White Horse",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The White Hart": {
- "tags": {
- "name": "The White Hart",
- "amenity": "pub"
- },
- "name": "The White Hart",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/Royal Oak": {
- "tags": {
- "name": "Royal Oak",
- "amenity": "pub"
- },
- "name": "Royal Oak",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Red Lion": {
- "tags": {
- "name": "The Red Lion",
- "amenity": "pub"
- },
- "name": "The Red Lion",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Kings Arms": {
- "tags": {
- "name": "The Kings Arms",
- "amenity": "pub"
- },
- "name": "The Kings Arms",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Star": {
- "tags": {
- "name": "The Star",
- "amenity": "pub"
- },
- "name": "The Star",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Anchor": {
- "tags": {
- "name": "The Anchor",
- "amenity": "pub"
- },
- "name": "The Anchor",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Cross Keys": {
- "tags": {
- "name": "The Cross Keys",
- "amenity": "pub"
- },
- "name": "The Cross Keys",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Wheatsheaf": {
- "tags": {
- "name": "The Wheatsheaf",
- "amenity": "pub"
- },
- "name": "The Wheatsheaf",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Crown Inn": {
- "tags": {
- "name": "The Crown Inn",
- "amenity": "pub"
- },
- "name": "The Crown Inn",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Kings Head": {
- "tags": {
- "name": "The Kings Head",
- "amenity": "pub"
- },
- "name": "The Kings Head",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Castle": {
- "tags": {
- "name": "The Castle",
- "amenity": "pub"
- },
- "name": "The Castle",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Railway": {
- "tags": {
- "name": "The Railway",
- "amenity": "pub"
- },
- "name": "The Railway",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The White Lion": {
- "tags": {
- "name": "The White Lion",
- "amenity": "pub"
- },
- "name": "The White Lion",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Bell": {
- "tags": {
- "name": "The Bell",
- "amenity": "pub"
- },
- "name": "The Bell",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Bull": {
- "tags": {
- "name": "The Bull",
- "amenity": "pub"
- },
- "name": "The Bull",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Plough": {
- "tags": {
- "name": "The Plough",
- "amenity": "pub"
- },
- "name": "The Plough",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The George": {
- "tags": {
- "name": "The George",
- "amenity": "pub"
- },
- "name": "The George",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Royal Oak": {
- "tags": {
- "name": "The Royal Oak",
- "amenity": "pub"
- },
- "name": "The Royal Oak",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Fox": {
- "tags": {
- "name": "The Fox",
- "amenity": "pub"
- },
- "name": "The Fox",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/Prince of Wales": {
- "tags": {
- "name": "Prince of Wales",
- "amenity": "pub"
- },
- "name": "Prince of Wales",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Rising Sun": {
- "tags": {
- "name": "The Rising Sun",
- "amenity": "pub"
- },
- "name": "The Rising Sun",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Prince of Wales": {
- "tags": {
- "name": "The Prince of Wales",
- "amenity": "pub"
- },
- "name": "The Prince of Wales",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Crown": {
- "tags": {
- "name": "The Crown",
- "amenity": "pub"
- },
- "name": "The Crown",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Chequers": {
- "tags": {
- "name": "The Chequers",
- "amenity": "pub"
- },
- "name": "The Chequers",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Swan": {
- "tags": {
- "name": "The Swan",
- "amenity": "pub"
- },
- "name": "The Swan",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/Rose and Crown": {
- "tags": {
- "name": "Rose and Crown",
- "amenity": "pub"
- },
- "name": "Rose and Crown",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Victoria": {
- "tags": {
- "name": "The Victoria",
- "amenity": "pub"
- },
- "name": "The Victoria",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/New Inn": {
- "tags": {
- "name": "New Inn",
- "amenity": "pub"
- },
- "name": "New Inn",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/Royal Hotel": {
- "tags": {
- "name": "Royal Hotel",
- "amenity": "pub"
- },
- "name": "Royal Hotel",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/Red Lion": {
- "tags": {
- "name": "Red Lion",
- "amenity": "pub"
- },
- "name": "Red Lion",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/Cross Keys": {
- "tags": {
- "name": "Cross Keys",
- "amenity": "pub"
- },
- "name": "Cross Keys",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Greyhound": {
- "tags": {
- "name": "The Greyhound",
- "amenity": "pub"
- },
- "name": "The Greyhound",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Black Horse": {
- "tags": {
- "name": "The Black Horse",
- "amenity": "pub"
- },
- "name": "The Black Horse",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The New Inn": {
- "tags": {
- "name": "The New Inn",
- "amenity": "pub"
- },
- "name": "The New Inn",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/Kings Head": {
- "tags": {
- "name": "Kings Head",
- "amenity": "pub"
- },
- "name": "Kings Head",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Albion": {
- "tags": {
- "name": "The Albion",
- "amenity": "pub"
- },
- "name": "The Albion",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Angel": {
- "tags": {
- "name": "The Angel",
- "amenity": "pub"
- },
- "name": "The Angel",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Queens Head": {
- "tags": {
- "name": "The Queens Head",
- "amenity": "pub"
- },
- "name": "The Queens Head",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/The Ship Inn": {
- "tags": {
- "name": "The Ship Inn",
- "amenity": "pub"
- },
- "name": "The Ship Inn",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/Rose & Crown": {
- "tags": {
- "name": "Rose & Crown",
- "amenity": "pub"
- },
- "name": "Rose & Crown",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/Queens Head": {
- "tags": {
- "name": "Queens Head",
- "amenity": "pub"
- },
- "name": "Queens Head",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/pub/Irish Pub": {
- "tags": {
- "name": "Irish Pub",
- "amenity": "pub"
- },
- "name": "Irish Pub",
- "icon": "beer",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/McDonald's": {
- "tags": {
- "name": "McDonald's",
- "cuisine": "burger",
- "amenity": "fast_food"
- },
- "name": "McDonald's",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Subway": {
- "tags": {
- "name": "Subway",
- "cuisine": "sandwich",
- "amenity": "fast_food"
- },
- "name": "Subway",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Burger King": {
- "tags": {
- "name": "Burger King",
- "cuisine": "burger",
- "amenity": "fast_food"
- },
- "name": "Burger King",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Hungry Jacks": {
- "tags": {
- "name": "Hungry Jacks",
- "cuisine": "burger",
- "amenity": "fast_food"
- },
- "name": "Hungry Jacks",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Domino's Pizza": {
- "tags": {
- "name": "Domino's Pizza",
- "cuisine": "pizza",
- "amenity": "fast_food"
- },
- "name": "Domino's Pizza",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/肯德基": {
- "tags": {
- "name": "肯德基",
- "amenity": "fast_food"
- },
- "name": "肯德基",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Wendy's": {
- "tags": {
- "name": "Wendy's",
- "cuisine": "burger",
- "amenity": "fast_food"
- },
- "name": "Wendy's",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Hardee's": {
- "tags": {
- "name": "Hardee's",
- "cuisine": "burger",
- "amenity": "fast_food"
- },
- "name": "Hardee's",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/麥當勞": {
- "tags": {
- "name": "麥當勞",
- "amenity": "fast_food"
- },
- "name": "麥當勞",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Jack in the Box": {
- "tags": {
- "name": "Jack in the Box",
- "cuisine": "burger",
- "amenity": "fast_food"
- },
- "name": "Jack in the Box",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Carl's Jr.": {
- "tags": {
- "name": "Carl's Jr.",
- "cuisine": "burger",
- "amenity": "fast_food"
- },
- "name": "Carl's Jr.",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Papa John's": {
- "tags": {
- "name": "Papa John's",
- "cuisine": "pizza",
- "amenity": "fast_food"
- },
- "name": "Papa John's",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/In-N-Out Burger": {
- "tags": {
- "name": "In-N-Out Burger",
- "amenity": "fast_food"
- },
- "name": "In-N-Out Burger",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Jimmy John's": {
- "tags": {
- "name": "Jimmy John's",
- "amenity": "fast_food"
- },
- "name": "Jimmy John's",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Робин Сдобин": {
- "tags": {
- "name": "Робин Сдобин",
- "amenity": "fast_food"
- },
- "name": "Робин Сдобин",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/吉野家": {
- "tags": {
- "name": "吉野家",
- "amenity": "fast_food"
- },
- "name": "吉野家",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/El Pollo Loco": {
- "tags": {
- "name": "El Pollo Loco",
- "amenity": "fast_food"
- },
- "name": "El Pollo Loco",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Chick-fil-A": {
- "tags": {
- "name": "Chick-fil-A",
- "cuisine": "chicken",
- "amenity": "fast_food"
- },
- "name": "Chick-fil-A",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Taco John's": {
- "tags": {
- "name": "Taco John's",
- "amenity": "fast_food"
- },
- "name": "Taco John's",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Теремок": {
- "tags": {
- "name": "Теремок",
- "amenity": "fast_food"
- },
- "name": "Теремок",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Church's Chicken": {
- "tags": {
- "name": "Church's Chicken",
- "amenity": "fast_food"
- },
- "name": "Church's Chicken",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Popeye's": {
- "tags": {
- "name": "Popeye's",
- "cuisine": "chicken",
- "amenity": "fast_food"
- },
- "name": "Popeye's",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Long John Silver's": {
- "tags": {
- "name": "Long John Silver's",
- "amenity": "fast_food"
- },
- "name": "Long John Silver's",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Zaxby's": {
- "tags": {
- "name": "Zaxby's",
- "amenity": "fast_food"
- },
- "name": "Zaxby's",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Русский Аппетит": {
- "tags": {
- "name": "Русский Аппетит",
- "amenity": "fast_food"
- },
- "name": "Русский Аппетит",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/fast_food/なか卯": {
- "tags": {
- "name": "なか卯",
- "amenity": "fast_food"
- },
- "name": "なか卯",
- "icon": "fast-food",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Little Chef": {
- "tags": {
- "name": "Little Chef",
- "amenity": "restaurant"
- },
- "name": "Little Chef",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Adler": {
- "tags": {
- "name": "Adler",
- "amenity": "restaurant"
- },
- "name": "Adler",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Zur Krone": {
- "tags": {
- "name": "Zur Krone",
- "amenity": "restaurant"
- },
- "name": "Zur Krone",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "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",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Krone": {
- "tags": {
- "name": "Krone",
- "amenity": "restaurant"
- },
- "name": "Krone",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Zur Sonne": {
- "tags": {
- "name": "Zur Sonne",
- "amenity": "restaurant"
- },
- "name": "Zur Sonne",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Zur Linde": {
- "tags": {
- "name": "Zur Linde",
- "amenity": "restaurant"
- },
- "name": "Zur Linde",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Poseidon": {
- "tags": {
- "name": "Poseidon",
- "amenity": "restaurant"
- },
- "name": "Poseidon",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Pataterie": {
- "tags": {
- "name": "La Pataterie",
- "amenity": "restaurant"
- },
- "name": "La Pataterie",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Bella Napoli": {
- "tags": {
- "name": "Bella Napoli",
- "amenity": "restaurant"
- },
- "name": "Bella Napoli",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Adria": {
- "tags": {
- "name": "Adria",
- "amenity": "restaurant"
- },
- "name": "Adria",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/デニーズ": {
- "tags": {
- "name": "デニーズ",
- "amenity": "restaurant"
- },
- "name": "デニーズ",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/餃子の王将": {
- "tags": {
- "name": "餃子の王将",
- "amenity": "restaurant"
- },
- "name": "餃子の王将",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Pizzeria Roma": {
- "tags": {
- "name": "Pizzeria Roma",
- "amenity": "restaurant"
- },
- "name": "Pizzeria Roma",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Asia": {
- "tags": {
- "name": "Asia",
- "amenity": "restaurant"
- },
- "name": "Asia",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/ガスト": {
- "tags": {
- "name": "ガスト",
- "name:en": "Gusto",
- "amenity": "restaurant"
- },
- "name": "ガスト",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/サイゼリヤ": {
- "tags": {
- "name": "サイゼリヤ",
- "amenity": "restaurant"
- },
- "name": "サイゼリヤ",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Strada": {
- "tags": {
- "name": "La Strada",
- "amenity": "restaurant"
- },
- "name": "La Strada",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "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",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Round Table Pizza": {
- "tags": {
- "name": "Round Table Pizza",
- "amenity": "restaurant"
- },
- "name": "Round Table Pizza",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Якитория": {
- "tags": {
- "name": "Якитория",
- "amenity": "restaurant"
- },
- "name": "Якитория",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/바다횟집 (Bada Fish Restaurant)": {
- "tags": {
- "name": "바다횟집 (Bada Fish Restaurant)",
- "amenity": "restaurant"
- },
- "name": "바다횟집 (Bada Fish Restaurant)",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "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",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Евразия": {
- "tags": {
- "name": "Евразия",
- "amenity": "restaurant"
- },
- "name": "Евразия",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/restaurant/ジョナサン": {
- "tags": {
- "name": "ジョナサン",
- "amenity": "restaurant"
- },
- "name": "ジョナサン",
- "icon": "restaurant",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "capacity",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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/Raiffeisenbank": {
- "tags": {
- "name": "Raiffeisenbank",
- "amenity": "bank"
- },
- "name": "Raiffeisenbank",
- "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/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/Banco Galicia": {
- "tags": {
- "name": "Banco Galicia",
- "amenity": "bank"
- },
- "name": "Banco Galicia",
- "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
- },
- "amenity/bank/Canara Bank": {
- "tags": {
- "name": "Canara Bank",
- "amenity": "bank"
- },
- "name": "Canara Bank",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/Cajamar": {
- "tags": {
- "name": "Cajamar",
- "amenity": "bank"
- },
- "name": "Cajamar",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/Banamex": {
- "tags": {
- "name": "Banamex",
- "amenity": "bank"
- },
- "name": "Banamex",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/Davivienda": {
- "tags": {
- "name": "Davivienda",
- "amenity": "bank"
- },
- "name": "Davivienda",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/Bankinter": {
- "tags": {
- "name": "Bankinter",
- "amenity": "bank"
- },
- "name": "Bankinter",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "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/Security Bank": {
- "tags": {
- "name": "Security Bank",
- "amenity": "bank"
- },
- "name": "Security Bank",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/Bankia": {
- "tags": {
- "name": "Bankia",
- "amenity": "bank"
- },
- "name": "Bankia",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/三菱東京UFJ銀行": {
- "tags": {
- "name": "三菱東京UFJ銀行",
- "amenity": "bank"
- },
- "name": "三菱東京UFJ銀行",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/Caixa": {
- "tags": {
- "name": "Caixa",
- "amenity": "bank"
- },
- "name": "Caixa",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco de Costa Rica": {
- "tags": {
- "name": "Banco de Costa Rica",
- "amenity": "bank"
- },
- "name": "Banco de Costa Rica",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/Itaú": {
- "tags": {
- "name": "Itaú",
- "amenity": "bank"
- },
- "name": "Itaú",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/PBZ": {
- "tags": {
- "name": "PBZ",
- "amenity": "bank"
- },
- "name": "PBZ",
- "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/Bancolombia": {
- "tags": {
- "name": "Bancolombia",
- "amenity": "bank"
- },
- "name": "Bancolombia",
- "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/Bancomer": {
- "tags": {
- "name": "Bancomer",
- "amenity": "bank"
- },
- "name": "Bancomer",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/Banorte": {
- "tags": {
- "name": "Banorte",
- "amenity": "bank"
- },
- "name": "Banorte",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/Alior Bank": {
- "tags": {
- "name": "Alior Bank",
- "amenity": "bank"
- },
- "name": "Alior Bank",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/BOC": {
- "tags": {
- "name": "BOC",
- "amenity": "bank"
- },
- "name": "BOC",
- "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/Getin Bank": {
- "tags": {
- "name": "Getin Bank",
- "amenity": "bank"
- },
- "name": "Getin Bank",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "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/Banco Estado": {
- "tags": {
- "name": "Banco Estado",
- "amenity": "bank"
- },
- "name": "Banco Estado",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/BCI": {
- "tags": {
- "name": "BCI",
- "amenity": "bank"
- },
- "name": "BCI",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/SunTrust": {
- "tags": {
- "name": "SunTrust",
- "amenity": "bank"
- },
- "name": "SunTrust",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/신한은행": {
- "tags": {
- "name": "신한은행",
- "name:en": "Sinhan Bank",
- "amenity": "bank"
- },
- "name": "신한은행",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/우리은행": {
- "tags": {
- "name": "우리은행",
- "name:en": "Uri Bank",
- "amenity": "bank"
- },
- "name": "우리은행",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/국민은행": {
- "tags": {
- "name": "국민은행",
- "name:en": "Gungmin Bank",
- "amenity": "bank"
- },
- "name": "국민은행",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/광주은행": {
- "tags": {
- "name": "광주은행",
- "name:en": "Gwangju Bank",
- "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/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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "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/Уралсиб": {
- "tags": {
- "name": "Уралсиб",
- "amenity": "bank"
- },
- "name": "Уралсиб",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/りそな銀行": {
- "tags": {
- "name": "りそな銀行",
- "name:en": "Mizuho Bank",
- "amenity": "bank"
- },
- "name": "りそな銀行",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/Ecobank": {
- "tags": {
- "name": "Ecobank",
- "amenity": "bank"
- },
- "name": "Ecobank",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "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",
- "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/Banco Provincia": {
- "tags": {
- "name": "Banco Provincia",
- "amenity": "bank"
- },
- "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
- },
- "amenity/bank/Возрождение": {
- "tags": {
- "name": "Возрождение",
- "amenity": "bank"
- },
- "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
- },
- "amenity/bank/横浜銀行": {
- "tags": {
- "name": "横浜銀行",
- "amenity": "bank"
- },
- "name": "横浜銀行",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "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",
- "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
- },
- "amenity/bank/Banco G&T Continental": {
- "tags": {
- "name": "Banco G&T Continental",
- "amenity": "bank"
- },
- "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
- },
- "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/Provincial": {
- "tags": {
- "name": "Provincial",
- "amenity": "bank"
- },
- "name": "Provincial",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco de Desarrollo Banrural": {
- "tags": {
- "name": "Banco de Desarrollo Banrural",
- "amenity": "bank"
- },
- "name": "Banco de Desarrollo Banrural",
- "icon": "bank",
- "geometry": [
- "point",
- "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
- },
- "amenity/bank/Bicentenario": {
- "tags": {
- "name": "Bicentenario",
- "amenity": "bank"
- },
- "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
- },
- "amenity/bank/Banesco": {
- "tags": {
- "name": "Banesco",
- "amenity": "bank"
- },
- "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
- },
- "amenity/bank/Bank BRI": {
- "tags": {
- "name": "Bank BRI",
- "amenity": "bank"
- },
- "name": "Bank BRI",
- "icon": "bank",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "atm",
- "building_area",
- "address",
- "opening_hours"
- ],
- "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",
- "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/CityCommerce Bank": {
- "tags": {
- "name": "CityCommerce Bank",
- "amenity": "bank"
- },
- "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
- },
- "amenity/car_rental/Europcar": {
- "tags": {
- "name": "Europcar",
- "amenity": "car_rental"
- },
- "name": "Europcar",
- "icon": "car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "operator"
- ],
- "suggestion": true
- },
- "amenity/car_rental/Budget": {
- "tags": {
- "name": "Budget",
- "amenity": "car_rental"
- },
- "name": "Budget",
- "icon": "car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "operator"
- ],
- "suggestion": true
- },
- "amenity/car_rental/Sixt": {
- "tags": {
- "name": "Sixt",
- "amenity": "car_rental"
- },
- "name": "Sixt",
- "icon": "car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "operator"
- ],
- "suggestion": true
- },
- "amenity/car_rental/Avis": {
- "tags": {
- "name": "Avis",
- "amenity": "car_rental"
- },
- "name": "Avis",
- "icon": "car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "operator"
- ],
- "suggestion": true
- },
- "amenity/car_rental/Hertz": {
- "tags": {
- "name": "Hertz",
- "amenity": "car_rental"
- },
- "name": "Hertz",
- "icon": "car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "operator"
- ],
- "suggestion": true
- },
- "amenity/car_rental/Enterprise": {
- "tags": {
- "name": "Enterprise",
- "amenity": "car_rental"
- },
- "name": "Enterprise",
- "icon": "car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "operator"
- ],
- "suggestion": true
- },
- "amenity/car_rental/stadtmobil CarSharing-Station": {
- "tags": {
- "name": "stadtmobil CarSharing-Station",
- "amenity": "car_rental"
- },
- "name": "stadtmobil CarSharing-Station",
- "icon": "car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "operator"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Rowlands Pharmacy": {
- "tags": {
- "name": "Rowlands Pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Rowlands Pharmacy",
- "icon": "pharmacy",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Boots": {
- "tags": {
- "name": "Boots",
- "amenity": "pharmacy"
- },
- "name": "Boots",
- "icon": "pharmacy",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Superdrug": {
- "tags": {
- "name": "Superdrug",
- "amenity": "pharmacy"
- },
- "name": "Superdrug",
- "icon": "pharmacy",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Sonnen-Apotheke": {
- "tags": {
- "name": "Sonnen-Apotheke",
- "amenity": "pharmacy"
- },
- "name": "Sonnen-Apotheke",
- "icon": "pharmacy",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Stern-Apotheke": {
- "tags": {
- "name": "Stern-Apotheke",
- "amenity": "pharmacy"
- },
- "name": "Stern-Apotheke",
- "icon": "pharmacy",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Rosen-Apotheke": {
- "tags": {
- "name": "Rosen-Apotheke",
- "amenity": "pharmacy"
- },
- "name": "Rosen-Apotheke",
- "icon": "pharmacy",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Stadt-Apotheke": {
- "tags": {
- "name": "Stadt-Apotheke",
- "amenity": "pharmacy"
- },
- "name": "Stadt-Apotheke",
- "icon": "pharmacy",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address",
- "opening_hours"
- ],
- "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",
- "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
- },
- "amenity/pharmacy/Pharmasave": {
- "tags": {
- "name": "Pharmasave",
- "amenity": "pharmacy"
- },
- "name": "Pharmasave",
- "icon": "pharmacy",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Shoppers Drug Mart": {
- "tags": {
- "name": "Shoppers Drug Mart",
- "amenity": "pharmacy"
- },
- "name": "Shoppers Drug Mart",
- "icon": "pharmacy",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Walgreens": {
- "tags": {
- "name": "Walgreens",
- "amenity": "pharmacy"
- },
- "name": "Walgreens",
- "icon": "pharmacy",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Rite Aid": {
- "tags": {
- "name": "Rite Aid",
- "amenity": "pharmacy"
- },
- "name": "Rite Aid",
- "icon": "pharmacy",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Apotheke": {
- "tags": {
- "name": "Apotheke",
- "amenity": "pharmacy"
- },
- "name": "Apotheke",
- "icon": "pharmacy",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Pharmaprix": {
- "tags": {
- "name": "Pharmaprix",
- "amenity": "pharmacy"
- },
- "name": "Pharmaprix",
- "icon": "pharmacy",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "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",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/CVS": {
- "tags": {
- "name": "CVS",
- "amenity": "pharmacy"
- },
- "name": "CVS",
- "icon": "pharmacy",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address",
- "opening_hours"
- ],
- "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",
- "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
- },
- "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",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Clicks": {
- "tags": {
- "name": "Clicks",
- "amenity": "pharmacy"
- },
- "name": "Clicks",
- "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
- },
- "amenity/pharmacy/マツモトキヨシ": {
- "tags": {
- "name": "マツモトキヨシ",
- "amenity": "pharmacy"
- },
- "name": "マツモトキヨシ",
- "icon": "pharmacy",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Dr. Max": {
- "tags": {
- "name": "Dr. Max",
- "amenity": "pharmacy"
- },
- "name": "Dr. Max",
- "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
- },
- "amenity/pharmacy/サンドラッグ": {
- "tags": {
- "name": "サンドラッグ",
- "amenity": "pharmacy"
- },
- "name": "サンドラッグ",
- "icon": "pharmacy",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Apteka": {
- "tags": {
- "name": "Apteka",
- "amenity": "pharmacy"
- },
- "name": "Apteka",
- "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
- },
- "amenity/pharmacy/Ригла": {
- "tags": {
- "name": "Ригла",
- "amenity": "pharmacy"
- },
- "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
- },
- "amenity/pharmacy/Kinney Drugs": {
- "tags": {
- "name": "Kinney Drugs",
- "amenity": "pharmacy"
- },
- "name": "Kinney Drugs",
- "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
- },
- "amenity/pharmacy/Ljekarna": {
- "tags": {
- "name": "Ljekarna",
- "amenity": "pharmacy"
- },
- "name": "Ljekarna",
- "icon": "pharmacy",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/SalcoBrand": {
- "tags": {
- "name": "SalcoBrand",
- "amenity": "pharmacy"
- },
- "name": "SalcoBrand",
- "icon": "pharmacy",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Аптека 36,6": {
- "tags": {
- "name": "Аптека 36,6",
- "amenity": "pharmacy"
- },
- "name": "Аптека 36,6",
- "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
- },
- "amenity/pharmacy/スギ薬局": {
- "tags": {
- "name": "スギ薬局",
- "amenity": "pharmacy"
- },
- "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
- },
- "amenity/pharmacy/Невис": {
- "tags": {
- "name": "Невис",
- "amenity": "pharmacy"
- },
- "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
- },
- "amenity/pharmacy/Eurovaistinė": {
- "tags": {
- "name": "Eurovaistinė",
- "amenity": "pharmacy"
- },
- "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
- },
- "amenity/pharmacy/аптека": {
- "tags": {
- "name": "аптека",
- "amenity": "pharmacy"
- },
- "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
- },
- "amenity/pharmacy/Farmatodo": {
- "tags": {
- "name": "Farmatodo",
- "amenity": "pharmacy"
- },
- "name": "Farmatodo",
- "icon": "pharmacy",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Duane Reade": {
- "tags": {
- "name": "Duane Reade",
- "amenity": "pharmacy"
- },
- "name": "Duane Reade",
- "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
- },
- "amenity/pharmacy/ドラッグてらしま (Drug Terashima)": {
- "tags": {
- "name": "ドラッグてらしま (Drug Terashima)",
- "amenity": "pharmacy"
- },
- "name": "ドラッグてらしま (Drug Terashima)",
- "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
- },
- "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
- },
- "amenity/pharmacy/Farmahorro": {
- "tags": {
- "name": "Farmahorro",
- "amenity": "pharmacy"
- },
- "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",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/cafe/Кафе": {
- "tags": {
- "name": "Кафе",
- "amenity": "cafe"
- },
- "name": "Кафе",
- "icon": "cafe",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "internet_access",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/cafe/Espresso House": {
- "tags": {
- "name": "Espresso House",
- "amenity": "cafe"
- },
- "name": "Espresso House",
- "icon": "cafe",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "internet_access",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/cafe/Шоколадница": {
- "tags": {
- "name": "Шоколадница",
- "amenity": "cafe"
- },
- "name": "Шоколадница",
- "icon": "cafe",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "internet_access",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/cafe/Pret A Manger": {
- "tags": {
- "name": "Pret A Manger",
- "amenity": "cafe"
- },
- "name": "Pret A Manger",
- "icon": "cafe",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "internet_access",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/cafe/Столовая": {
- "tags": {
- "name": "Столовая",
- "amenity": "cafe"
- },
- "name": "Столовая",
- "icon": "cafe",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "internet_access",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/cafe/Кофе Хауз": {
- "tags": {
- "name": "Кофе Хауз",
- "amenity": "cafe"
- },
- "name": "Кофе Хауз",
- "icon": "cafe",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "internet_access",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/cafe/Уют": {
- "tags": {
- "name": "Уют",
- "amenity": "cafe"
- },
- "name": "Уют",
- "icon": "cafe",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "internet_access",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/cafe/Шашлычная": {
- "tags": {
- "name": "Шашлычная",
- "amenity": "cafe"
- },
- "name": "Шашлычная",
- "icon": "cafe",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "internet_access",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/cafe/คาเฟ่ อเมซอน": {
- "tags": {
- "name": "คาเฟ่ อเมซอน",
- "amenity": "cafe"
- },
- "name": "คาเฟ่ อเมซอน",
- "icon": "cafe",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "internet_access",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "suggestion": true
- },
- "amenity/cafe/Traveler's Coffee": {
- "tags": {
- "name": "Traveler's Coffee",
- "amenity": "cafe"
- },
- "name": "Traveler's Coffee",
- "icon": "cafe",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "cuisine",
- "internet_access",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
- "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",
- "opening_hours",
- "smoking"
- ],
- "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",
- "smoking"
- ],
- "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/Morrisons": {
- "tags": {
- "name": "Morrisons",
- "shop": "supermarket"
- },
- "name": "Morrisons",
- "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/Sainsbury's": {
- "tags": {
- "name": "Sainsbury's",
- "shop": "supermarket"
- },
- "name": "Sainsbury's",
- "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/Coop": {
- "tags": {
- "name": "Coop",
- "shop": "supermarket"
- },
- "name": "Coop",
- "icon": "grocery",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address"
- ],
- "suggestion": true
- },
- "shop/supermarket/Tesco": {
- "tags": {
- "name": "Tesco",
- "shop": "supermarket"
- },
- "name": "Tesco",
- "icon": "grocery",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address"
- ],
- "suggestion": true
- },
- "shop/supermarket/Woolworths": {
- "tags": {
- "name": "Woolworths",
- "shop": "supermarket"
- },
- "name": "Woolworths",
- "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/Nahkauf": {
- "tags": {
- "name": "Nahkauf",
- "shop": "supermarket"
- },
- "name": "Nahkauf",
- "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/Kaufland": {
- "tags": {
- "name": "Kaufland",
- "shop": "supermarket"
- },
- "name": "Kaufland",
- "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/ALDI": {
- "tags": {
- "name": "ALDI",
- "shop": "supermarket"
- },
- "name": "ALDI",
- "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/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/NP": {
- "tags": {
- "name": "NP",
- "shop": "supermarket"
- },
- "name": "NP",
- "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/Norma": {
- "tags": {
- "name": "Norma",
- "shop": "supermarket"
- },
- "name": "Norma",
- "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/Netto": {
- "tags": {
- "name": "Netto",
- "shop": "supermarket"
- },
- "name": "Netto",
- "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/Rewe": {
- "tags": {
- "name": "Rewe",
- "shop": "supermarket"
- },
- "name": "Rewe",
- "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/Real": {
- "tags": {
- "name": "Real",
- "shop": "supermarket"
- },
- "name": "Real",
- "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/Edeka": {
- "tags": {
- "name": "Edeka",
- "shop": "supermarket"
- },
- "name": "Edeka",
- "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/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/Carrefour": {
- "tags": {
- "name": "Carrefour",
- "shop": "supermarket"
- },
- "name": "Carrefour",
- "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/Super U": {
- "tags": {
- "name": "Super U",
- "shop": "supermarket"
- },
- "name": "Super U",
- "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/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/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": "supermarket"
- },
- "name": "Volg",
- "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/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/SuperBrugsen": {
- "tags": {
- "name": "SuperBrugsen",
- "shop": "supermarket"
- },
- "name": "SuperBrugsen",
- "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/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/Unimarkt": {
- "tags": {
- "name": "Unimarkt",
- "shop": "supermarket"
- },
- "name": "Unimarkt",
- "icon": "grocery",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address"
- ],
- "suggestion": true
- },
- "shop/supermarket/Carrefour City": {
- "tags": {
- "name": "Carrefour City",
- "shop": "supermarket"
- },
- "name": "Carrefour City",
- "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/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/Combi": {
- "tags": {
- "name": "Combi",
- "shop": "supermarket"
- },
- "name": "Combi",
- "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/Konsum": {
- "tags": {
- "name": "Konsum",
- "shop": "supermarket"
- },
- "name": "Konsum",
- "icon": "grocery",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address"
- ],
- "suggestion": true
- },
- "shop/supermarket/Franprix": {
- "tags": {
- "name": "Franprix",
- "shop": "supermarket"
- },
- "name": "Franprix",
- "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/Diska": {
- "tags": {
- "name": "Diska",
- "shop": "supermarket"
- },
- "name": "Diska",
- "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/Dia": {
- "tags": {
- "name": "Dia",
- "shop": "supermarket"
- },
- "name": "Dia",
- "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/NORMA": {
- "tags": {
- "name": "NORMA",
- "shop": "supermarket"
- },
- "name": "NORMA",
- "icon": "grocery",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address"
- ],
- "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/Auchan": {
- "tags": {
- "name": "Auchan",
- "shop": "supermarket"
- },
- "name": "Auchan",
- "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/Consum": {
- "tags": {
- "name": "Consum",
- "shop": "supermarket"
- },
- "name": "Consum",
- "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/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/Pam": {
- "tags": {
- "name": "Pam",
- "shop": "supermarket"
- },
- "name": "Pam",
- "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/Despar": {
- "tags": {
- "name": "Despar",
- "shop": "supermarket"
- },
- "name": "Despar",
- "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/Maxi": {
- "tags": {
- "name": "Maxi",
- "shop": "supermarket"
- },
- "name": "Maxi",
- "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/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/Intermarché": {
- "tags": {
- "name": "Intermarché",
- "shop": "supermarket"
- },
- "name": "Intermarché",
- "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/CBA": {
- "tags": {
- "name": "CBA",
- "shop": "supermarket"
- },
- "name": "CBA",
- "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/Walmart": {
- "tags": {
- "name": "Walmart",
- "shop": "supermarket"
- },
- "name": "Walmart",
- "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/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/denn's Biomarkt": {
- "tags": {
- "name": "denn's Biomarkt",
- "shop": "supermarket"
- },
- "name": "denn's Biomarkt",
- "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/Dico": {
- "tags": {
- "name": "Dico",
- "shop": "supermarket"
- },
- "name": "Dico",
- "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/ICA Supermarket": {
- "tags": {
- "name": "ICA Supermarket",
- "shop": "supermarket"
- },
- "name": "ICA Supermarket",
- "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/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/U Express": {
- "tags": {
- "name": "U Express",
- "shop": "supermarket"
- },
- "name": "U Express",
- "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/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/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/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/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/Biedronka": {
- "tags": {
- "name": "Biedronka",
- "shop": "supermarket"
- },
- "name": "Biedronka",
- "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/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/Gadis": {
- "tags": {
- "name": "Gadis",
- "shop": "supermarket"
- },
- "name": "Gadis",
- "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/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/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/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/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/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/Лента": {
- "tags": {
- "name": "Лента",
- "shop": "supermarket"
- },
- "name": "Лента",
- "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/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/Атак": {
- "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/Extra": {
- "tags": {
- "name": "Extra",
- "shop": "supermarket"
- },
- "name": "Extra",
- "icon": "grocery",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area",
- "address"
- ],
- "suggestion": true
- },
- "shop/supermarket/Sigma": {
- "tags": {
- "name": "Sigma",
- "shop": "supermarket"
- },
- "name": "Sigma",
- "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/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/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/Мария-Ра": {
- "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": "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/Wegmans": {
- "tags": {
- "name": "Wegmans",
- "shop": "supermarket"
- },
- "name": "Wegmans",
- "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",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/electronics/Maplin": {
- "tags": {
- "name": "Maplin",
- "shop": "electronics"
- },
- "name": "Maplin",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/electronics/Best Buy": {
- "tags": {
- "name": "Best Buy",
- "shop": "electronics"
- },
- "name": "Best Buy",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/electronics/Future Shop": {
- "tags": {
- "name": "Future Shop",
- "shop": "electronics"
- },
- "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",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/electronics/Currys": {
- "tags": {
- "name": "Currys",
- "shop": "electronics"
- },
- "name": "Currys",
- "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/Euronics": {
- "tags": {
- "name": "Euronics",
- "shop": "electronics"
- },
- "name": "Euronics",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/electronics/Expert": {
- "tags": {
- "name": "Expert",
- "shop": "electronics"
- },
- "name": "Expert",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/electronics/Эльдорадо": {
- "tags": {
- "name": "Эльдорадо",
- "shop": "electronics"
- },
- "name": "Эльдорадо",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/electronics/Darty": {
- "tags": {
- "name": "Darty",
- "shop": "electronics"
- },
- "name": "Darty",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/electronics/М.Видео": {
- "tags": {
- "name": "М.Видео",
- "shop": "electronics"
- },
- "name": "М.Видео",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/electronics/ヤマダ電機": {
- "tags": {
- "name": "ヤマダ電機",
- "shop": "electronics"
- },
- "name": "ヤマダ電機",
- "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/Tesco Express": {
- "tags": {
- "name": "Tesco Express",
- "shop": "convenience"
- },
- "name": "Tesco Express",
- "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/Londis": {
- "tags": {
- "name": "Londis",
- "shop": "convenience"
- },
- "name": "Londis",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/convenience/7-Eleven": {
- "tags": {
- "name": "7-Eleven",
- "shop": "convenience"
- },
- "name": "7-Eleven",
- "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/Siwa": {
- "tags": {
- "name": "Siwa",
- "shop": "convenience"
- },
- "name": "Siwa",
- "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/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/Costcutter": {
- "tags": {
- "name": "Costcutter",
- "shop": "convenience"
- },
- "name": "Costcutter",
- "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/Circle K": {
- "tags": {
- "name": "Circle K",
- "shop": "convenience"
- },
- "name": "Circle K",
- "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/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/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/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": "ミニストップ",
- "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/Гастроном": {
- "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/Centra": {
- "tags": {
- "name": "Centra",
- "shop": "convenience"
- },
- "name": "Centra",
- "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/Wawa": {
- "tags": {
- "name": "Wawa",
- "shop": "convenience"
- },
- "name": "Wawa",
- "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/Večerka": {
- "tags": {
- "name": "Večerka",
- "shop": "convenience"
- },
- "name": "Večerka",
- "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/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/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/Kiosk": {
- "tags": {
- "name": "Kiosk",
- "shop": "convenience"
- },
- "name": "Kiosk",
- "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/7/11": {
- "tags": {
- "name": "7/11",
- "shop": "convenience"
- },
- "name": "7/11",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/convenience/Stewart's": {
- "tags": {
- "name": "Stewart's",
- "shop": "convenience"
- },
- "name": "Stewart's",
- "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/Радуга": {
- "tags": {
- "name": "Радуга",
- "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/เซเว่นอีเลฟเว่น": {
- "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/Lewiatan": {
- "tags": {
- "name": "Lewiatan",
- "shop": "convenience"
- },
- "name": "Lewiatan",
- "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/Boutique": {
- "tags": {
- "name": "Boutique",
- "shop": "convenience"
- },
- "name": "Boutique",
- "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/dm": {
- "tags": {
- "name": "dm",
- "shop": "chemist"
- },
- "name": "dm",
- "icon": "chemist",
- "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": "chemist",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/chemist/Schlecker": {
- "tags": {
- "name": "Schlecker",
- "shop": "chemist"
- },
- "name": "Schlecker",
- "icon": "chemist",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/chemist/Etos": {
- "tags": {
- "name": "Etos",
- "shop": "chemist"
- },
- "name": "Etos",
- "icon": "chemist",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/chemist/Bipa": {
- "tags": {
- "name": "Bipa",
- "shop": "chemist"
- },
- "name": "Bipa",
- "icon": "chemist",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/chemist/Rossmann": {
- "tags": {
- "name": "Rossmann",
- "shop": "chemist"
- },
- "name": "Rossmann",
- "icon": "chemist",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/chemist/DM Drogeriemarkt": {
- "tags": {
- "name": "DM Drogeriemarkt",
- "shop": "chemist"
- },
- "name": "DM Drogeriemarkt",
- "icon": "chemist",
- "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": "chemist",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/chemist/Douglas": {
- "tags": {
- "name": "Douglas",
- "shop": "chemist"
- },
- "name": "Douglas",
- "icon": "chemist",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/chemist/Kruidvat": {
- "tags": {
- "name": "Kruidvat",
- "shop": "chemist"
- },
- "name": "Kruidvat",
- "icon": "chemist",
- "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": "car",
- "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": "car",
- "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": "car",
- "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": "car",
- "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": "car",
- "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": "car",
- "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": "car",
- "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": "car",
- "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": "car",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/car_repair/Шиномонтаж": {
- "tags": {
- "name": "Шиномонтаж",
- "shop": "car_repair"
- },
- "name": "Шиномонтаж",
- "icon": "car",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/car_repair/СТО": {
- "tags": {
- "name": "СТО",
- "shop": "car_repair"
- },
- "name": "СТО",
- "icon": "car",
- "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": "car",
- "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": "car",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/car_repair/шиномонтаж": {
- "tags": {
- "name": "шиномонтаж",
- "shop": "car_repair"
- },
- "name": "шиномонтаж",
- "icon": "car",
- "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": "car",
- "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": "car",
- "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": "car",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/car_repair/Автосервис": {
- "tags": {
- "name": "Автосервис",
- "shop": "car_repair"
- },
- "name": "Автосервис",
- "icon": "car",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/car_repair/Advance Auto Parts": {
- "tags": {
- "name": "Advance Auto Parts",
- "shop": "car_repair"
- },
- "name": "Advance Auto Parts",
- "icon": "car",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/car_repair/Roady": {
- "tags": {
- "name": "Roady",
- "shop": "car_repair"
- },
- "name": "Roady",
- "icon": "car",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/furniture/IKEA": {
- "tags": {
- "name": "IKEA",
- "shop": "furniture"
- },
- "name": "IKEA",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/furniture/Jysk": {
- "tags": {
- "name": "Jysk",
- "shop": "furniture"
- },
- "name": "Jysk",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/furniture/Roller": {
- "tags": {
- "name": "Roller",
- "shop": "furniture"
- },
- "name": "Roller",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/furniture/Dänisches Bettenlager": {
- "tags": {
- "name": "Dänisches Bettenlager",
- "shop": "furniture"
- },
- "name": "Dänisches Bettenlager",
- "icon": "shop",
- "geometry": [
- "point",
- "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",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/furniture/Мебель": {
- "tags": {
- "name": "Мебель",
- "shop": "furniture"
- },
- "name": "Мебель",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/furniture/But": {
- "tags": {
- "name": "But",
- "shop": "furniture"
- },
- "name": "But",
- "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/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/Hubo": {
- "tags": {
- "name": "Hubo",
- "shop": "doityourself"
- },
- "name": "Hubo",
- "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/Gamma": {
- "tags": {
- "name": "Gamma",
- "shop": "doityourself"
- },
- "name": "Gamma",
- "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/Lowes": {
- "tags": {
- "name": "Lowes",
- "shop": "doityourself"
- },
- "name": "Lowes",
- "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/Hagebau": {
- "tags": {
- "name": "Hagebau",
- "shop": "doityourself"
- },
- "name": "Hagebau",
- "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/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/Canadian Tire": {
- "tags": {
- "name": "Canadian Tire",
- "shop": "doityourself"
- },
- "name": "Canadian Tire",
- "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/Hagebaumarkt": {
- "tags": {
- "name": "Hagebaumarkt",
- "shop": "doityourself"
- },
- "name": "Hagebaumarkt",
- "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/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/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/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/Renault": {
- "tags": {
- "name": "Renault",
- "shop": "car"
- },
- "name": "Renault",
- "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/Автозапчасти": {
- "tags": {
- "name": "Автозапчасти",
- "shop": "car"
- },
- "name": "Автозапчасти",
- "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/Peugeot": {
- "tags": {
- "name": "Peugeot",
- "shop": "car"
- },
- "name": "Peugeot",
- "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/Burton": {
- "tags": {
- "name": "Burton",
- "shop": "clothes"
- },
- "name": "Burton",
- "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/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/Cecil": {
- "tags": {
- "name": "Cecil",
- "shop": "clothes"
- },
- "name": "Cecil",
- "icon": "clothing-store",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/clothes/Dress Barn": {
- "tags": {
- "name": "Dress Barn",
- "shop": "clothes"
- },
- "name": "Dress Barn",
- "icon": "clothing-store",
- "geometry": [
- "point",
- "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/Jeans Fritz": {
- "tags": {
- "name": "Jeans Fritz",
- "shop": "clothes"
- },
- "name": "Jeans Fritz",
- "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/Second Hand": {
- "tags": {
- "name": "Second Hand",
- "shop": "clothes"
- },
- "name": "Second Hand",
- "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/Marshalls": {
- "tags": {
- "name": "Marshalls",
- "shop": "clothes"
- },
- "name": "Marshalls",
- "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/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/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/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/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/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/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/Живое пиво": {
- "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/Banette": {
- "tags": {
- "name": "Banette",
- "shop": "bakery"
- },
- "name": "Banette",
- "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/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/bakery/Пекарня": {
- "tags": {
- "name": "Пекарня",
- "shop": "bakery"
- },
- "name": "Пекарня",
- "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/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/Family Dollar": {
- "tags": {
- "name": "Family Dollar",
- "shop": "variety_store"
- },
- "name": "Family Dollar",
- "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/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/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/Deichmann": {
- "tags": {
- "name": "Deichmann",
- "shop": "shoes"
- },
- "name": "Deichmann",
- "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/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/Geox": {
- "tags": {
- "name": "Geox",
- "shop": "shoes"
- },
- "name": "Geox",
- "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/Shoe Zone": {
- "tags": {
- "name": "Shoe Zone",
- "shop": "shoes"
- },
- "name": "Shoe Zone",
- "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/shoes/ЦентрОбувь": {
- "tags": {
- "name": "ЦентрОбувь",
- "shop": "shoes"
- },
- "name": "ЦентрОбувь",
- "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/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/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",
- "shop": "jewelry"
- },
- "name": "Bijou Brigitte",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/jewelry/Christ": {
- "tags": {
- "name": "Christ",
- "shop": "jewelry"
- },
- "name": "Christ",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/jewelry/Swarovski": {
- "tags": {
- "name": "Swarovski",
- "shop": "jewelry"
- },
- "name": "Swarovski",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/optician/Fielmann": {
- "tags": {
- "name": "Fielmann",
- "shop": "optician"
- },
- "name": "Fielmann",
- "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/Vision Express": {
- "tags": {
- "name": "Vision Express",
- "shop": "optician"
- },
- "name": "Vision Express",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/optician/Оптика": {
- "tags": {
- "name": "Оптика",
- "shop": "optician"
- },
- "name": "Оптика",
- "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/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/Specsavers": {
- "tags": {
- "name": "Specsavers",
- "shop": "optician"
- },
- "name": "Specsavers",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/optician/Krys": {
- "tags": {
- "name": "Krys",
- "shop": "optician"
- },
- "name": "Krys",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/optician/Atol": {
- "tags": {
- "name": "Atol",
- "shop": "optician"
- },
- "name": "Atol",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/video/Blockbuster": {
- "tags": {
- "name": "Blockbuster",
- "shop": "video"
- },
- "name": "Blockbuster",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/video/World of Video": {
- "tags": {
- "name": "World of Video",
- "shop": "video"
- },
- "name": "World of Video",
- "icon": "shop",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Билайн": {
- "tags": {
- "name": "Билайн",
- "shop": "mobile_phone"
- },
- "name": "Билайн",
- "icon": "mobilephone",
- "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": "mobilephone",
- "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": "mobilephone",
- "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": "mobilephone",
- "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": "mobilephone",
- "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": "mobilephone",
- "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": "mobilephone",
- "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": "mobilephone",
- "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": "mobilephone",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/МТС": {
- "tags": {
- "name": "МТС",
- "shop": "mobile_phone"
- },
- "name": "МТС",
- "icon": "mobilephone",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Евросеть": {
- "tags": {
- "name": "Евросеть",
- "shop": "mobile_phone"
- },
- "name": "Евросеть",
- "icon": "mobilephone",
- "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": "mobilephone",
- "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": "mobilephone",
- "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": "mobilephone",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Связной": {
- "tags": {
- "name": "Связной",
- "shop": "mobile_phone"
- },
- "name": "Связной",
- "icon": "mobilephone",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Мегафон": {
- "tags": {
- "name": "Мегафон",
- "shop": "mobile_phone"
- },
- "name": "Мегафон",
- "icon": "mobilephone",
- "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": "mobilephone",
- "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": "mobilephone",
- "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": "mobilephone",
- "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": "mobilephone",
- "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": "mobilephone",
- "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": "hairdresser",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Supercuts": {
- "tags": {
- "name": "Supercuts",
- "shop": "hairdresser"
- },
- "name": "Supercuts",
- "icon": "hairdresser",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Hairkiller": {
- "tags": {
- "name": "Hairkiller",
- "shop": "hairdresser"
- },
- "name": "Hairkiller",
- "icon": "hairdresser",
- "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": "hairdresser",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Парикмахерская": {
- "tags": {
- "name": "Парикмахерская",
- "shop": "hairdresser"
- },
- "name": "Парикмахерская",
- "icon": "hairdresser",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Стиль": {
- "tags": {
- "name": "Стиль",
- "shop": "hairdresser"
- },
- "name": "Стиль",
- "icon": "hairdresser",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Fryzjer": {
- "tags": {
- "name": "Fryzjer",
- "shop": "hairdresser"
- },
- "name": "Fryzjer",
- "icon": "hairdresser",
- "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": "hairdresser",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Салон красоты": {
- "tags": {
- "name": "Салон красоты",
- "shop": "hairdresser"
- },
- "name": "Салон красоты",
- "icon": "hairdresser",
- "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/hardware/Хозтовары": {
- "tags": {
- "name": "Хозтовары",
- "shop": "hardware"
- },
- "name": "Хозтовары",
- "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": "scooter",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- }
- },
- "defaults": {
- "area": [
- "category-landuse",
- "category-building",
- "category-water-area",
- "leisure/park",
- "amenity/hospital",
- "amenity/place_of_worship",
- "amenity/cafe",
- "amenity/restaurant",
- "area"
- ],
- "line": [
- "category-road",
- "category-rail",
- "category-path",
- "category-water-line",
- "power/line",
- "line"
- ],
- "point": [
- "leisure/park",
- "amenity/hospital",
- "amenity/place_of_worship",
- "amenity/cafe",
- "amenity/restaurant",
- "amenity/bar",
- "amenity/bank",
- "shop/supermarket",
- "point"
- ],
- "vertex": [
- "highway/crosswalk",
- "railway/level_crossing",
- "highway/traffic_signals",
- "highway/turning_circle",
- "highway/mini_roundabout",
- "highway/motorway_junction",
- "vertex"
- ],
- "relation": [
- "category-route",
- "category-restriction",
- "type/boundary",
- "type/multipolygon",
- "relation"
- ]
- },
- "categories": {
- "category-building": {
- "geometry": "area",
- "name": "Building",
- "icon": "building",
- "members": [
- "building/house",
- "building/apartments",
- "building/commercial",
- "building/industrial",
- "building/residential",
- "building"
- ]
- },
- "category-golf": {
- "geometry": "area",
- "name": "Golf",
- "icon": "golf",
- "members": [
- "golf/fairway",
- "golf/green",
- "golf/lateral_water_hazard",
- "golf/rough",
- "golf/bunker",
- "golf/tee",
- "golf/water_hazard"
- ]
- },
- "category-landuse": {
- "geometry": "area",
- "name": "Land Use",
- "icon": "land-use",
- "members": [
- "landuse/residential",
- "landuse/industrial",
- "landuse/commercial",
- "landuse/retail",
- "landuse/farm",
- "landuse/farmyard",
- "landuse/forest",
- "landuse/meadow",
- "landuse/cemetery",
- "landuse/military"
- ]
- },
- "category-path": {
- "geometry": "line",
- "name": "Path",
- "icon": "category-path",
- "members": [
- "highway/footway",
- "highway/cycleway",
- "highway/bridleway",
- "highway/path",
- "highway/steps"
- ]
- },
- "category-rail": {
- "geometry": "line",
- "name": "Rail",
- "icon": "category-rail",
- "members": [
- "railway/rail",
- "railway/subway",
- "railway/tram",
- "railway/monorail",
- "railway/disused",
- "railway/abandoned"
- ]
- },
- "category-restriction": {
- "geometry": "relation",
- "name": "Restriction",
- "icon": "restriction",
- "members": [
- "type/restriction/no_left_turn",
- "type/restriction/no_right_turn",
- "type/restriction/no_straight_on",
- "type/restriction/no_u_turn",
- "type/restriction/only_left_turn",
- "type/restriction/only_right_turn",
- "type/restriction/only_straight_on",
- "type/restriction"
- ]
- },
- "category-road": {
- "geometry": "line",
- "name": "Road",
- "icon": "category-roads",
- "members": [
- "highway/residential",
- "highway/motorway",
- "highway/trunk",
- "highway/primary",
- "highway/secondary",
- "highway/tertiary",
- "highway/service",
- "highway/motorway_link",
- "highway/trunk_link",
- "highway/primary_link",
- "highway/secondary_link",
- "highway/tertiary_link",
- "highway/unclassified",
- "highway/track",
- "highway/road"
- ]
- },
- "category-route": {
- "geometry": "relation",
- "name": "Route",
- "icon": "route",
- "members": [
- "type/route/road",
- "type/route/bicycle",
- "type/route/foot",
- "type/route/hiking",
- "type/route/bus",
- "type/route/train",
- "type/route/tram",
- "type/route/ferry",
- "type/route/power",
- "type/route/pipeline",
- "type/route/detour",
- "type/route_master",
- "type/route"
- ]
- },
- "category-water-area": {
- "geometry": "area",
- "name": "Water",
- "icon": "water",
- "members": [
- "natural/water/lake",
- "natural/water/pond",
- "natural/water/reservoir",
- "natural/water"
- ]
- },
- "category-water-line": {
- "geometry": "line",
- "name": "Water",
- "icon": "category-water",
- "members": [
- "waterway/river",
- "waterway/stream",
- "waterway/canal",
- "waterway/ditch",
- "waterway/drain"
- ]
- }
- },
- "fields": {
- "access": {
- "keys": [
- "access",
- "foot",
- "motor_vehicle",
- "bicycle",
- "horse"
- ],
- "reference": {
- "key": "access"
- },
- "type": "access",
- "label": "Access",
- "placeholder": "Unknown",
- "strings": {
- "types": {
- "access": "General",
- "foot": "Foot",
- "motor_vehicle": "Motor Vehicles",
- "bicycle": "Bicycles",
- "horse": "Horses"
- },
- "options": {
- "yes": {
- "title": "Allowed",
- "description": "Access permitted by law; a right of way"
- },
- "no": {
- "title": "Prohibited",
- "description": "Access not permitted to the general public"
- },
- "permissive": {
- "title": "Permissive",
- "description": "Access permitted until such time as the owner revokes the permission"
- },
- "private": {
- "title": "Private",
- "description": "Access permitted only with permission of the owner on an individual basis"
- },
- "designated": {
- "title": "Designated",
- "description": "Access permitted according to signs or specific local laws"
- },
- "destination": {
- "title": "Destination",
- "description": "Access permitted only to reach a destination"
- }
- }
- }
- },
- "access_simple": {
- "key": "access",
- "type": "combo",
- "label": "Access",
- "placeholder": "yes",
- "options": [
- "permissive",
- "private",
- "customers",
- "no"
- ]
- },
- "access_toilets": {
- "key": "access",
- "type": "combo",
- "label": "Access",
- "options": [
- "public",
- "permissive",
- "private",
- "customers"
- ]
- },
- "address": {
- "type": "address",
- "keys": [
- "addr:housename",
- "addr:housenumber",
- "addr:street",
- "addr:city",
- "addr:postcode"
- ],
- "reference": {
- "key": "addr"
- },
- "icon": "address",
- "universal": true,
- "label": "Address",
- "strings": {
- "placeholders": {
- "housename": "Housename",
- "housenumber": "123",
- "street": "Street",
- "city": "City",
- "postcode": "Postcode",
- "place": "Place",
- "hamlet": "Hamlet",
- "suburb": "Suburb",
- "subdistrict": "Subdistrict",
- "district": "District",
- "province": "Province",
- "state": "State",
- "country": "Country"
- }
- }
- },
- "admin_level": {
- "key": "admin_level",
- "type": "number",
- "label": "Admin Level"
- },
- "aerialway": {
- "key": "aerialway",
- "type": "typeCombo",
- "label": "Type"
- },
- "aerialway/access": {
- "key": "aerialway:access",
- "type": "combo",
- "label": "Access",
- "strings": {
- "options": {
- "entry": "Entry",
- "exit": "Exit",
- "both": "Both"
- }
- }
- },
- "aerialway/bubble": {
- "key": "aerialway:bubble",
- "type": "check",
- "label": "Bubble"
- },
- "aerialway/capacity": {
- "key": "aerialway:capacity",
- "type": "number",
- "label": "Capacity (per hour)",
- "placeholder": "500, 2500, 5000..."
- },
- "aerialway/duration": {
- "key": "aerialway:duration",
- "type": "number",
- "label": "Duration (minutes)",
- "placeholder": "1, 2, 3..."
- },
- "aerialway/heating": {
- "key": "aerialway:heating",
- "type": "check",
- "label": "Heated"
- },
- "aerialway/occupancy": {
- "key": "aerialway:occupancy",
- "type": "number",
- "label": "Occupancy",
- "placeholder": "2, 4, 8..."
- },
- "aerialway/summer/access": {
- "key": "aerialway:summer:access",
- "type": "combo",
- "label": "Access (summer)",
- "strings": {
- "options": {
- "entry": "Entry",
- "exit": "Exit",
- "both": "Both"
- }
- }
- },
- "aeroway": {
- "key": "aeroway",
- "type": "typeCombo",
- "label": "Type"
- },
- "amenity": {
- "key": "amenity",
- "type": "typeCombo",
- "label": "Type"
- },
- "artist": {
- "key": "artist_name",
- "type": "text",
- "label": "Artist"
- },
- "artwork_type": {
- "key": "artwork_type",
- "type": "combo",
- "label": "Type"
- },
- "atm": {
- "key": "atm",
- "type": "check",
- "label": "ATM"
- },
- "backrest": {
- "key": "backrest",
- "type": "check",
- "label": "Backrest"
- },
- "barrier": {
- "key": "barrier",
- "type": "typeCombo",
- "label": "Type"
- },
- "bicycle_parking": {
- "key": "bicycle_parking",
- "type": "combo",
- "label": "Type"
- },
- "boundary": {
- "key": "boundary",
- "type": "combo",
- "label": "Type"
- },
- "building": {
- "key": "building",
- "type": "typeCombo",
- "label": "Building"
- },
- "building_area": {
- "key": "building",
- "type": "defaultcheck",
- "default": "yes",
- "geometry": "area",
- "label": "Building"
- },
- "capacity": {
- "key": "capacity",
- "type": "number",
- "label": "Capacity",
- "placeholder": "50, 100, 200..."
- },
- "cardinal_direction": {
- "key": "direction",
- "type": "combo",
- "label": "Direction",
- "strings": {
- "options": {
- "N": "North",
- "E": "East",
- "S": "South",
- "W": "West",
- "NE": "Northeast",
- "SE": "Southeast",
- "SW": "Southwest",
- "NW": "Northwest",
- "NNE": "North-northeast",
- "ENE": "East-northeast",
- "ESE": "East-southeast",
- "SSE": "South-southeast",
- "SSW": "South-southwest",
- "WSW": "West-southwest",
- "WNW": "West-northwest",
- "NNW": "North-northwest"
- }
- }
- },
- "clock_direction": {
- "key": "direction",
- "type": "combo",
- "label": "Direction",
- "strings": {
- "options": {
- "clockwise": "Clockwise",
- "anticlockwise": "Counterclockwise"
- }
- }
- },
- "collection_times": {
- "key": "collection_times",
- "type": "text",
- "label": "Collection Times"
- },
- "construction": {
- "key": "construction",
- "type": "combo",
- "label": "Type"
- },
- "country": {
- "key": "country",
- "type": "combo",
- "label": "Country"
- },
- "covered": {
- "key": "covered",
- "type": "check",
- "label": "Covered"
- },
- "crop": {
- "key": "crop",
- "type": "combo",
- "label": "Crop"
- },
- "crossing": {
- "key": "crossing",
- "type": "combo",
- "label": "Type"
- },
- "cuisine": {
- "key": "cuisine",
- "type": "combo",
- "label": "Cuisine"
- },
- "denomination": {
- "key": "denomination",
- "type": "combo",
- "label": "Denomination"
- },
- "denotation": {
- "key": "denotation",
- "type": "combo",
- "label": "Denotation"
- },
- "description": {
- "key": "description",
- "type": "textarea",
- "label": "Description"
- },
- "electrified": {
- "key": "electrified",
- "type": "combo",
- "label": "Electrification",
- "placeholder": "Contact Line, Electrified Rail...",
- "strings": {
- "options": {
- "contact_line": "Contact Line",
- "rail": "Electrified Rail",
- "yes": "Yes (unspecified)",
- "no": "No"
- }
- }
- },
- "elevation": {
- "key": "ele",
- "type": "number",
- "icon": "elevation",
- "universal": true,
- "label": "Elevation"
- },
- "emergency": {
- "key": "emergency",
- "type": "check",
- "label": "Emergency"
- },
- "entrance": {
- "key": "entrance",
- "type": "typeCombo",
- "label": "Type"
- },
- "except": {
- "key": "except",
- "type": "combo",
- "label": "Exceptions"
- },
- "fax": {
- "key": "fax",
- "type": "tel",
- "label": "Fax",
- "placeholder": "+31 42 123 4567"
- },
- "fee": {
- "key": "fee",
- "type": "check",
- "label": "Fee"
- },
- "fire_hydrant/type": {
- "key": "fire_hydrant:type",
- "type": "combo",
- "label": "Type",
- "strings": {
- "options": {
- "pillar": "Pillar/Aboveground",
- "underground": "Underground",
- "wall": "Wall",
- "pond": "Pond"
- }
- }
- },
- "fixme": {
- "key": "fixme",
- "type": "textarea",
- "label": "Fix Me"
- },
- "fuel": {
- "key": "fuel",
- "type": "combo",
- "label": "Fuel"
- },
- "fuel/biodiesel": {
- "key": "fuel:biodiesel",
- "type": "check",
- "label": "Sells Biodiesel"
- },
- "fuel/diesel": {
- "key": "fuel:diesel",
- "type": "check",
- "label": "Sells Diesel"
- },
- "fuel/e10": {
- "key": "fuel:e10",
- "type": "check",
- "label": "Sells E10"
- },
- "fuel/e85": {
- "key": "fuel:e85",
- "type": "check",
- "label": "Sells E85"
- },
- "fuel/lpg": {
- "key": "fuel:lpg",
- "type": "check",
- "label": "Sells Propane"
- },
- "fuel/octane_100": {
- "key": "fuel:octane_100",
- "type": "check",
- "label": "Sells Racing Gasoline"
- },
- "fuel/octane_91": {
- "key": "fuel:octane_91",
- "type": "check",
- "label": "Sells Regular Gasoline"
- },
- "fuel/octane_95": {
- "key": "fuel:octane_95",
- "type": "check",
- "label": "Sells Midgrade Gasoline"
- },
- "fuel/octane_98": {
- "key": "fuel:octane_98",
- "type": "check",
- "label": "Sells Premium Gasoline"
- },
- "gauge": {
- "key": "gauge",
- "type": "combo",
- "label": "Gauge"
- },
- "generator/method": {
- "key": "generator:method",
- "type": "combo",
- "label": "Method"
- },
- "generator/source": {
- "key": "generator:source",
- "type": "combo",
- "label": "Source"
- },
- "generator/type": {
- "key": "generator:type",
- "type": "combo",
- "label": "Type"
- },
- "golf_hole": {
- "key": "ref",
- "type": "text",
- "label": "Reference",
- "placeholder": "Hole number (1-18)"
- },
- "handicap": {
- "key": "handicap",
- "type": "number",
- "label": "Handicap",
- "placeholder": "1-18"
- },
- "highway": {
- "key": "highway",
- "type": "typeCombo",
- "label": "Type"
- },
- "historic": {
- "key": "historic",
- "type": "typeCombo",
- "label": "Type"
- },
- "hoops": {
- "key": "hoops",
- "type": "number",
- "label": "Hoops",
- "placeholder": "1, 2, 4..."
- },
- "iata": {
- "key": "iata",
- "type": "text",
- "label": "IATA"
- },
- "icao": {
- "key": "icao",
- "type": "text",
- "label": "ICAO"
- },
- "incline": {
- "key": "incline",
- "type": "combo",
- "label": "Incline"
- },
- "information": {
- "key": "information",
- "type": "typeCombo",
- "label": "Type"
- },
- "internet_access": {
- "key": "internet_access",
- "type": "combo",
- "label": "Internet Access",
- "strings": {
- "options": {
- "yes": "Yes",
- "no": "No",
- "wlan": "Wifi",
- "wired": "Wired",
- "terminal": "Terminal"
- }
- }
- },
- "lamp_type": {
- "key": "lamp_type",
- "type": "combo",
- "label": "Type"
- },
- "landuse": {
- "key": "landuse",
- "type": "typeCombo",
- "label": "Type"
- },
- "lanes": {
- "key": "lanes",
- "type": "number",
- "label": "Lanes",
- "placeholder": "1, 2, 3..."
- },
- "layer": {
- "key": "layer",
- "type": "combo",
- "label": "Layer"
- },
- "leisure": {
- "key": "leisure",
- "type": "typeCombo",
- "label": "Type"
- },
- "length": {
- "key": "length",
- "type": "number",
- "label": "Length (Meters)"
- },
- "levels": {
- "key": "building:levels",
- "type": "number",
- "label": "Levels",
- "placeholder": "2, 4, 6..."
- },
- "lit": {
- "key": "lit",
- "type": "check",
- "label": "Lit"
- },
- "location": {
- "key": "location",
- "type": "combo",
- "label": "Location"
- },
- "man_made": {
- "key": "man_made",
- "type": "typeCombo",
- "label": "Type"
- },
- "maxspeed": {
- "key": "maxspeed",
- "type": "maxspeed",
- "label": "Speed Limit",
- "placeholder": "40, 50, 60..."
- },
- "mtb/scale": {
- "key": "mtb:scale",
- "type": "combo",
- "label": "Mountain Biking Difficulty",
- "placeholder": "0, 1, 2, 3...",
- "strings": {
- "options": {
- "0": "0: Solid gravel/packed earth, no obstacles, wide curves",
- "1": "1: Some loose surface, small obstacles, wide curves",
- "2": "2: Much loose surface, large obstacles, easy hairpins",
- "3": "3: Slippery surface, large obstacles, tight hairpins",
- "4": "4: Loose surface or boulders, dangerous hairpins",
- "5": "5: Maximum difficulty, boulder fields, landslides",
- "6": "6: Not rideable except by the very best mountain bikers"
- }
- }
- },
- "mtb/scale/imba": {
- "key": "mtb:scale:imba",
- "type": "combo",
- "label": "IMBA Trail Difficulty",
- "placeholder": "Easy, Medium, Difficult...",
- "strings": {
- "options": {
- "0": "Easiest (white circle)",
- "1": "Easy (green circle)",
- "2": "Medium (blue square)",
- "3": "Difficult (black diamond)",
- "4": "Extremely Difficult (double black diamond)"
- }
- }
- },
- "mtb/scale/uphill": {
- "key": "mtb:scale:uphill",
- "type": "combo",
- "label": "Mountain Biking Uphill Difficulty",
- "placeholder": "0, 1, 2, 3...",
- "strings": {
- "options": {
- "0": "0: Avg. incline <10%, gravel/packed earth, no obstacles",
- "1": "1: Avg. incline <15%, gravel/packed earth, few small objects",
- "2": "2: Avg. incline <20%, stable surface, fistsize rocks/roots",
- "3": "3: Avg. incline <25%, variable surface, fistsize rocks/branches",
- "4": "4: Avg. incline <30%, poor condition, big rocks/branches",
- "5": "5: Very steep, bike generally needs to be pushed or carried"
- }
- }
- },
- "name": {
- "key": "name",
- "type": "localized",
- "label": "Name",
- "placeholder": "Common name (if any)"
- },
- "natural": {
- "key": "natural",
- "type": "typeCombo",
- "label": "Natural"
- },
- "network": {
- "key": "network",
- "type": "text",
- "label": "Network"
- },
- "note": {
- "key": "note",
- "type": "textarea",
- "universal": true,
- "icon": "note",
- "label": "Note"
- },
- "office": {
- "key": "office",
- "type": "typeCombo",
- "label": "Type"
- },
- "oneway": {
- "key": "oneway",
- "type": "check",
- "label": "One Way",
- "strings": {
- "options": {
- "undefined": "Assumed to be No",
- "yes": "Yes",
- "no": "No"
- }
- }
- },
- "oneway_yes": {
- "key": "oneway",
- "type": "check",
- "label": "One Way",
- "strings": {
- "options": {
- "undefined": "Assumed to be Yes",
- "yes": "Yes",
- "no": "No"
- }
- }
- },
- "opening_hours": {
- "key": "opening_hours",
- "type": "text",
- "label": "Hours"
- },
- "operator": {
- "key": "operator",
- "type": "text",
- "label": "Operator"
- },
- "par": {
- "key": "par",
- "type": "number",
- "label": "Par",
- "placeholder": "3, 4, 5..."
- },
- "park_ride": {
- "key": "park_ride",
- "type": "check",
- "label": "Park and Ride"
- },
- "parking": {
- "key": "parking",
- "type": "combo",
- "label": "Type",
- "strings": {
- "options": {
- "surface": "Surface",
- "multi-storey": "Multilevel",
- "underground": "Underground",
- "sheds": "Sheds",
- "carports": "Carports",
- "garage_boxes": "Garage Boxes",
- "lane": "Roadside Lane"
- }
- }
- },
- "phone": {
- "key": "phone",
- "type": "tel",
- "icon": "telephone",
- "universal": true,
- "label": "Phone",
- "placeholder": "+31 42 123 4567"
- },
- "piste/difficulty": {
- "key": "piste:difficulty",
- "type": "combo",
- "label": "Difficulty",
- "placeholder": "Easy, Intermediate, Advanced...",
- "strings": {
- "options": {
- "novice": "Novice (instructional)",
- "easy": "Easy (green circle)",
- "intermediate": "Intermediate (blue square)",
- "advanced": "Advanced (black diamond)",
- "expert": "Expert (double black diamond)",
- "freeride": "Freeride (off-piste)",
- "extreme": "Extreme (climing equipment required)"
- }
- }
- },
- "piste/grooming": {
- "key": "piste:grooming",
- "type": "combo",
- "label": "Grooming",
- "strings": {
- "options": {
- "classic": "Classic",
- "mogul": "Mogul",
- "backcountry": "Backcountry",
- "classic+skating": "Classic and Skating",
- "scooter": "Scooter/Snowmobile",
- "skating": "Skating"
- }
- }
- },
- "piste/type": {
- "key": "piste:type",
- "type": "typeCombo",
- "label": "Type",
- "strings": {
- "options": {
- "downhill": "Downhill",
- "nordic": "Nordic",
- "skitour": "Skitour",
- "sled": "Sled",
- "hike": "Hike",
- "sleigh": "Sleigh",
- "ice_skate": "Ice Skate",
- "snow_park": "Snow Park",
- "playground": "Playground"
- }
- }
- },
- "place": {
- "key": "place",
- "type": "typeCombo",
- "label": "Type"
- },
- "population": {
- "key": "population",
- "type": "text",
- "label": "Population"
- },
- "power": {
- "key": "power",
- "type": "typeCombo",
- "label": "Type"
- },
- "railway": {
- "key": "railway",
- "type": "typeCombo",
- "label": "Type"
- },
- "recycling/cans": {
- "key": "recycling:cans",
- "type": "check",
- "label": "Accepts Cans"
- },
- "recycling/clothes": {
- "key": "recycling:clothes",
- "type": "check",
- "label": "Accepts Clothes"
- },
- "recycling/glass": {
- "key": "recycling:glass",
- "type": "check",
- "label": "Accepts Glass"
- },
- "recycling/paper": {
- "key": "recycling:paper",
- "type": "check",
- "label": "Accepts Paper"
- },
- "ref": {
- "key": "ref",
- "type": "text",
- "label": "Reference"
- },
- "relation": {
- "key": "type",
- "type": "combo",
- "label": "Type"
- },
- "religion": {
- "key": "religion",
- "type": "combo",
- "label": "Religion"
- },
- "restriction": {
- "key": "restriction",
- "type": "combo",
- "label": "Type"
- },
- "restrictions": {
- "type": "restrictions",
- "geometry": "vertex",
- "icon": "restrictions",
- "reference": {
- "rtype": "restriction"
- },
- "label": "Turn Restrictions"
- },
- "route": {
- "key": "route",
- "type": "combo",
- "label": "Type"
- },
- "route_master": {
- "key": "route_master",
- "type": "combo",
- "label": "Type"
- },
- "sac_scale": {
- "key": "sac_scale",
- "type": "combo",
- "label": "Hiking Difficulty",
- "placeholder": "Mountain Hiking, Alpine Hiking...",
- "strings": {
- "options": {
- "hiking": "T1: Hiking",
- "mountain_hiking": "T2: Mountain Hiking",
- "demanding_mountain_hiking": "T3: Demanding Mountain Hiking",
- "alpine_hiking": "T4: Alpine Hiking",
- "demanding_alpine_hiking": "T5: Demanding Alpine Hiking",
- "difficult_alpine_hiking": "T6: Difficult Alpine Hiking"
- }
- }
- },
- "seasonal": {
- "key": "seasonal",
- "type": "check",
- "label": "Seasonal"
- },
- "service": {
- "key": "service",
- "type": "combo",
- "label": "Type",
- "options": [
- "parking_aisle",
- "driveway",
- "alley",
- "emergency_access",
- "drive-through"
- ]
- },
- "shelter": {
- "key": "shelter",
- "type": "check",
- "label": "Shelter"
- },
- "shelter_type": {
- "key": "shelter_type",
- "type": "combo",
- "label": "Type"
- },
- "shop": {
- "key": "shop",
- "type": "typeCombo",
- "label": "Type"
- },
- "sloped_curb": {
- "key": "sloped_curb",
- "type": "combo",
- "label": "Sloped Curb"
- },
- "smoking": {
- "key": "smoking",
- "type": "combo",
- "label": "Smoking",
- "placeholder": "No, Separated, Yes...",
- "strings": {
- "options": {
- "no": "No smoking anywhere",
- "separated": "In smoking areas, not physically isolated",
- "isolated": "In smoking areas, physically isolated",
- "outside": "Allowed outside",
- "yes": "Allowed everywhere",
- "dedicated": "Dedicated to smokers (e.g. smokers' club)"
- }
- }
- },
- "smoothness": {
- "key": "smoothness",
- "type": "combo",
- "label": "Smoothness",
- "placeholder": "Thin Rollers, Wheels, Off-Road...",
- "strings": {
- "options": {
- "excellent": "Thin Rollers: rollerblade, skateboard",
- "good": "Thin Wheels: racing bike",
- "intermediate": "Wheels: city bike, wheelchair, scooter",
- "bad": "Robust Wheels: trekking bike, car, rickshaw",
- "very_bad": "High Clearance: light duty off-road vehicle",
- "horrible": "Off-Road: heavy duty off-road vehicle",
- "very_horrible": "Specialized off-road: tractor, ATV",
- "impassible": "Impassible / No wheeled vehicle"
- }
- }
- },
- "social_facility_for": {
- "key": "social_facility:for",
- "type": "radio",
- "label": "People served",
- "placeholder": "Homeless, Disabled, Child, etc",
- "options": [
- "abused",
- "child",
- "disabled",
- "diseased",
- "drug_addicted",
- "homeless",
- "juvenile",
- "mental_health",
- "migrant",
- "orphan",
- "senior",
- "underprivileged",
- "unemployed",
- "victim"
- ]
- },
- "source": {
- "key": "source",
- "type": "text",
- "icon": "source",
- "universal": true,
- "label": "Source"
- },
- "sport": {
- "key": "sport",
- "type": "combo",
- "label": "Sport"
- },
- "sport_ice": {
- "key": "sport",
- "type": "combo",
- "label": "Sport",
- "options": [
- "skating",
- "hockey",
- "multi",
- "curling",
- "ice_stock"
- ]
- },
- "structure": {
- "type": "radio",
- "keys": [
- "bridge",
- "tunnel",
- "embankment",
- "cutting",
- "ford"
- ],
- "label": "Structure",
- "placeholder": "Unknown",
- "strings": {
- "options": {
- "bridge": "Bridge",
- "tunnel": "Tunnel",
- "embankment": "Embankment",
- "cutting": "Cutting",
- "ford": "Ford"
- }
- }
- },
- "studio_type": {
- "key": "type",
- "type": "combo",
- "label": "Type",
- "options": [
- "audio",
- "video"
- ]
- },
- "supervised": {
- "key": "supervised",
- "type": "check",
- "label": "Supervised"
- },
- "surface": {
- "key": "surface",
- "type": "combo",
- "label": "Surface"
- },
- "tactile_paving": {
- "key": "tactile_paving",
- "type": "check",
- "label": "Tactile Paving"
- },
- "toilets/disposal": {
- "key": "toilets:disposal",
- "type": "combo",
- "label": "Disposal",
- "strings": {
- "options": {
- "flush": "Flush",
- "pitlatrine": "Pit/Latrine",
- "chemical": "Chemical",
- "bucket": "Bucket"
- }
- }
- },
- "tourism": {
- "key": "tourism",
- "type": "typeCombo",
- "label": "Type"
- },
- "towertype": {
- "key": "tower:type",
- "type": "combo",
- "label": "Tower type"
- },
- "tracktype": {
- "key": "tracktype",
- "type": "combo",
- "label": "Track Type",
- "placeholder": "Solid, Mostly Solid, Soft...",
- "strings": {
- "options": {
- "grade1": "Solid: paved or heavily compacted hardcore surface",
- "grade2": "Mostly Solid: gravel/rock with some soft material mixed in",
- "grade3": "Even mixture of hard and soft materials",
- "grade4": "Mostly Soft: soil/sand/grass with some hard material mixed in",
- "grade5": "Soft: soil/sand/grass"
- }
- }
- },
- "trail_visibility": {
- "key": "trail_visibility",
- "type": "combo",
- "label": "Trail Visibility",
- "placeholder": "Excellent, Good, Bad...",
- "strings": {
- "options": {
- "excellent": "Excellent: unambiguous path or markers everywhere",
- "good": "Good: markers visible, sometimes require searching",
- "intermediate": "Intermediate: few markers, path mostly visible",
- "bad": "Bad: no markers, path sometimes invisible/pathless",
- "horrible": "Horrible: often pathless, some orientation skills required",
- "no": "No: pathless, excellent orientation skills required"
- }
- }
- },
- "tree_type": {
- "key": "type",
- "type": "combo",
- "label": "Type",
- "options": [
- "broad_leaved",
- "conifer",
- "palm"
- ]
- },
- "trees": {
- "key": "trees",
- "type": "combo",
- "label": "Trees"
- },
- "tunnel": {
- "key": "tunnel",
- "type": "combo",
- "label": "Tunnel"
- },
- "vending": {
- "key": "vending",
- "type": "combo",
- "label": "Type of Goods"
- },
- "water": {
- "key": "water",
- "type": "combo",
- "label": "Type"
- },
- "waterway": {
- "key": "waterway",
- "type": "typeCombo",
- "label": "Type"
- },
- "website": {
- "key": "website",
- "type": "url",
- "icon": "website",
- "placeholder": "http://example.com/",
- "universal": true,
- "label": "Website"
- },
- "wetland": {
- "key": "wetland",
- "type": "combo",
- "label": "Type"
- },
- "wheelchair": {
- "key": "wheelchair",
- "type": "radio",
- "options": [
- "yes",
- "limited",
- "no"
- ],
- "icon": "wheelchair",
- "universal": true,
- "label": "Wheelchair Access"
- },
- "width": {
- "key": "width",
- "type": "number",
- "label": "Width (Meters)"
- },
- "wikipedia": {
- "key": "wikipedia",
- "type": "wikipedia",
- "icon": "wikipedia",
- "universal": true,
- "label": "Wikipedia"
- },
- "wood": {
- "key": "wood",
- "type": "combo",
- "label": "Type"
- }
- }
- },
+ "wikipedia": [
+ [
+ "English",
+ "English",
+ "en"
+ ],
+ [
+ "German",
+ "Deutsch",
+ "de"
+ ],
+ [
+ "Dutch",
+ "Nederlands",
+ "nl"
+ ],
+ [
+ "French",
+ "Français",
+ "fr"
+ ],
+ [
+ "Italian",
+ "Italiano",
+ "it"
+ ],
+ [
+ "Russian",
+ "Русский",
+ "ru"
+ ],
+ [
+ "Spanish",
+ "Español",
+ "es"
+ ],
+ [
+ "Polish",
+ "Polski",
+ "pl"
+ ],
+ [
+ "Swedish",
+ "Svenska",
+ "sv"
+ ],
+ [
+ "Japanese",
+ "日本語",
+ "ja"
+ ],
+ [
+ "Portuguese",
+ "Português",
+ "pt"
+ ],
+ [
+ "Chinese",
+ "中文",
+ "zh"
+ ],
+ [
+ "Vietnamese",
+ "Tiếng Việt",
+ "vi"
+ ],
+ [
+ "Ukrainian",
+ "Українська",
+ "uk"
+ ],
+ [
+ "Catalan",
+ "Català",
+ "ca"
+ ],
+ [
+ "Norwegian (Bokmål)",
+ "Norsk (Bokmål)",
+ "no"
+ ],
+ [
+ "Waray-Waray",
+ "Winaray",
+ "war"
+ ],
+ [
+ "Cebuano",
+ "Sinugboanong Binisaya",
+ "ceb"
+ ],
+ [
+ "Finnish",
+ "Suomi",
+ "fi"
+ ],
+ [
+ "Persian",
+ "فارسی",
+ "fa"
+ ],
+ [
+ "Czech",
+ "Čeština",
+ "cs"
+ ],
+ [
+ "Hungarian",
+ "Magyar",
+ "hu"
+ ],
+ [
+ "Korean",
+ "한국어",
+ "ko"
+ ],
+ [
+ "Romanian",
+ "Română",
+ "ro"
+ ],
+ [
+ "Arabic",
+ "العربية",
+ "ar"
+ ],
+ [
+ "Turkish",
+ "Türkçe",
+ "tr"
+ ],
+ [
+ "Indonesian",
+ "Bahasa Indonesia",
+ "id"
+ ],
+ [
+ "Kazakh",
+ "Қазақша",
+ "kk"
+ ],
+ [
+ "Malay",
+ "Bahasa Melayu",
+ "ms"
+ ],
+ [
+ "Serbian",
+ "Српски / Srpski",
+ "sr"
+ ],
+ [
+ "Slovak",
+ "Slovenčina",
+ "sk"
+ ],
+ [
+ "Esperanto",
+ "Esperanto",
+ "eo"
+ ],
+ [
+ "Danish",
+ "Dansk",
+ "da"
+ ],
+ [
+ "Lithuanian",
+ "Lietuvių",
+ "lt"
+ ],
+ [
+ "Basque",
+ "Euskara",
+ "eu"
+ ],
+ [
+ "Bulgarian",
+ "Български",
+ "bg"
+ ],
+ [
+ "Hebrew",
+ "עברית",
+ "he"
+ ],
+ [
+ "Slovenian",
+ "Slovenščina",
+ "sl"
+ ],
+ [
+ "Croatian",
+ "Hrvatski",
+ "hr"
+ ],
+ [
+ "Volapük",
+ "Volapük",
+ "vo"
+ ],
+ [
+ "Estonian",
+ "Eesti",
+ "et"
+ ],
+ [
+ "Hindi",
+ "हिन्दी",
+ "hi"
+ ],
+ [
+ "Uzbek",
+ "O‘zbek",
+ "uz"
+ ],
+ [
+ "Galician",
+ "Galego",
+ "gl"
+ ],
+ [
+ "Norwegian (Nynorsk)",
+ "Nynorsk",
+ "nn"
+ ],
+ [
+ "Simple English",
+ "Simple English",
+ "simple"
+ ],
+ [
+ "Azerbaijani",
+ "Azərbaycanca",
+ "az"
+ ],
+ [
+ "Latin",
+ "Latina",
+ "la"
+ ],
+ [
+ "Greek",
+ "Ελληνικά",
+ "el"
+ ],
+ [
+ "Thai",
+ "ไทย",
+ "th"
+ ],
+ [
+ "Serbo-Croatian",
+ "Srpskohrvatski / Српскохрватски",
+ "sh"
+ ],
+ [
+ "Georgian",
+ "ქართული",
+ "ka"
+ ],
+ [
+ "Occitan",
+ "Occitan",
+ "oc"
+ ],
+ [
+ "Macedonian",
+ "Македонски",
+ "mk"
+ ],
+ [
+ "Newar / Nepal Bhasa",
+ "नेपाल भाषा",
+ "new"
+ ],
+ [
+ "Tagalog",
+ "Tagalog",
+ "tl"
+ ],
+ [
+ "Piedmontese",
+ "Piemontèis",
+ "pms"
+ ],
+ [
+ "Belarusian",
+ "Беларуская",
+ "be"
+ ],
+ [
+ "Haitian",
+ "Krèyol ayisyen",
+ "ht"
+ ],
+ [
+ "Tamil",
+ "தமிழ்",
+ "ta"
+ ],
+ [
+ "Telugu",
+ "తెలుగు",
+ "te"
+ ],
+ [
+ "Belarusian (Taraškievica)",
+ "Беларуская (тарашкевіца)",
+ "be-x-old"
+ ],
+ [
+ "Latvian",
+ "Latviešu",
+ "lv"
+ ],
+ [
+ "Breton",
+ "Brezhoneg",
+ "br"
+ ],
+ [
+ "Malagasy",
+ "Malagasy",
+ "mg"
+ ],
+ [
+ "Albanian",
+ "Shqip",
+ "sq"
+ ],
+ [
+ "Armenian",
+ "Հայերեն",
+ "hy"
+ ],
+ [
+ "Tatar",
+ "Tatarça / Татарча",
+ "tt"
+ ],
+ [
+ "Javanese",
+ "Basa Jawa",
+ "jv"
+ ],
+ [
+ "Welsh",
+ "Cymraeg",
+ "cy"
+ ],
+ [
+ "Marathi",
+ "मराठी",
+ "mr"
+ ],
+ [
+ "Luxembourgish",
+ "Lëtzebuergesch",
+ "lb"
+ ],
+ [
+ "Icelandic",
+ "Íslenska",
+ "is"
+ ],
+ [
+ "Bosnian",
+ "Bosanski",
+ "bs"
+ ],
+ [
+ "Burmese",
+ "မြန်မာဘာသာ",
+ "my"
+ ],
+ [
+ "Yoruba",
+ "Yorùbá",
+ "yo"
+ ],
+ [
+ "Bashkir",
+ "Башҡорт",
+ "ba"
+ ],
+ [
+ "Malayalam",
+ "മലയാളം",
+ "ml"
+ ],
+ [
+ "Aragonese",
+ "Aragonés",
+ "an"
+ ],
+ [
+ "Lombard",
+ "Lumbaart",
+ "lmo"
+ ],
+ [
+ "Afrikaans",
+ "Afrikaans",
+ "af"
+ ],
+ [
+ "West Frisian",
+ "Frysk",
+ "fy"
+ ],
+ [
+ "Western Panjabi",
+ "شاہ مکھی پنجابی (Shāhmukhī Pañjābī)",
+ "pnb"
+ ],
+ [
+ "Bengali",
+ "বাংলা",
+ "bn"
+ ],
+ [
+ "Swahili",
+ "Kiswahili",
+ "sw"
+ ],
+ [
+ "Bishnupriya Manipuri",
+ "ইমার ঠার/বিষ্ণুপ্রিয়া মণিপুরী",
+ "bpy"
+ ],
+ [
+ "Ido",
+ "Ido",
+ "io"
+ ],
+ [
+ "Kirghiz",
+ "Кыргызча",
+ "ky"
+ ],
+ [
+ "Urdu",
+ "اردو",
+ "ur"
+ ],
+ [
+ "Nepali",
+ "नेपाली",
+ "ne"
+ ],
+ [
+ "Sicilian",
+ "Sicilianu",
+ "scn"
+ ],
+ [
+ "Gujarati",
+ "ગુજરાતી",
+ "gu"
+ ],
+ [
+ "Cantonese",
+ "粵語",
+ "zh-yue"
+ ],
+ [
+ "Low Saxon",
+ "Plattdüütsch",
+ "nds"
+ ],
+ [
+ "Kurdish",
+ "Kurdî / كوردی",
+ "ku"
+ ],
+ [
+ "Irish",
+ "Gaeilge",
+ "ga"
+ ],
+ [
+ "Asturian",
+ "Asturianu",
+ "ast"
+ ],
+ [
+ "Quechua",
+ "Runa Simi",
+ "qu"
+ ],
+ [
+ "Sundanese",
+ "Basa Sunda",
+ "su"
+ ],
+ [
+ "Chuvash",
+ "Чăваш",
+ "cv"
+ ],
+ [
+ "Scots",
+ "Scots",
+ "sco"
+ ],
+ [
+ "Interlingua",
+ "Interlingua",
+ "ia"
+ ],
+ [
+ "Alemannic",
+ "Alemannisch",
+ "als"
+ ],
+ [
+ "Buginese",
+ "Basa Ugi",
+ "bug"
+ ],
+ [
+ "Neapolitan",
+ "Nnapulitano",
+ "nap"
+ ],
+ [
+ "Samogitian",
+ "Žemaitėška",
+ "bat-smg"
+ ],
+ [
+ "Kannada",
+ "ಕನ್ನಡ",
+ "kn"
+ ],
+ [
+ "Banyumasan",
+ "Basa Banyumasan",
+ "map-bms"
+ ],
+ [
+ "Walloon",
+ "Walon",
+ "wa"
+ ],
+ [
+ "Amharic",
+ "አማርኛ",
+ "am"
+ ],
+ [
+ "Sorani",
+ "Soranî / کوردی",
+ "ckb"
+ ],
+ [
+ "Scottish Gaelic",
+ "Gàidhlig",
+ "gd"
+ ],
+ [
+ "Fiji Hindi",
+ "Fiji Hindi",
+ "hif"
+ ],
+ [
+ "Min Nan",
+ "Bân-lâm-gú",
+ "zh-min-nan"
+ ],
+ [
+ "Tajik",
+ "Тоҷикӣ",
+ "tg"
+ ],
+ [
+ "Mazandarani",
+ "مَزِروني",
+ "mzn"
+ ],
+ [
+ "Egyptian Arabic",
+ "مصرى (Maṣrī)",
+ "arz"
+ ],
+ [
+ "Yiddish",
+ "ייִדיש",
+ "yi"
+ ],
+ [
+ "Venetian",
+ "Vèneto",
+ "vec"
+ ],
+ [
+ "Mongolian",
+ "Монгол",
+ "mn"
+ ],
+ [
+ "Tarantino",
+ "Tarandíne",
+ "roa-tara"
+ ],
+ [
+ "Sanskrit",
+ "संस्कृतम्",
+ "sa"
+ ],
+ [
+ "Nahuatl",
+ "Nāhuatl",
+ "nah"
+ ],
+ [
+ "Ossetian",
+ "Иронау",
+ "os"
+ ],
+ [
+ "Sakha",
+ "Саха тыла (Saxa Tyla)",
+ "sah"
+ ],
+ [
+ "Kapampangan",
+ "Kapampangan",
+ "pam"
+ ],
+ [
+ "Upper Sorbian",
+ "Hornjoserbsce",
+ "hsb"
+ ],
+ [
+ "Sinhalese",
+ "සිංහල",
+ "si"
+ ],
+ [
+ "Northern Sami",
+ "Sámegiella",
+ "se"
+ ],
+ [
+ "Limburgish",
+ "Limburgs",
+ "li"
+ ],
+ [
+ "Maori",
+ "Māori",
+ "mi"
+ ],
+ [
+ "Bavarian",
+ "Boarisch",
+ "bar"
+ ],
+ [
+ "Corsican",
+ "Corsu",
+ "co"
+ ],
+ [
+ "Ilokano",
+ "Ilokano",
+ "ilo"
+ ],
+ [
+ "Gan",
+ "贛語",
+ "gan"
+ ],
+ [
+ "Tibetan",
+ "བོད་སྐད",
+ "bo"
+ ],
+ [
+ "Gilaki",
+ "گیلکی",
+ "glk"
+ ],
+ [
+ "Faroese",
+ "Føroyskt",
+ "fo"
+ ],
+ [
+ "Rusyn",
+ "русиньскый язык",
+ "rue"
+ ],
+ [
+ "Punjabi",
+ "ਪੰਜਾਬੀ",
+ "pa"
+ ],
+ [
+ "Central_Bicolano",
+ "Bikol",
+ "bcl"
+ ],
+ [
+ "Hill Mari",
+ "Кырык Мары (Kyryk Mary) ",
+ "mrj"
+ ],
+ [
+ "Võro",
+ "Võro",
+ "fiu-vro"
+ ],
+ [
+ "Dutch Low Saxon",
+ "Nedersaksisch",
+ "nds-nl"
+ ],
+ [
+ "Turkmen",
+ "تركمن / Туркмен",
+ "tk"
+ ],
+ [
+ "Pashto",
+ "پښتو",
+ "ps"
+ ],
+ [
+ "West Flemish",
+ "West-Vlams",
+ "vls"
+ ],
+ [
+ "Mingrelian",
+ "მარგალური (Margaluri)",
+ "xmf"
+ ],
+ [
+ "Manx",
+ "Gaelg",
+ "gv"
+ ],
+ [
+ "Zazaki",
+ "Zazaki",
+ "diq"
+ ],
+ [
+ "Pangasinan",
+ "Pangasinan",
+ "pag"
+ ],
+ [
+ "Komi",
+ "Коми",
+ "kv"
+ ],
+ [
+ "Zeelandic",
+ "Zeêuws",
+ "zea"
+ ],
+ [
+ "Divehi",
+ "ދިވެހިބަސް",
+ "dv"
+ ],
+ [
+ "Oriya",
+ "ଓଡ଼ିଆ",
+ "or"
+ ],
+ [
+ "Khmer",
+ "ភាសាខ្មែរ",
+ "km"
+ ],
+ [
+ "Norman",
+ "Nouormand/Normaund",
+ "nrm"
+ ],
+ [
+ "Romansh",
+ "Rumantsch",
+ "rm"
+ ],
+ [
+ "Komi-Permyak",
+ "Перем Коми (Perem Komi)",
+ "koi"
+ ],
+ [
+ "Udmurt",
+ "Удмурт кыл",
+ "udm"
+ ],
+ [
+ "Meadow Mari",
+ "Олык Марий (Olyk Marij)",
+ "mhr"
+ ],
+ [
+ "Ladino",
+ "Dzhudezmo",
+ "lad"
+ ],
+ [
+ "North Frisian",
+ "Nordfriisk",
+ "frr"
+ ],
+ [
+ "Kashubian",
+ "Kaszëbsczi",
+ "csb"
+ ],
+ [
+ "Ligurian",
+ "Líguru",
+ "lij"
+ ],
+ [
+ "Wu",
+ "吴语",
+ "wuu"
+ ],
+ [
+ "Friulian",
+ "Furlan",
+ "fur"
+ ],
+ [
+ "Vepsian",
+ "Vepsän",
+ "vep"
+ ],
+ [
+ "Classical Chinese",
+ "古文 / 文言文",
+ "zh-classical"
+ ],
+ [
+ "Uyghur",
+ "ئۇيغۇر تىلى",
+ "ug"
+ ],
+ [
+ "Saterland Frisian",
+ "Seeltersk",
+ "stq"
+ ],
+ [
+ "Sardinian",
+ "Sardu",
+ "sc"
+ ],
+ [
+ "Aromanian",
+ "Armãneashce",
+ "roa-rup"
+ ],
+ [
+ "Pali",
+ "पाऴि",
+ "pi"
+ ],
+ [
+ "Somali",
+ "Soomaaliga",
+ "so"
+ ],
+ [
+ "Bihari",
+ "भोजपुरी",
+ "bh"
+ ],
+ [
+ "Maltese",
+ "Malti",
+ "mt"
+ ],
+ [
+ "Aymara",
+ "Aymar",
+ "ay"
+ ],
+ [
+ "Ripuarian",
+ "Ripoarisch",
+ "ksh"
+ ],
+ [
+ "Novial",
+ "Novial",
+ "nov"
+ ],
+ [
+ "Anglo-Saxon",
+ "Englisc",
+ "ang"
+ ],
+ [
+ "Cornish",
+ "Kernewek/Karnuack",
+ "kw"
+ ],
+ [
+ "Navajo",
+ "Diné bizaad",
+ "nv"
+ ],
+ [
+ "Picard",
+ "Picard",
+ "pcd"
+ ],
+ [
+ "Hakka",
+ "Hak-kâ-fa / 客家話",
+ "hak"
+ ],
+ [
+ "Guarani",
+ "Avañe'ẽ",
+ "gn"
+ ],
+ [
+ "Extremaduran",
+ "Estremeñu",
+ "ext"
+ ],
+ [
+ "Franco-Provençal/Arpitan",
+ "Arpitan",
+ "frp"
+ ],
+ [
+ "Assamese",
+ "অসমীয়া",
+ "as"
+ ],
+ [
+ "Silesian",
+ "Ślůnski",
+ "szl"
+ ],
+ [
+ "Gagauz",
+ "Gagauz",
+ "gag"
+ ],
+ [
+ "Interlingue",
+ "Interlingue",
+ "ie"
+ ],
+ [
+ "Lingala",
+ "Lingala",
+ "ln"
+ ],
+ [
+ "Emilian-Romagnol",
+ "Emiliàn e rumagnòl",
+ "eml"
+ ],
+ [
+ "Chechen",
+ "Нохчийн",
+ "ce"
+ ],
+ [
+ "Kalmyk",
+ "Хальмг",
+ "xal"
+ ],
+ [
+ "Palatinate German",
+ "Pfälzisch",
+ "pfl"
+ ],
+ [
+ "Hawaiian",
+ "Hawai`i",
+ "haw"
+ ],
+ [
+ "Karachay-Balkar",
+ "Къарачай-Малкъар (Qarachay-Malqar)",
+ "krc"
+ ],
+ [
+ "Pennsylvania German",
+ "Deitsch",
+ "pdc"
+ ],
+ [
+ "Kinyarwanda",
+ "Ikinyarwanda",
+ "rw"
+ ],
+ [
+ "Crimean Tatar",
+ "Qırımtatarca",
+ "crh"
+ ],
+ [
+ "Acehnese",
+ "Bahsa Acèh",
+ "ace"
+ ],
+ [
+ "Tongan",
+ "faka Tonga",
+ "to"
+ ],
+ [
+ "Greenlandic",
+ "Kalaallisut",
+ "kl"
+ ],
+ [
+ "Lower Sorbian",
+ "Dolnoserbski",
+ "dsb"
+ ],
+ [
+ "Aramaic",
+ "ܐܪܡܝܐ",
+ "arc"
+ ],
+ [
+ "Erzya",
+ "Эрзянь (Erzjanj Kelj)",
+ "myv"
+ ],
+ [
+ "Lezgian",
+ "Лезги чІал (Lezgi č’al)",
+ "lez"
+ ],
+ [
+ "Banjar",
+ "Bahasa Banjar",
+ "bjn"
+ ],
+ [
+ "Shona",
+ "chiShona",
+ "sn"
+ ],
+ [
+ "Papiamentu",
+ "Papiamentu",
+ "pap"
+ ],
+ [
+ "Kabyle",
+ "Taqbaylit",
+ "kab"
+ ],
+ [
+ "Tok Pisin",
+ "Tok Pisin",
+ "tpi"
+ ],
+ [
+ "Lak",
+ "Лакку",
+ "lbe"
+ ],
+ [
+ "Buryat (Russia)",
+ "Буряад",
+ "bxr"
+ ],
+ [
+ "Lojban",
+ "Lojban",
+ "jbo"
+ ],
+ [
+ "Wolof",
+ "Wolof",
+ "wo"
+ ],
+ [
+ "Moksha",
+ "Мокшень (Mokshanj Kälj)",
+ "mdf"
+ ],
+ [
+ "Zamboanga Chavacano",
+ "Chavacano de Zamboanga",
+ "cbk-zam"
+ ],
+ [
+ "Avar",
+ "Авар",
+ "av"
+ ],
+ [
+ "Sranan",
+ "Sranantongo",
+ "srn"
+ ],
+ [
+ "Mirandese",
+ "Mirandés",
+ "mwl"
+ ],
+ [
+ "Kabardian Circassian",
+ "Адыгэбзэ (Adighabze)",
+ "kbd"
+ ],
+ [
+ "Tahitian",
+ "Reo Mā`ohi",
+ "ty"
+ ],
+ [
+ "Lao",
+ "ລາວ",
+ "lo"
+ ],
+ [
+ "Abkhazian",
+ "Аҧсуа",
+ "ab"
+ ],
+ [
+ "Tetum",
+ "Tetun",
+ "tet"
+ ],
+ [
+ "Latgalian",
+ "Latgaļu",
+ "ltg"
+ ],
+ [
+ "Nauruan",
+ "dorerin Naoero",
+ "na"
+ ],
+ [
+ "Kongo",
+ "KiKongo",
+ "kg"
+ ],
+ [
+ "Igbo",
+ "Igbo",
+ "ig"
+ ],
+ [
+ "Northern Sotho",
+ "Sesotho sa Leboa",
+ "nso"
+ ],
+ [
+ "Zhuang",
+ "Cuengh",
+ "za"
+ ],
+ [
+ "Karakalpak",
+ "Qaraqalpaqsha",
+ "kaa"
+ ],
+ [
+ "Zulu",
+ "isiZulu",
+ "zu"
+ ],
+ [
+ "Cheyenne",
+ "Tsetsêhestâhese",
+ "chy"
+ ],
+ [
+ "Romani",
+ "romani - रोमानी",
+ "rmy"
+ ],
+ [
+ "Old Church Slavonic",
+ "Словѣньскъ",
+ "cu"
+ ],
+ [
+ "Tswana",
+ "Setswana",
+ "tn"
+ ],
+ [
+ "Cherokee",
+ "ᏣᎳᎩ",
+ "chr"
+ ],
+ [
+ "Bislama",
+ "Bislama",
+ "bi"
+ ],
+ [
+ "Min Dong",
+ "Mìng-dĕ̤ng-ngṳ̄",
+ "cdo"
+ ],
+ [
+ "Gothic",
+ "𐌲𐌿𐍄𐌹𐍃𐌺",
+ "got"
+ ],
+ [
+ "Samoan",
+ "Gagana Samoa",
+ "sm"
+ ],
+ [
+ "Moldovan",
+ "Молдовеняскэ",
+ "mo"
+ ],
+ [
+ "Bambara",
+ "Bamanankan",
+ "bm"
+ ],
+ [
+ "Inuktitut",
+ "ᐃᓄᒃᑎᑐᑦ",
+ "iu"
+ ],
+ [
+ "Norfolk",
+ "Norfuk",
+ "pih"
+ ],
+ [
+ "Pontic",
+ "Ποντιακά",
+ "pnt"
+ ],
+ [
+ "Sindhi",
+ "سنڌي، سندھی ، सिन्ध",
+ "sd"
+ ],
+ [
+ "Swati",
+ "SiSwati",
+ "ss"
+ ],
+ [
+ "Kikuyu",
+ "Gĩkũyũ",
+ "ki"
+ ],
+ [
+ "Ewe",
+ "Eʋegbe",
+ "ee"
+ ],
+ [
+ "Hausa",
+ "هَوُسَ",
+ "ha"
+ ],
+ [
+ "Oromo",
+ "Oromoo",
+ "om"
+ ],
+ [
+ "Fijian",
+ "Na Vosa Vakaviti",
+ "fj"
+ ],
+ [
+ "Tigrinya",
+ "ትግርኛ",
+ "ti"
+ ],
+ [
+ "Tsonga",
+ "Xitsonga",
+ "ts"
+ ],
+ [
+ "Kashmiri",
+ "कश्मीरी / كشميري",
+ "ks"
+ ],
+ [
+ "Venda",
+ "Tshivenda",
+ "ve"
+ ],
+ [
+ "Sango",
+ "Sängö",
+ "sg"
+ ],
+ [
+ "Kirundi",
+ "Kirundi",
+ "rn"
+ ],
+ [
+ "Sesotho",
+ "Sesotho",
+ "st"
+ ],
+ [
+ "Dzongkha",
+ "ཇོང་ཁ",
+ "dz"
+ ],
+ [
+ "Cree",
+ "Nehiyaw",
+ "cr"
+ ],
+ [
+ "Akan",
+ "Akana",
+ "ak"
+ ],
+ [
+ "Tumbuka",
+ "chiTumbuka",
+ "tum"
+ ],
+ [
+ "Luganda",
+ "Luganda",
+ "lg"
+ ],
+ [
+ "Chichewa",
+ "Chi-Chewa",
+ "ny"
+ ],
+ [
+ "Fula",
+ "Fulfulde",
+ "ff"
+ ],
+ [
+ "Inupiak",
+ "Iñupiak",
+ "ik"
+ ],
+ [
+ "Chamorro",
+ "Chamoru",
+ "ch"
+ ],
+ [
+ "Twi",
+ "Twi",
+ "tw"
+ ],
+ [
+ "Xhosa",
+ "isiXhosa",
+ "xh"
+ ],
+ [
+ "Ndonga",
+ "Oshiwambo",
+ "ng"
+ ],
+ [
+ "Sichuan Yi",
+ "ꆇꉙ",
+ "ii"
+ ],
+ [
+ "Choctaw",
+ "Choctaw",
+ "cho"
+ ],
+ [
+ "Marshallese",
+ "Ebon",
+ "mh"
+ ],
+ [
+ "Afar",
+ "Afar",
+ "aa"
+ ],
+ [
+ "Kuanyama",
+ "Kuanyama",
+ "kj"
+ ],
+ [
+ "Hiri Motu",
+ "Hiri Motu",
+ "ho"
+ ],
+ [
+ "Muscogee",
+ "Muskogee",
+ "mus"
+ ],
+ [
+ "Kanuri",
+ "Kanuri",
+ "kr"
+ ],
+ [
+ "Herero",
+ "Otsiherero",
+ "hz"
+ ]
+ ],
"imperial": {
"type": "FeatureCollection",
"features": [
528
]
},
+ "gift": {
+ "12": [
+ 258,
+ 528
+ ],
+ "18": [
+ 240,
+ 528
+ ],
+ "24": [
+ 216,
+ 528
+ ]
+ },
+ "ice-cream": {
+ "12": [
+ 42,
+ 552
+ ],
+ "18": [
+ 24,
+ 552
+ ],
+ "24": [
+ 0,
+ 552
+ ]
+ },
"highway-motorway": {
"line": [
20,
"locales": [
"af",
"sq",
+ "sq-AL",
"ar",
"ar-AA",
"hy",
"cs",
"da",
"nl",
+ "en-DE",
"en-GB",
+ "eo",
"et",
"fi",
"fr",
"gl",
"de",
+ "de-DE",
"el",
+ "hi-IN",
"hu",
"is",
"id",
"it",
"ja",
"kn",
+ "km",
+ "km-KH",
"ko",
"ko-KR",
"lv",
"pt-BR",
"ro-RO",
"ru",
+ "ru-RU",
"sc",
"sr",
"sr-RS",
"area": "Made an area circular."
},
"not_closed": "This can't be made circular because it's not a loop.",
- "too_large": "This can't be made circular because not enough of it is currently visible."
+ "too_large": "This can't be made circular because not enough of it is currently visible.",
+ "connected_to_hidden": "This can't be made circular because it is connected to a hidden feature."
},
"orthogonalize": {
"title": "Square",
"area": "Squared the corners of an area."
},
"not_squarish": "This can't be made square because it is not squarish.",
- "too_large": "This can't be made square because not enough of it is currently visible."
+ "too_large": "This can't be made square because not enough of it is currently visible.",
+ "connected_to_hidden": "This can't be made square because it is connected to a hidden feature."
},
"straighten": {
"title": "Straighten",
"description": "Straighten this line.",
"key": "S",
"annotation": "Straightened a line.",
- "too_bendy": "This can't be straightened because it bends too much."
+ "too_bendy": "This can't be straightened because it bends too much.",
+ "connected_to_hidden": "This line can't be straightened because it is connected to a hidden feature."
},
"delete": {
"title": "Delete",
- "description": "Remove this from the map.",
+ "description": "Delete object permanently.",
"annotation": {
"point": "Deleted a point.",
"vertex": "Deleted a node from a way.",
"relation": "Deleted a relation.",
"multiple": "Deleted {n} objects."
},
- "incomplete_relation": "This feature can't be deleted because it hasn't been fully downloaded."
+ "incomplete_relation": "This feature can't be deleted because it hasn't been fully downloaded.",
+ "connected_to_hidden": "This can't be deleted because it is connected to a hidden feature."
},
"add_member": {
"annotation": "Added a member to a relation."
"description": "Disconnect these lines/areas from each other.",
"key": "D",
"annotation": "Disconnected lines/areas.",
- "not_connected": "There aren't enough lines/areas here to disconnect."
+ "not_connected": "There aren't enough lines/areas here to disconnect.",
+ "connected_to_hidden": "This can't be disconnected because it is connected to a hidden feature."
},
"merge": {
"title": "Merge",
"multiple": "Moved multiple objects."
},
"incomplete_relation": "This feature can't be moved because it hasn't been fully downloaded.",
- "too_large": "This can't be moved because not enough of it is currently visible."
+ "too_large": "This can't be moved because not enough of it is currently visible.",
+ "connected_to_hidden": "This can't be moved because it is connected to a hidden feature."
},
"rotate": {
"title": "Rotate",
"line": "Rotated a line.",
"area": "Rotated an area."
},
- "too_large": "This can't be rotated because not enough of it is currently visible."
+ "too_large": "This can't be rotated because not enough of it is currently visible.",
+ "connected_to_hidden": "This can't be rotated because it is connected to a hidden feature."
},
"reverse": {
"title": "Reverse",
"multiple": "Split {n} lines/area boundaries."
},
"not_eligible": "Lines can't be split at their beginning or end.",
- "multiple_ways": "There are too many lines here to split."
+ "multiple_ways": "There are too many lines here to split.",
+ "connected_to_hidden": "This can't be split because it is connected to a hidden feature."
},
"restriction": {
"help": {
"logout": "logout",
"loading_auth": "Connecting to OpenStreetMap...",
"report_a_bug": "report a bug",
+ "feature_info": {
+ "hidden_warning": "{count} hidden features",
+ "hidden_details": "These features are currently hidden: {details}"
+ },
"status": {
"error": "Unable to connect to API.",
"offline": "The API is offline. Please try editing later.",
"upload_explanation_with_user": "The changes you upload as {user} will be visible on all maps that use OpenStreetMap data.",
"save": "Save",
"cancel": "Cancel",
+ "changes": "{count} Changes",
"warnings": "Warnings",
"modified": "Modified",
"deleted": "Deleted",
"node": "Node",
"way": "Way",
"relation": "Relation",
- "location": "Location"
+ "location": "Location",
+ "add_fields": "Add field:"
},
"background": {
"title": "Background",
"fix_misalignment": "Fix alignment",
"reset": "reset"
},
+ "map_data": {
+ "title": "Map Data",
+ "description": "Map Data",
+ "data_layers": "Data Layers",
+ "fill_area": "Fill Areas",
+ "map_features": "Map Features",
+ "autohidden": "These features have been automatically hidden because too many would be shown on the screen. You can zoom in to edit them."
+ },
+ "feature": {
+ "points": {
+ "description": "Points",
+ "tooltip": "Points of Interest"
+ },
+ "major_roads": {
+ "description": "Major Roads",
+ "tooltip": "Highways, Streets, etc."
+ },
+ "minor_roads": {
+ "description": "Minor Roads",
+ "tooltip": "Service Roads, Parking Aisles, Tracks, etc."
+ },
+ "paths": {
+ "description": "Paths",
+ "tooltip": "Sidewalks, Foot Paths, Cycle Paths, etc."
+ },
+ "buildings": {
+ "description": "Buildings",
+ "tooltip": "Buildings, Shelters, Garages, etc."
+ },
+ "landuse": {
+ "description": "Landuse Features",
+ "tooltip": "Forests, Farmland, Parks, Residential, Commercial, etc."
+ },
+ "boundaries": {
+ "description": "Boundaries",
+ "tooltip": "Administrative Boundaries"
+ },
+ "water": {
+ "description": "Water Features",
+ "tooltip": "Rivers, Lakes, Ponds, Basins, etc."
+ },
+ "rail": {
+ "description": "Rail Features",
+ "tooltip": "Railways"
+ },
+ "power": {
+ "description": "Power Features",
+ "tooltip": "Power Lines, Power Plants, Substations, etc."
+ },
+ "past_future": {
+ "description": "Past/Future",
+ "tooltip": "Proposed, Construction, Abandoned, Demolished, etc."
+ },
+ "others": {
+ "description": "Others",
+ "tooltip": "Everything Else"
+ }
+ },
+ "area_fill": {
+ "wireframe": {
+ "description": "No Fill (Wireframe)",
+ "tooltip": "Enabling wireframe mode makes it easy to see the background imagery."
+ },
+ "partial": {
+ "description": "Partial Fill",
+ "tooltip": "Areas are drawn with fill only around their inner edges. (Recommended for beginner mappers)"
+ },
+ "full": {
+ "description": "Full Fill",
+ "tooltip": "Areas are drawn fully filled."
+ }
+ },
"restore": {
"heading": "You have unsaved changes",
"description": "Do you wish to restore unsaved changes from a previous editing session?",
"help": "Save changes to OpenStreetMap, making them visible to other users.",
"no_changes": "No changes to save.",
"error": "An error occurred while trying to save",
+ "unknown_error_details": "Please ensure you are connected to the internet.",
"uploading": "Uploading changes to OpenStreetMap.",
"unsaved_changes": "You have unsaved changes"
},
"zoom": "Zoom to GPX track",
"browse": "Browse for a .gpx file"
},
+ "mapillary": {
+ "tooltip": "Street-level photos from Mapillary",
+ "title": "Photo Overlay (Mapillary)",
+ "view_on_mapillary": "View this image on Mapillary"
+ },
"help": {
"title": "Help",
"help": "# Help\n\nThis is an editor for [OpenStreetMap](http://www.openstreetmap.org/), the\nfree and editable map of the world. You can use it to add and update\ndata in your area, making an open-source and open-data map of the world\nbetter for everyone.\n\nEdits that you make on this map will be visible to everyone who uses\nOpenStreetMap. In order to make an edit, you'll need 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",
+ "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 purple\nline. Click on the 'Map Data' menu on the right side to enable,\ndisable, or zoom to this new GPX-powered layer.\n\nThe GPX track isn't directly uploaded to OpenStreetMap - the best way to\nuse it is to draw on the map, using it as a guide for the new features that\nyou add, and also to [upload it to OpenStreetMap](http://www.openstreetmap.org/trace/create)\nfor other users to use.\n",
"imagery": "# Imagery\n\nAerial imagery is an important resource for mapping. A combination of\nairplane flyovers, satellite views, and freely-compiled sources are available\nin the editor under the 'Background Settings' menu on the right.\n\nBy default a [Bing Maps](http://www.bing.com/maps/) satellite layer is\npresented in the editor, but as you pan and zoom the map to new geographical\nareas, new sources will become available. Some countries, like the United\nStates, France, and Denmark have very high-quality imagery available for some areas.\n\nImagery is sometimes offset from the map data because of a mistake on the\nimagery provider's side. If you see a lot of roads shifted from the background,\ndon't immediately move them all to match the background. Instead you can adjust\nthe imagery so that it matches the existing data by clicking 'Fix alignment' at\nthe bottom of the Background Settings UI.\n",
"addresses": "# Addresses\n\nAddresses are some of the most useful information for the map.\n\nAlthough addresses are often represented as parts of streets, in OpenStreetMap\nthey're recorded as attributes of buildings and places along streets.\n\nYou can add address information to places mapped as building outlines\nas well as those mapped as single points. The optimal source of address\ndata is from an on-the-ground survey or personal knowledge - as with any\nother feature, copying from commercial sources like Google Maps is strictly\nforbidden.\n",
"inspector": "# Using the Inspector\n\nThe inspector is the section on the left side of the page that allows you to\nedit the details of the selected feature.\n\n### Selecting a Feature Type\n\nAfter you add a point, line, or area, you can choose what type of feature it\nis, like whether it's a highway or residential road, supermarket or cafe.\nThe inspector will display buttons for common feature types, and you can\nfind others by typing what you're looking for in the search box.\n\nClick the 'i' in the bottom-right-hand corner of a feature type button to\nlearn more about it. Click a button to choose that type.\n\n### Using Forms and Editing Tags\n\nAfter you choose a feature type, or when you select a feature that already\nhas a type assigned, the inspector will display fields with details about\nthe feature like its name and address.\n\nBelow the fields you see, you can click icons to add other details,\nlike [Wikipedia](http://www.wikipedia.org/) information, wheelchair\naccess, and more.\n\nAt the bottom of the inspector, click 'Additional tags' to add arbitrary\nother tags to the element. [Taginfo](http://taginfo.openstreetmap.org/) is a\ngreat resource for learn more about popular tag combinations.\n\nChanges you make in the inspector are automatically applied to the map.\nYou can undo them at any time by clicking the 'Undo' button.\n",
},
"areas": {
"title": "Areas",
- "add": "Areas are a more detailed way to represent features. They provide information on the boundaries of the feature. Areas can be used for most feature types points can be used for, and are often preferred. **Click the Area button to add a new area.**",
+ "add": "Areas are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the Area button to add a new area.**",
"corner": "Areas are drawn by placing nodes that mark the boundary of the area. **Place the starting node on one of the corners of the playground.**",
"place": "Draw the area by placing more nodes. Finish the area by clicking on the starting node. **Draw an area for the playground.**",
"search": "**Search for '{name}'.**",
"barrier": {
"label": "Type"
},
+ "bench": {
+ "label": "Bench"
+ },
"bicycle_parking": {
"label": "Type"
},
"boundary": {
"label": "Type"
},
+ "brand": {
+ "label": "Brand"
+ },
"building": {
"label": "Building"
},
"covered": {
"label": "Covered"
},
+ "craft": {
+ "label": "Type"
+ },
"crop": {
"label": "Crop"
},
"cuisine": {
"label": "Cuisine"
},
+ "delivery": {
+ "label": "Delivery"
+ },
"denomination": {
"label": "Denomination"
},
"gauge": {
"label": "Gauge"
},
+ "gender": {
+ "label": "Gender",
+ "placeholder": "Unknown",
+ "options": {
+ "male": "Male",
+ "female": "Female",
+ "unisex": "Unisex"
+ }
+ },
"generator/method": {
"label": "Method"
},
"layer": {
"label": "Layer"
},
+ "leaf_cycle": {
+ "label": "Leaf Cycle",
+ "options": {
+ "evergreen": "Evergreen",
+ "deciduous": "Deciduous",
+ "semi_evergreen": "Semi-Evergreen",
+ "semi_deciduous": "Semi-Deciduous",
+ "mixed": "Mixed"
+ }
+ },
+ "leaf_type": {
+ "label": "Leaf Type",
+ "options": {
+ "broadleaved": "Broadleaved",
+ "needleleaved": "Needleleaved",
+ "mixed": "Mixed",
+ "leafless": "Leafless"
+ }
+ },
"leisure": {
"label": "Type"
},
"advanced": "Advanced (black diamond)",
"expert": "Expert (double black diamond)",
"freeride": "Freeride (off-piste)",
- "extreme": "Extreme (climing equipment required)"
+ "extreme": "Extreme (climbing equipment required)"
}
},
"piste/grooming": {
"service": {
"label": "Type"
},
+ "service/bicycle/chaintool": {
+ "label": "Chain Tool",
+ "options": {
+ "undefined": "Assumed to be No",
+ "yes": "Yes",
+ "no": "No"
+ }
+ },
+ "service/bicycle/pump": {
+ "label": "Air Pump",
+ "options": {
+ "undefined": "Assumed to be No",
+ "yes": "Yes",
+ "no": "No"
+ }
+ },
"shelter": {
"label": "Shelter"
},
"very_bad": "High Clearance: light duty off-road vehicle",
"horrible": "Off-Road: heavy duty off-road vehicle",
"very_horrible": "Specialized off-road: tractor, ATV",
- "impassible": "Impassible / No wheeled vehicle"
+ "impassable": "Impassable / No wheeled vehicle"
}
},
"social_facility_for": {
"sport_ice": {
"label": "Sport"
},
+ "sport_racing": {
+ "label": "Sport"
+ },
"structure": {
"label": "Structure",
"placeholder": "Unknown",
"studio_type": {
"label": "Type"
},
+ "substation": {
+ "label": "Type"
+ },
"supervised": {
"label": "Supervised"
},
"tactile_paving": {
"label": "Tactile Paving"
},
+ "takeaway": {
+ "label": "Takeaway",
+ "placeholder": "Yes, No, Takeaway Only...",
+ "options": {
+ "yes": "Yes",
+ "no": "No",
+ "only": "Takeaway Only"
+ }
+ },
"toilets/disposal": {
"label": "Disposal",
"options": {
"no": "No: pathless, excellent orientation skills required"
}
},
- "tree_type": {
- "label": "Type"
- },
"trees": {
"label": "Trees"
},
},
"wikipedia": {
"label": "Wikipedia"
- },
- "wood": {
- "label": "Type"
}
},
"presets": {
},
"amenity/arts_centre": {
"name": "Arts Center",
- "terms": "arts,arts centre"
+ "terms": ""
},
"amenity/atm": {
"name": "ATM",
- "terms": ""
+ "terms": "money,cash,machine"
},
"amenity/bank": {
"name": "Bank",
- "terms": "coffer,countinghouse,credit union,depository,exchequer,fund,hoard,investment firm,repository,reserve,reservoir,safe,savings,stock,stockpile,store,storehouse,thrift,treasury,trust company,vault"
+ "terms": "credit union,check,deposit,fund,investment,repository,reserve,safe,savings,stock,treasury,trust,vault"
},
"amenity/bar": {
"name": "Bar",
- "terms": ""
+ "terms": "dive,beer,bier,booze"
},
"amenity/bbq": {
"name": "Barbecue/Grill",
- "terms": "barbecue,bbq,grill"
+ "terms": "bbq"
},
"amenity/bench": {
"name": "Bench",
},
"amenity/bicycle_parking": {
"name": "Bicycle Parking",
- "terms": ""
+ "terms": "bike"
},
"amenity/bicycle_rental": {
"name": "Bicycle Rental",
- "terms": ""
+ "terms": "bike"
+ },
+ "amenity/bicycle_repair_station": {
+ "name": "Bicycle Repair Station",
+ "terms": "bike"
},
"amenity/boat_rental": {
"name": "Boat Rental",
"terms": ""
},
+ "amenity/bureau_de_change": {
+ "name": "Currency Exchange",
+ "terms": "bureau de change,money changer"
+ },
"amenity/bus_station": {
"name": "Bus Station",
"terms": ""
},
"amenity/cafe": {
"name": "Cafe",
- "terms": "coffee,tea,coffee shop"
+ "terms": "coffee,tea"
},
"amenity/car_rental": {
"name": "Car Rental",
"terms": "EV,Electric Vehicle,Supercharger"
},
"amenity/childcare": {
- "name": "Childcare",
- "terms": "nursery,orphanage,playgroup"
+ "name": "Nursery/Childcare",
+ "terms": "daycare,orphanage,playgroup"
},
"amenity/cinema": {
"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"
+ "terms": "drive-in,film,flick,movie,theater,picture,show,screen"
},
"amenity/clinic": {
"name": "Clinic",
- "terms": "clinic,medical clinic"
+ "terms": "medical,urgentcare"
},
"amenity/clock": {
"name": "Clock",
"terms": ""
},
"amenity/college": {
- "name": "College",
- "terms": ""
+ "name": "College Grounds",
+ "terms": "university"
+ },
+ "amenity/community_centre": {
+ "name": "Community Center",
+ "terms": "event,hall"
},
"amenity/compressed_air": {
"name": "Compressed Air",
},
"amenity/dentist": {
"name": "Dentist",
- "terms": "dentist,dentist's office"
+ "terms": "tooth,teeth"
},
"amenity/doctor": {
"name": "Doctor",
- "terms": "doctor,doctor's office"
+ "terms": "medic*"
},
"amenity/dojo": {
"name": "Dojo / Martial Arts Academy",
- "terms": "martial arts,dojo,dojang"
+ "terms": "martial arts,dojang"
},
"amenity/drinking_water": {
"name": "Drinking Water",
- "terms": "water fountain,potable water"
+ "terms": "fountain,potable"
},
"amenity/embassy": {
"name": "Embassy",
},
"amenity/fast_food": {
"name": "Fast Food",
- "terms": ""
+ "terms": "restaurant"
},
"amenity/fire_station": {
"name": "Fire Station",
"name": "Graveyard",
"terms": ""
},
+ "amenity/grit_bin": {
+ "name": "Grit Bin",
+ "terms": "salt,sand"
+ },
"amenity/hospital": {
"name": "Hospital Grounds",
- "terms": "clinic,emergency room,health service,hospice,infirmary,institution,nursing home,rest home,sanatorium,sanitarium,sick bay,surgery,ward"
+ "terms": "clinic,doctor,emergency room,health service,hospice,infirmary,institution,nursing home,sanatorium,sanitarium,sick,surgery,ward"
},
"amenity/kindergarten": {
- "name": "Kindergarten Grounds",
- "terms": "nursery,preschool"
+ "name": "Preschool/Kindergarten Grounds",
+ "terms": "kindergarden,pre-school"
},
"amenity/library": {
"name": "Library",
- "terms": ""
+ "terms": "book"
},
"amenity/marketplace": {
"name": "Marketplace",
},
"amenity/pharmacy": {
"name": "Pharmacy",
- "terms": ""
+ "terms": "drug,medicine"
},
"amenity/place_of_worship": {
"name": "Place of Worship",
},
"amenity/place_of_worship/christian": {
"name": "Church",
- "terms": "christian,abbey,basilica,bethel,cathedral,chancel,chantry,chapel,church,fold,house of God,house of prayer,house of worship,minster,mission,oratory,parish,sacellum,sanctuary,shrine,tabernacle,temple"
+ "terms": "christian,abbey,basilica,bethel,cathedral,chancel,chantry,chapel,fold,house of God,house of prayer,house of worship,minster,mission,oratory,parish,sacellum,sanctuary,shrine,tabernacle,temple"
},
"amenity/place_of_worship/jewish": {
"name": "Synagogue",
- "terms": "jewish,synagogue"
+ "terms": "jewish"
},
"amenity/place_of_worship/muslim": {
"name": "Mosque",
- "terms": "muslim,mosque"
+ "terms": "muslim"
},
"amenity/police": {
"name": "Police",
- "terms": "badge,bear,blue,bluecoat,bobby,boy scout,bull,constable,constabulary,cop,copper,corps,county mounty,detective,fed,flatfoot,force,fuzz,gendarme,gumshoe,heat,law,law enforcement,man,narc,officers,patrolman,police"
+ "terms": "badge,constable,constabulary,cop,detective,fed,law,enforcement,officer,patrol"
},
"amenity/post_box": {
"name": "Mailbox",
- "terms": "letter drop,letterbox,mail drop,mailbox,pillar box,postbox"
+ "terms": "letter,post"
},
"amenity/post_office": {
"name": "Post Office",
- "terms": ""
+ "terms": "letter,mail"
},
"amenity/pub": {
"name": "Pub",
- "terms": ""
+ "terms": "dive,beer,bier,booze"
+ },
+ "amenity/public_bookcase": {
+ "name": "Public Bookcase",
+ "terms": "library,bookcrossing"
},
"amenity/ranger_station": {
"name": "Ranger Station",
},
"amenity/recycling": {
"name": "Recycling",
+ "terms": "can,bottle,garbage,scrap,trash"
+ },
+ "amenity/register_office": {
+ "name": "Register Office",
"terms": ""
},
"amenity/restaurant": {
"name": "Restaurant",
- "terms": "bar,cafeteria,café,canteen,chophouse,coffee shop,diner,dining room,dive*,doughtnut shop,drive-in,eatery,eating house,eating place,fast-food place,fish and chips,greasy spoon,grill,hamburger stand,hashery,hideaway,hotdog stand,inn,joint*,luncheonette,lunchroom,night club,outlet*,pizzeria,saloon,soda fountain,watering hole"
+ "terms": "bar,breakfast,cafe,café,canteen,coffee,dine,dining,dinner,drive-in,eat,grill,lunch,table"
},
"amenity/school": {
"name": "School Grounds",
- "terms": "academy,alma mater,blackboard,college,department,discipline,establishment,faculty,hall,halls of ivy,institute,institution,jail*,schoolhouse,seminary,university"
+ "terms": "academy,elementary school,middle school,high school"
},
"amenity/shelter": {
"name": "Shelter",
- "terms": "lean-to"
+ "terms": "lean-to,gazebo,picnic"
},
"amenity/social_facility": {
"name": "Social Facility",
"terms": ""
},
"amenity/social_facility/group_home": {
- "name": "Group Home",
- "terms": "elderly,old,senior living"
+ "name": "Elderly Group Home",
+ "terms": "old,senior,living"
},
"amenity/social_facility/homeless_shelter": {
"name": "Homeless Shelter",
},
"amenity/studio": {
"name": "Studio",
- "terms": "recording studio,studio,radio,radio studio,television,television studio"
+ "terms": "recording,radio,television"
},
"amenity/swimming_pool": {
"name": "Swimming Pool",
},
"amenity/townhall": {
"name": "Town Hall",
- "terms": "village hall,city government,courthouse,municipal building,municipal center,municipal centre"
+ "terms": "village,city,government,courthouse,municipal"
},
"amenity/university": {
- "name": "University",
+ "name": "University Grounds",
"terms": "college"
},
"amenity/vending_machine": {
"name": "Vending Machine",
- "terms": ""
+ "terms": "snack,soda,ticket"
},
"amenity/veterinary": {
"name": "Veterinary",
},
"amenity/waste_basket": {
"name": "Waste Basket",
- "terms": "rubbish bin,litter bin,trash can,garbage can"
+ "terms": "rubbish,litter,trash,garbage"
},
"area": {
"name": "Area",
"name": "Church",
"terms": ""
},
+ "building/college": {
+ "name": "College Building",
+ "terms": "university"
+ },
"building/commercial": {
"name": "Commercial Building",
"terms": ""
"name": "Industrial Building",
"terms": ""
},
+ "building/kindergarten": {
+ "name": "Preschool/Kindergarten Building",
+ "terms": "kindergarden,pre-school"
+ },
"building/public": {
"name": "Public Building",
"terms": ""
},
"building/school": {
"name": "School Building",
- "terms": ""
+ "terms": "academy,elementary school,middle school,high school"
},
"building/shed": {
"name": "Shed",
},
"building/university": {
"name": "University Building",
- "terms": ""
+ "terms": "college"
},
"building/warehouse": {
"name": "Warehouse",
"terms": ""
},
+ "craft": {
+ "name": "Craft",
+ "terms": ""
+ },
"craft/basket_maker": {
"name": "Basket Maker",
- "terms": "basket,basketry,basket maker,basket weaver"
+ "terms": ""
},
"craft/beekeeper": {
"name": "Beekeeper",
- "terms": "bees,beekeeper,bee box"
+ "terms": ""
},
"craft/blacksmith": {
"name": "Blacksmith",
- "terms": "blacksmith"
+ "terms": ""
},
"craft/boatbuilder": {
"name": "Boat Builder",
- "terms": "boat builder"
+ "terms": ""
},
"craft/bookbinder": {
"name": "Bookbinder",
- "terms": "bookbinder,book repair"
+ "terms": "book repair"
},
"craft/brewery": {
"name": "Brewery",
- "terms": "brewery"
+ "terms": "beer,bier"
},
"craft/carpenter": {
"name": "Carpenter",
- "terms": "carpenter,woodworker"
+ "terms": "woodworker"
},
"craft/carpet_layer": {
"name": "Carpet Layer",
- "terms": "carpet layer"
+ "terms": ""
},
"craft/caterer": {
"name": "Caterer",
- "terms": "Caterer,Catering"
+ "terms": ""
},
"craft/clockmaker": {
"name": "Clockmaker",
- "terms": "clock,clockmaker,clock repair"
+ "terms": ""
},
- "craft/confectionary": {
- "name": "Confectionary",
- "terms": "confectionary,sweets,candy"
+ "craft/confectionery": {
+ "name": "Confectionery",
+ "terms": "sweets,candy"
},
"craft/dressmaker": {
"name": "Dressmaker",
- "terms": "dress,dressmaker"
+ "terms": "seamstress"
},
"craft/electrician": {
"name": "Electrician",
- "terms": "electrician"
+ "terms": "power,wire"
},
"craft/gardener": {
"name": "Gardener",
- "terms": "gardener,landscaper,grounds keeper"
+ "terms": "landscaper,grounds keeper"
},
"craft/glaziery": {
"name": "Glaziery",
- "terms": "glass,glass foundry,stained-glass,window"
+ "terms": "glass,stained-glass,window"
},
"craft/handicraft": {
"name": "Handicraft",
- "terms": "handicraft"
+ "terms": ""
},
"craft/hvac": {
"name": "HVAC",
- "terms": "heating,ventilating,air-conditioning,air conditioning"
+ "terms": "heat*,vent*,air conditioning"
},
"craft/insulator": {
"name": "Insulator",
- "terms": "insulation,insulator"
+ "terms": ""
},
"craft/jeweler": {
"name": "Jeweler",
- "terms": "jeweler,gem,diamond"
+ "terms": ""
},
"craft/key_cutter": {
"name": "Key Cutter",
- "terms": "key,key cutter"
+ "terms": ""
},
"craft/locksmith": {
"name": "Locksmith",
- "terms": "locksmith,lock"
+ "terms": ""
},
"craft/metal_construction": {
"name": "Metal Construction",
- "terms": "metal construction"
+ "terms": ""
},
"craft/optician": {
"name": "Optician",
- "terms": "glasses,optician"
+ "terms": ""
},
"craft/painter": {
"name": "Painter",
- "terms": "painter"
+ "terms": ""
},
"craft/photographer": {
"name": "Photographer",
- "terms": "photographer"
+ "terms": ""
},
"craft/photographic_laboratory": {
"name": "Photographic Laboratory",
- "terms": "photographic laboratory,film developer"
+ "terms": "film"
},
"craft/plasterer": {
"name": "Plasterer",
- "terms": "plasterer"
+ "terms": ""
},
"craft/plumber": {
"name": "Plumber",
- "terms": "pumber"
+ "terms": "pipe"
},
"craft/pottery": {
"name": "Pottery",
- "terms": "pottery,potter"
+ "terms": "ceramic"
},
"craft/rigger": {
"name": "Rigger",
- "terms": "rigger"
+ "terms": ""
},
"craft/roofer": {
"name": "Roofer",
- "terms": "roofer"
+ "terms": ""
},
"craft/saddler": {
"name": "Saddler",
- "terms": "saddler"
+ "terms": ""
},
"craft/sailmaker": {
"name": "Sailmaker",
- "terms": "sailmaker"
+ "terms": ""
},
"craft/sawmill": {
"name": "Sawmill",
- "terms": "sawmill,lumber"
+ "terms": "lumber"
},
"craft/scaffolder": {
"name": "Scaffolder",
- "terms": "scaffolder"
+ "terms": ""
},
"craft/sculpter": {
"name": "Sculpter",
- "terms": "sculpter"
+ "terms": ""
},
"craft/shoemaker": {
"name": "Shoemaker",
- "terms": "shoe repair,shoemaker"
+ "terms": "cobbler"
},
"craft/stonemason": {
"name": "Stonemason",
- "terms": "stonemason,masonry"
+ "terms": "masonry"
},
"craft/sweep": {
"name": "Chimney Sweep",
- "terms": "sweep,chimney sweep"
+ "terms": ""
},
"craft/tailor": {
"name": "Tailor",
- "terms": "tailor,clothes"
+ "terms": "clothes,suit"
},
"craft/tiler": {
"name": "Tiler",
- "terms": "tiler"
+ "terms": ""
},
"craft/tinsmith": {
"name": "Tinsmith",
- "terms": "tinsmith"
+ "terms": ""
},
"craft/upholsterer": {
"name": "Upholsterer",
- "terms": "upholsterer"
+ "terms": ""
},
"craft/watchmaker": {
"name": "Watchmaker",
- "terms": "watch,watchmaker,watch repair"
+ "terms": ""
},
"craft/window_construction": {
"name": "Window Construction",
- "terms": "window,window maker,window construction"
+ "terms": "glass"
+ },
+ "craft/winery": {
+ "name": "Winery",
+ "terms": ""
},
"embankment": {
"name": "Embankment",
},
"emergency/ambulance_station": {
"name": "Ambulance Station",
- "terms": ""
+ "terms": "EMS,EMT,rescue"
},
"emergency/fire_hydrant": {
"name": "Fire Hydrant",
},
"footway/crosswalk": {
"name": "Crosswalk",
- "terms": "crosswalk,zebra crossing"
+ "terms": "zebra crossing"
},
"footway/sidewalk": {
"name": "Sidewalk",
},
"golf/green": {
"name": "Putting Green",
- "terms": "putting green"
+ "terms": ""
},
"golf/hole": {
"name": "Golf Hole",
},
"highway/bridleway": {
"name": "Bridle Path",
- "terms": "bridleway,equestrian trail,horse riding path,bridle road,horse trail"
+ "terms": "bridleway,equestrian,horse"
},
"highway/bus_stop": {
"name": "Bus Stop",
},
"highway/crosswalk": {
"name": "Crosswalk",
- "terms": "crosswalk,zebra crossing"
+ "terms": "zebra crossing"
},
"highway/cycleway": {
"name": "Cycle Path",
- "terms": ""
+ "terms": "bike"
},
"highway/footway": {
"name": "Foot Path",
- "terms": "beaten path,boulevard,clearing,course,cut*,drag*,footpath,highway,lane,line,orbit,passage,pathway,rail,rails,road,roadway,route,street,thoroughfare,trackway,trail,trajectory,walk"
+ "terms": "hike,hiking,trackway,trail,walk"
},
"highway/living_street": {
"name": "Living Street",
},
"highway/path": {
"name": "Path",
- "terms": ""
+ "terms": "hike,hiking,trackway,trail,walk"
},
"highway/pedestrian": {
"name": "Pedestrian",
"name": "Primary Link",
"terms": "ramp,on ramp,off ramp"
},
+ "highway/raceway": {
+ "name": "Motor Raceway",
+ "terms": "auto*,race*,nascar"
+ },
"highway/residential": {
"name": "Residential Road",
"terms": ""
},
"highway/rest_area": {
"name": "Rest Area",
- "terms": "rest stop,turnout,lay-by"
+ "terms": "rest stop"
},
"highway/road": {
"name": "Unknown Road",
},
"highway/track": {
"name": "Track",
- "terms": ""
+ "terms": "woods road,fire road"
},
"highway/traffic_signals": {
"name": "Traffic Signals",
},
"highway/turning_circle": {
"name": "Turning Circle",
- "terms": ""
+ "terms": "cul-de-sac"
},
"highway/unclassified": {
"name": "Unclassified Road",
"name": "Wayside Shrine",
"terms": ""
},
+ "junction": {
+ "name": "Junction",
+ "terms": ""
+ },
"landuse": {
"name": "Landuse",
"terms": ""
"terms": ""
},
"landuse/commercial": {
- "name": "Commercial",
+ "name": "Commercial Area",
"terms": ""
},
"landuse/construction": {
"terms": ""
},
"landuse/farm": {
- "name": "Farm",
+ "name": "Farmland",
"terms": ""
},
"landuse/farmland": {
},
"landuse/forest": {
"name": "Forest",
+ "terms": "tree"
+ },
+ "landuse/garages": {
+ "name": "Garages",
"terms": ""
},
"landuse/grass": {
"terms": ""
},
"landuse/industrial": {
- "name": "Industrial",
+ "name": "Industrial Area",
"terms": ""
},
"landuse/landfill": {
"terms": ""
},
"landuse/military": {
- "name": "Military",
+ "name": "Military Area",
"terms": ""
},
"landuse/orchard": {
"terms": ""
},
"landuse/residential": {
- "name": "Residential",
+ "name": "Residential Area",
"terms": ""
},
"landuse/retail": {
- "name": "Retail",
+ "name": "Retail Area",
"terms": ""
},
"landuse/vineyard": {
},
"leisure/marina": {
"name": "Marina",
- "terms": ""
+ "terms": "boat"
+ },
+ "leisure/nature_reserve": {
+ "name": "Nature Reserve",
+ "terms": "protected,wildlife"
},
"leisure/park": {
"name": "Park",
},
"leisure/picnic_table": {
"name": "Picnic Table",
- "terms": "bench,table"
+ "terms": "bench"
},
"leisure/pitch": {
"name": "Sport Pitch",
- "terms": ""
+ "terms": "field"
},
"leisure/pitch/american_football": {
"name": "American Football Field",
"name": "Playground",
"terms": "jungle gym,play area"
},
+ "leisure/running_track": {
+ "name": "Running Track",
+ "terms": ""
+ },
"leisure/slipway": {
"name": "Slipway",
- "terms": ""
+ "terms": "boat launch,boat ramp"
},
"leisure/sports_center": {
"name": "Sports Center / Gym",
"terms": ""
},
"leisure/track": {
- "name": "Race Track",
+ "name": "Racetrack (non-Motorsport)",
"terms": ""
},
"line": {
},
"man_made/wastewater_plant": {
"name": "Wastewater Plant",
- "terms": "sewage works,sewage treatment plant,water treatment plant,reclamation plant"
+ "terms": "sewage*,water treatment plant,reclamation plant"
},
"man_made/water_tower": {
"name": "Water Tower",
"terms": ""
},
"man_made/water_well": {
- "name": "Water well",
+ "name": "Water Well",
"terms": ""
},
"man_made/water_works": {
"name": "Beach",
"terms": ""
},
+ "natural/cave_entrance": {
+ "name": "Cave Entrance",
+ "terms": ""
+ },
"natural/cliff": {
"name": "Cliff",
"terms": ""
},
"natural/wood": {
"name": "Wood",
- "terms": ""
+ "terms": "tree"
},
"office": {
"name": "Office",
},
"office/employment_agency": {
"name": "Employment Agency",
- "terms": ""
+ "terms": "job"
},
"office/estate_agent": {
"name": "Real Estate Office",
"name": "Substation",
"terms": ""
},
+ "power/substation": {
+ "name": "Substation",
+ "terms": ""
+ },
"power/tower": {
"name": "High-Voltage Tower",
"terms": ""
},
"shop/alcohol": {
"name": "Liquor Store",
- "terms": "alcohol"
+ "terms": "alcohol,beer,booze,wine"
+ },
+ "shop/anime": {
+ "name": "Anime Shop",
+ "terms": ""
+ },
+ "shop/antiques": {
+ "name": "Antiques Shop",
+ "terms": ""
},
"shop/art": {
- "name": "Art Shop",
- "terms": "art store,art gallery"
+ "name": "Art Gallery",
+ "terms": ""
+ },
+ "shop/baby_goods": {
+ "name": "Baby Goods Store",
+ "terms": ""
+ },
+ "shop/bag": {
+ "name": "Bag/Luggage Store",
+ "terms": "handbag,purse"
},
"shop/bakery": {
"name": "Bakery",
"terms": ""
},
+ "shop/bathroom_furnishing": {
+ "name": "Bathroom Furnishing Store",
+ "terms": ""
+ },
"shop/beauty": {
"name": "Beauty Shop",
"terms": "nail spa,spa,salon,tanning"
},
+ "shop/bed": {
+ "name": "Bedding/Mattress Store",
+ "terms": ""
+ },
"shop/beverages": {
"name": "Beverage Store",
"terms": ""
"terms": ""
},
"shop/books": {
- "name": "Bookstore",
+ "name": "Book Store",
"terms": ""
},
"shop/boutique": {
},
"shop/butcher": {
"name": "Butcher",
+ "terms": "meat"
+ },
+ "shop/candles": {
+ "name": "Candle Shop",
"terms": ""
},
"shop/car": {
"name": "Car Dealership",
- "terms": ""
+ "terms": "auto"
},
"shop/car_parts": {
"name": "Car Parts Store",
- "terms": ""
+ "terms": "auto"
},
"shop/car_repair": {
"name": "Car Repair Shop",
+ "terms": "auto"
+ },
+ "shop/carpet": {
+ "name": "Carpet Store",
+ "terms": "rug"
+ },
+ "shop/cheese": {
+ "name": "Cheese Store",
"terms": ""
},
"shop/chemist": {
"name": "Chemist",
"terms": ""
},
+ "shop/chocolate": {
+ "name": "Chocolate Store",
+ "terms": ""
+ },
"shop/clothes": {
"name": "Clothing Store",
"terms": ""
"terms": ""
},
"shop/confectionery": {
- "name": "Confectionery",
+ "name": "Candy Store",
"terms": ""
},
"shop/convenience": {
"name": "Convenience Store",
"terms": ""
},
+ "shop/copyshop": {
+ "name": "Copy Store",
+ "terms": ""
+ },
+ "shop/cosmetics": {
+ "name": "Cosmetics Store",
+ "terms": ""
+ },
+ "shop/craft": {
+ "name": "Arts and Crafts Store",
+ "terms": ""
+ },
+ "shop/curtain": {
+ "name": "Curtain Store",
+ "terms": "drape*,window"
+ },
+ "shop/dairy": {
+ "name": "Dairy Store",
+ "terms": "milk,egg,cheese"
+ },
"shop/deli": {
"name": "Deli",
- "terms": ""
+ "terms": "lunch,meat,sandwich"
},
"shop/department_store": {
"name": "Department Store",
"terms": ""
},
"shop/dry_cleaning": {
- "name": "Dry Cleaners",
+ "name": "Dry Cleaner",
"terms": ""
},
"shop/electronics": {
"name": "Electronics Store",
- "terms": ""
+ "terms": "appliance,audio,computer,tv"
+ },
+ "shop/erotic": {
+ "name": "Erotic Store",
+ "terms": "sex,porn"
+ },
+ "shop/fabric": {
+ "name": "Fabric Store",
+ "terms": "sew"
},
"shop/farm": {
"name": "Produce Stand",
"terms": "farm shop,farm stand"
},
+ "shop/fashion": {
+ "name": "Fashion Store",
+ "terms": ""
+ },
"shop/fishmonger": {
"name": "Fishmonger",
"terms": ""
},
"shop/florist": {
"name": "Florist",
+ "terms": "flower"
+ },
+ "shop/frame": {
+ "name": "Framing Shop",
"terms": ""
},
"shop/funeral_directors": {
"name": "Funeral Home",
- "terms": "undertaker,funeral parlour,funeral parlor,memorial home"
+ "terms": "undertaker,memorial home"
+ },
+ "shop/furnace": {
+ "name": "Furnace Store",
+ "terms": "oven,stove"
},
"shop/furniture": {
"name": "Furniture Store",
- "terms": ""
+ "terms": "chair,sofa,table"
},
"shop/garden_centre": {
"name": "Garden Center",
- "terms": "garden centre"
+ "terms": "landscape,mulch,shrub,tree"
},
"shop/gift": {
"name": "Gift Shop",
},
"shop/greengrocer": {
"name": "Greengrocer",
- "terms": ""
+ "terms": "fruit,vegetable"
},
"shop/hairdresser": {
"name": "Hairdresser",
"name": "Hardware Store",
"terms": ""
},
+ "shop/hearing_aids": {
+ "name": "Hearing Aids Store",
+ "terms": ""
+ },
+ "shop/herbalist": {
+ "name": "Herbalist",
+ "terms": ""
+ },
"shop/hifi": {
"name": "Hifi Store",
+ "terms": "stereo,video"
+ },
+ "shop/houseware": {
+ "name": "Houseware Store",
+ "terms": "home,household"
+ },
+ "shop/interior_decoration": {
+ "name": "Interior Decoration Store",
"terms": ""
},
"shop/jewelry": {
"name": "Jeweler",
- "terms": ""
+ "terms": "diamond,gem,ring"
},
"shop/kiosk": {
- "name": "Kiosk",
+ "name": "News Kiosk",
+ "terms": ""
+ },
+ "shop/kitchen": {
+ "name": "Kitchen Design Store",
"terms": ""
},
"shop/laundry": {
"name": "Laundry",
"terms": ""
},
+ "shop/leather": {
+ "name": "Leather Store",
+ "terms": ""
+ },
"shop/locksmith": {
"name": "Locksmith",
- "terms": "keys"
+ "terms": "key,lockpick"
},
"shop/lottery": {
"name": "Lottery Shop",
"name": "Mall",
"terms": ""
},
+ "shop/massage": {
+ "name": "Massage Shop",
+ "terms": ""
+ },
+ "shop/medical_supply": {
+ "name": "Medical Supply Store",
+ "terms": ""
+ },
"shop/mobile_phone": {
"name": "Mobile Phone Store",
"terms": ""
},
+ "shop/money_lender": {
+ "name": "Money Lender",
+ "terms": ""
+ },
"shop/motorcycle": {
"name": "Motorcycle Dealership",
"terms": ""
},
"shop/music": {
"name": "Music Store",
+ "terms": "CD,vinyl"
+ },
+ "shop/musical_instrument": {
+ "name": "Musical Instrument Store",
"terms": ""
},
"shop/newsagent": {
- "name": "Newsagent",
+ "name": "Newspaper/Magazine Shop",
"terms": ""
},
"shop/optician": {
"name": "Optician",
+ "terms": "eye,glasses"
+ },
+ "shop/organic": {
+ "name": "Organic Goods Store",
"terms": ""
},
"shop/outdoor": {
- "name": "Outdoor Store",
+ "name": "Outdoors Store",
+ "terms": "camping,climbing,hiking"
+ },
+ "shop/paint": {
+ "name": "Paint Store",
+ "terms": ""
+ },
+ "shop/pawnbroker": {
+ "name": "Pawn Shop",
"terms": ""
},
"shop/pet": {
"name": "Pet Store",
- "terms": ""
+ "terms": "cat,dog,fish"
},
"shop/photo": {
"name": "Photography Store",
+ "terms": "camera,film"
+ },
+ "shop/pyrotechnics": {
+ "name": "Fireworks Store",
+ "terms": ""
+ },
+ "shop/radiotechnics": {
+ "name": "Radio/Electronic Component Store",
+ "terms": ""
+ },
+ "shop/religion": {
+ "name": "Religious Store",
+ "terms": ""
+ },
+ "shop/scuba_diving": {
+ "name": "Scuba Diving Shop",
"terms": ""
},
"shop/seafood": {
"name": "Seafood Shop",
"terms": "fishmonger"
},
+ "shop/second_hand": {
+ "name": "Consignment/Thrift Store",
+ "terms": "secondhand,second hand,resale,thrift,used"
+ },
"shop/shoes": {
"name": "Shoe Store",
"terms": ""
},
"shop/stationery": {
"name": "Stationery Store",
- "terms": ""
+ "terms": "card,paper"
},
"shop/supermarket": {
"name": "Supermarket",
- "terms": "bazaar,boutique,chain,co-op,cut-rate store,discount store,five-and-dime,flea market,galleria,grocery store,mall,mart,outlet,outlet store,shop,shopping center,shopping centre,shopping plaza,stand,store,supermarket,thrift shop"
+ "terms": "grocery,store,shop"
},
"shop/tailor": {
"name": "Tailor",
- "terms": "tailor,clothes"
+ "terms": "clothes,suit"
+ },
+ "shop/tattoo": {
+ "name": "Tattoo Parlor",
+ "terms": ""
+ },
+ "shop/tea": {
+ "name": "Tea Store",
+ "terms": ""
+ },
+ "shop/ticket": {
+ "name": "Ticket Seller",
+ "terms": ""
+ },
+ "shop/tobacco": {
+ "name": "Tobacco Shop",
+ "terms": ""
},
"shop/toys": {
"name": "Toy Store",
"name": "Vacant Shop",
"terms": ""
},
+ "shop/vacuum_cleaner": {
+ "name": "Vacuum Cleaner Store",
+ "terms": ""
+ },
"shop/variety_store": {
"name": "Variety Store",
"terms": ""
},
"shop/video": {
"name": "Video Store",
+ "terms": "DVD"
+ },
+ "shop/video_games": {
+ "name": "Video Game Store",
+ "terms": ""
+ },
+ "shop/water_sports": {
+ "name": "Watersport/Swim Shop",
+ "terms": ""
+ },
+ "shop/weapons": {
+ "name": "Weapon Shop",
+ "terms": "ammo,gun,knife,knives"
+ },
+ "shop/window_blind": {
+ "name": "Window Blind Store",
"terms": ""
},
"shop/wine": {
"name": "Wine Shop",
- "terms": "winery"
+ "terms": ""
},
"tourism": {
"name": "Tourism",
},
"tourism/camp_site": {
"name": "Camp Site",
- "terms": "camping"
+ "terms": ""
},
"tourism/caravan_site": {
"name": "RV Park",
},
"tourism/guest_house": {
"name": "Guest House",
- "terms": "B&B,Bed & Breakfast,Bed and Breakfast"
+ "terms": "B&B,Bed and Breakfast"
},
"tourism/hostel": {
"name": "Hostel",
},
"tourism/museum": {
"name": "Museum",
- "terms": "exhibition,exhibits archive,foundation,gallery,hall,institution,library,menagerie,repository,salon,storehouse,treasury,vault"
+ "terms": "exhibition,foundation,gallery,hall,institution"
},
"tourism/picnic_site": {
"name": "Picnic Site",
- "terms": ""
+ "terms": "camp"
},
"tourism/theme_park": {
"name": "Theme Park",
"name": "Zoo",
"terms": ""
},
+ "traffic_calming/bump": {
+ "name": "Speed Bump",
+ "terms": "speed hump"
+ },
+ "traffic_calming/hump": {
+ "name": "Speed Hump",
+ "terms": "speed bump"
+ },
+ "traffic_calming/rumble_strip": {
+ "name": "Rumble Strip",
+ "terms": "sleeper lines,audible lines,growlers"
+ },
+ "traffic_calming/table": {
+ "name": "Raised Pedestrian Crossing",
+ "terms": "speed table,flat top hump"
+ },
"type/boundary": {
"name": "Boundary",
"terms": ""
"postcode"
]
]
+ },
+ {
+ "countryCodes": [
+ "us"
+ ],
+ "format": [
+ [
+ "housenumber",
+ "street"
+ ],
+ [
+ "city",
+ "state",
+ "postcode"
+ ]
+ ]
+ },
+ {
+ "countryCodes": [
+ "ca"
+ ],
+ "format": [
+ [
+ "housenumber",
+ "street"
+ ],
+ [
+ "city",
+ "province",
+ "postcode"
+ ]
+ ]
}
]
};
\ No newline at end of file