// 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]);
- }
- }
- },
-
- _contains: function(a, b) {
- return a[0] <= b[0] &&
- a[1] <= b[1] &&
- b[2] <= a[2] &&
- b[3] <= a[3];
- },
-
- _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]));
- },
+ siblings = path[i - 1].children;
+ siblings.splice(siblings.indexOf(path[i]), 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]);
+ } else this.clear();
- 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;
return d3.rebind(context, dispatch, 'on');
};
-iD.version = '1.5.3';
+iD.version = '1.6.2';
(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, {
extend: function(obj) {
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
// `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: [
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;
}
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;
}
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);
"atm": true,
"bbq": true,
"bench": true,
+ "bureau_de_change": true,
"clock": true,
"drinking_water": true,
"parking_entrance": true,
"landuse": {},
"leisure": {
"picnic_table": true,
+ "track": true,
"slipway": true
},
"man_made": {
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) {
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) {
overlays.exit()
.remove();
+
+ 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());
-
- if (!context.map().extent().intersects(gpx)) {
- context.map().extent(gpx);
+ 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 (!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') ||
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;
});
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 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://mapillary-read-api.herokuapp.com/v1/s/search?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(),
var patternKeys = ['landuse', 'natural', 'amenity'];
+ var clipped = ['residential', 'commercial', 'retail', 'industrial'];
+
+ function clip(entity) {
+ return clipped.indexOf(entity.tags.landuse) !== -1;
+ }
+
function setPattern(d) {
for (var i = 0; i < patternKeys.length; i++) {
if (patterns.hasOwnProperty(d.tags[patternKeys[i]])) {
});
var data = {
+ clip: areas.filter(clip),
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' && clip(entity)) {
+ this.setAttribute('clip-path', 'url(#' + entity.id + '-clippath)');
+ }
+
if (layer === 'fill') {
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');
};
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']);
update();
}
+ function clickMapillary() {
+ context.background().toggleMapillaryLayer();
+ update();
+ }
+
function drawList(layerList, type, change, filter) {
var sources = context.background()
.sources(context.map().extent())
.property('disabled', !hasGpx)
.property('checked', showsGpx);
+ var showsMapillary = context.background().showsMapillaryLayer();
+
+ mapillaryLayerItem
+ .classed('active', showsMapillary)
+ .selectAll('input')
+ .property('checked', showsMapillary);
+
selectLayer();
var source = context.background().baseLayerSource();
var overlayList = content.append('ul')
.attr('class', 'layer-list');
+ var mapillaryLayerItem = overlayList.append('li');
+
+ 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'));
+
var gpxLayerItem = content.append('ul')
.style('display', iD.detect().filedrop ? 'block' : 'none')
.attr('class', 'layer-list')
var keybinding = d3.keybinding('background');
keybinding.on(key, toggle);
+ keybinding.on('m', function() {
+ context.enter(iD.modes.SelectImage(context));
+ });
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')
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;
}
.text('0');
var keybinding = d3.keybinding('undo-redo')
- .on(key, save);
+ .on(key, save, true);
d3.select(document)
.call(keybinding);
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
};
} 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));
}
"terms_text": "geoimage.at",
"id": "geoimage.at"
},
+ {
+ "name": "Geoportal.gov.pl (Orthophotomap)",
+ "type": "tms",
+ "template": "http://wms.misek.pl/geoportal.orto/tms/{zoom}/{x}/{y}",
+ "scaleExtent": [
+ 6,
+ 24
+ ],
+ "polygon": [
+ [
+ [
+ 15.9751041,
+ 54.3709213
+ ],
+ [
+ 16.311164,
+ 54.5561775
+ ],
+ [
+ 17.1391878,
+ 54.7845723
+ ],
+ [
+ 18.3448458,
+ 54.9022727
+ ],
+ [
+ 19.6613689,
+ 54.4737213
+ ],
+ [
+ 20.2815206,
+ 54.4213456
+ ],
+ [
+ 21.4663914,
+ 54.3406369
+ ],
+ [
+ 22.7759855,
+ 54.3769755
+ ],
+ [
+ 22.8625989,
+ 54.4233613
+ ],
+ [
+ 23.2956657,
+ 54.2678633
+ ],
+ [
+ 23.5347186,
+ 54.0955258
+ ],
+ [
+ 23.5208604,
+ 53.9775182
+ ],
+ [
+ 23.7183389,
+ 53.4629603
+ ],
+ [
+ 23.9296755,
+ 53.1856735
+ ],
+ [
+ 23.9296755,
+ 52.6887269
+ ],
+ [
+ 23.732197,
+ 52.6067497
+ ],
+ [
+ 23.5658994,
+ 52.5878101
+ ],
+ [
+ 23.2090523,
+ 52.3302642
+ ],
+ [
+ 23.1951942,
+ 52.2370089
+ ],
+ [
+ 23.5035377,
+ 52.1860596
+ ],
+ [
+ 23.6906226,
+ 52.0030113
+ ],
+ [
+ 23.5970802,
+ 51.739903
+ ],
+ [
+ 23.6629063,
+ 51.3888562
+ ],
+ [
+ 23.9366046,
+ 50.9827781
+ ],
+ [
+ 24.1687284,
+ 50.8604752
+ ],
+ [
+ 24.0197534,
+ 50.8035823
+ ],
+ [
+ 24.1098313,
+ 50.6610467
+ ],
+ [
+ 24.0578633,
+ 50.4188439
+ ],
+ [
+ 23.6178674,
+ 50.3083403
+ ],
+ [
+ 22.6824431,
+ 49.5163532
+ ],
+ [
+ 22.7378756,
+ 49.2094935
+ ],
+ [
+ 22.9041733,
+ 49.0780441
+ ],
+ [
+ 22.8625989,
+ 48.9940062
+ ],
+ [
+ 22.6096878,
+ 49.0371785
+ ],
+ [
+ 22.0761495,
+ 49.2004392
+ ],
+ [
+ 21.8474902,
+ 49.3721872
+ ],
+ [
+ 21.3763135,
+ 49.4488281
+ ],
+ [
+ 21.1026153,
+ 49.3721872
+ ],
+ [
+ 20.9120659,
+ 49.3022043
+ ],
+ [
+ 20.6452967,
+ 49.3902311
+ ],
+ [
+ 20.1845136,
+ 49.3315641
+ ],
+ [
+ 20.1186875,
+ 49.2004392
+ ],
+ [
+ 19.9419962,
+ 49.1302123
+ ],
+ [
+ 19.765305,
+ 49.2117568
+ ],
+ [
+ 19.7479823,
+ 49.3992506
+ ],
+ [
+ 19.6024718,
+ 49.4150307
+ ],
+ [
+ 19.5089294,
+ 49.5815389
+ ],
+ [
+ 19.4292451,
+ 49.5905232
+ ],
+ [
+ 19.2317666,
+ 49.4150307
+ ],
+ [
+ 18.9961783,
+ 49.387976
+ ],
+ [
+ 18.9338167,
+ 49.4916048
+ ],
+ [
+ 18.8368097,
+ 49.4938552
+ ],
+ [
+ 18.8021643,
+ 49.6623381
+ ],
+ [
+ 18.6427958,
+ 49.7094091
+ ],
+ [
+ 18.521537,
+ 49.8994693
+ ],
+ [
+ 18.0815412,
+ 50.0109209
+ ],
+ [
+ 17.8875272,
+ 49.9886512
+ ],
+ [
+ 17.7385522,
+ 50.0687739
+ ],
+ [
+ 17.6068999,
+ 50.1709584
+ ],
+ [
+ 17.7454813,
+ 50.2153184
+ ],
+ [
+ 17.710836,
+ 50.3017019
+ ],
+ [
+ 17.4163505,
+ 50.2640668
+ ],
+ [
+ 16.9486384,
+ 50.4453265
+ ],
+ [
+ 16.8932058,
+ 50.4033889
+ ],
+ [
+ 17.0006064,
+ 50.3105529
+ ],
+ [
+ 17.017929,
+ 50.2241854
+ ],
+ [
+ 16.8135215,
+ 50.186489
+ ],
+ [
+ 16.6402948,
+ 50.0976742
+ ],
+ [
+ 16.4324227,
+ 50.2862087
+ ],
+ [
+ 16.1968344,
+ 50.4276731
+ ],
+ [
+ 16.4220291,
+ 50.5885165
+ ],
+ [
+ 16.3388803,
+ 50.6632429
+ ],
+ [
+ 16.2280152,
+ 50.6368824
+ ],
+ [
+ 16.0547884,
+ 50.6127057
+ ],
+ [
+ 15.5732181,
+ 50.7641544
+ ],
+ [
+ 15.2683391,
+ 50.8976368
+ ],
+ [
+ 15.2440873,
+ 50.980597
+ ],
+ [
+ 15.0292862,
+ 51.0133036
+ ],
+ [
+ 15.0015699,
+ 50.8582883
+ ],
+ [
+ 14.8110205,
+ 50.8735944
+ ],
+ [
+ 14.956531,
+ 51.0721176
+ ],
+ [
+ 15.0188926,
+ 51.2914636
+ ],
+ [
+ 14.9392083,
+ 51.4601459
+ ],
+ [
+ 14.7209426,
+ 51.5571799
+ ],
+ [
+ 14.7521234,
+ 51.6260562
+ ],
+ [
+ 14.5996839,
+ 51.8427626
+ ],
+ [
+ 14.70362,
+ 52.0733396
+ ],
+ [
+ 14.5581095,
+ 52.2497371
+ ],
+ [
+ 14.5165351,
+ 52.425436
+ ],
+ [
+ 14.6031485,
+ 52.5878101
+ ],
+ [
+ 14.1146491,
+ 52.8208272
+ ],
+ [
+ 14.152759,
+ 52.9733951
+ ],
+ [
+ 14.3502374,
+ 53.0734212
+ ],
+ [
+ 14.4229927,
+ 53.2665624
+ ],
+ [
+ 14.1977979,
+ 53.8734759
+ ],
+ [
+ 14.2220497,
+ 53.9958517
+ ]
+ ]
+ ],
+ "terms_text": "Copyright © Główny Urząd Geodezji i Kartografii."
+ },
{
"name": "Imagerie Drone (Haiti)",
"type": "tms",
]
]
],
- "id": "kelowna_2012",
- "default": true
+ "id": "kelowna_2012"
},
{
"name": "Kelowna Roads overlay",
{
"name": "Latest southwest British Columbia Landsat",
"type": "tms",
- "description": "Recent lower-resolution landwsat imagery for southwest British Columbia",
+ "description": "Recent lower-resolution landsat imagery for southwest British Columbia",
"template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/landsat_047026/{zoom}/{x}/{y}.png",
"scaleExtent": [
5,
"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",
+ "name": "Luxembourg Inspire Ortho 2010",
"type": "tms",
- "template": "http://geo.nls.uk/mapdata2/bartholomew/great_britain/{zoom}/{x}/{-y}.png",
+ "template": "http://mapproxy.openstreetmap.lu/tiles/ortho2010/EPSG900913/{z}/{x}/{y}.jpeg",
"scaleExtent": [
0,
- 15
+ 20
],
"polygon": [
[
[
- -9,
- 49.8
+ 5.961753,
+ 50.17631
],
[
- -9,
- 61.1
+ 6.026268,
+ 50.18496
],
[
- 1.9,
- 61.1
+ 6.033182,
+ 50.16395
],
[
- 1.9,
- 49.8
+ 6.060695,
+ 50.15536
],
[
- -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.07668,
+ 50.15913
+ ],
[
- -6.4585407,
- 49.9044128
+ 6.078237,
+ 50.17255
],
[
- -6.3872009,
- 49.9841116
+ 6.101762,
+ 50.17199
],
[
- -6.2296827,
- 49.9896159
+ 6.122501,
+ 50.16437
],
[
- -6.2171269,
- 49.8680087
+ 6.120101,
+ 50.15594
],
[
- -6.4551164,
- 49.8591793
- ]
- ],
- [
+ 6.127695,
+ 50.14993
+ ],
[
- -1.4495137,
- 60.8634056
+ 6.113228,
+ 50.13739
],
[
- -0.7167114,
- 60.8545122
+ 6.123691,
+ 50.13719
],
[
- -0.7349744,
- 60.4359756
+ 6.140929,
+ 50.1305
],
[
- -0.6938826,
- 60.4168218
+ 6.135554,
+ 50.11899
],
[
- -0.7258429,
- 60.3942735
+ 6.138082,
+ 50.10263
],
[
- -0.7395401,
- 60.0484714
+ 6.131085,
+ 50.09964
],
[
- -0.9267357,
- 60.0461918
+ 6.135473,
+ 50.09119
],
[
- -0.9381501,
- 59.8266157
+ 6.121939,
+ 50.09059
],
[
- -1.4586452,
- 59.831205
+ 6.126335,
+ 50.07817
],
[
- -1.4455187,
- 60.0535999
+ 6.131858,
+ 50.07348
],
[
- -1.463211,
- 60.0535999
+ 6.121171,
+ 50.064
],
[
- -1.4643524,
- 60.0630002
+ 6.114444,
+ 50.06139
],
[
- -1.5716475,
- 60.0638546
+ 6.115631,
+ 50.05817
],
[
- -1.5693646,
- 60.1790005
+ 6.123611,
+ 50.06323
],
[
- -1.643558,
- 60.1807033
+ 6.136608,
+ 50.04178
],
[
- -1.643558,
- 60.1892162
+ 6.130343,
+ 50.02975
],
[
- -1.8216221,
- 60.1894999
+ 6.148207,
+ 50.02307
],
[
- -1.8204807,
- 60.3615507
+ 6.13868,
+ 50.01572
],
[
- -1.8415973,
- 60.3697345
+ 6.135938,
+ 50.01485
],
[
- -1.8216221,
- 60.3832755
+ 6.131384,
+ 50.01905
],
[
- -1.8179852,
- 60.5934321
+ 6.130243,
+ 50.01819
],
[
- -1.453168,
- 60.5934321
- ]
- ],
- [
+ 6.139343,
+ 50.01116
+ ],
[
- -4.9089213,
- 54.4242078
+ 6.151702,
+ 50.01058
],
[
- -4.282598,
- 54.4429861
+ 6.145464,
+ 49.99689
],
[
- -4.2535417,
- 54.029769
+ 6.139657,
+ 49.9994
],
[
- -4.8766366,
- 54.0221831
- ]
- ],
- [
+ 6.138524,
+ 49.99829
+ ],
[
- -5.8667408,
- 59.1444603
+ 6.142178,
+ 49.99535
],
[
- -5.7759966,
- 59.1470945
+ 6.150227,
+ 49.99518
],
[
- -5.7720016,
- 59.1014052
+ 6.156247,
+ 49.98867
],
[
- -5.8621751,
- 59.0990605
- ]
- ],
- [
+ 6.173045,
+ 49.98589
+ ],
[
- -1.7065887,
- 59.5703599
+ 6.17348,
+ 49.98344
],
[
- -1.5579165,
- 59.5693481
+ 6.170353,
+ 49.98376
],
[
- -1.5564897,
- 59.4965695
+ 6.165487,
+ 49.97115
],
[
- -1.7054472,
- 59.4975834
- ]
- ],
- [
+ 6.171512,
+ 49.96298
+ ],
[
- -7.6865827,
- 58.2940975
+ 6.176298,
+ 49.962
],
[
- -7.5330594,
- 58.3006957
+ 6.179954,
+ 49.95386
],
[
- -7.5256401,
- 58.2646905
+ 6.183393,
+ 49.9548
],
[
- -7.6797341,
- 58.2577853
- ]
- ],
- [
+ 6.179829,
+ 49.96307
+ ],
[
- -4.5338281,
- 59.0359871
+ 6.183312,
+ 49.9686
],
[
- -4.481322,
- 59.0371616
+ 6.192774,
+ 49.97158
],
[
- -4.4796099,
- 59.0186583
+ 6.199783,
+ 49.95352
],
[
- -4.5332574,
- 59.0180707
- ]
- ],
- [
+ 6.207066,
+ 49.95672
+ ],
[
- -8.6710698,
- 57.8769896
+ 6.212689,
+ 49.9514
],
[
- -8.4673234,
- 57.8897332
+ 6.225023,
+ 49.95039
],
[
- -8.4467775,
- 57.7907
+ 6.22044,
+ 49.94369
],
[
- -8.6510947,
- 57.7779213
- ]
- ],
- [
+ 6.228241,
+ 49.93726
+ ],
[
- -5.2395519,
- 50.3530581
+ 6.22635,
+ 49.92766
],
[
- -5.7920073,
- 50.3384899
+ 6.219133,
+ 49.92354
],
[
- -5.760047,
- 49.9317027
+ 6.229862,
+ 49.92125
],
[
- -4.6551363,
- 49.9581461
+ 6.236032,
+ 49.91355
],
[
- -4.677965,
- 50.2860073
+ 6.231867,
+ 49.91064
],
[
- -4.244219,
- 50.2801723
+ 6.227694,
+ 49.91062
],
[
- -4.2487848,
- 50.2042525
+ 6.232286,
+ 49.9072
],
[
- -3.3812929,
- 50.2042525
+ 6.23381,
+ 49.90028
],
[
- -3.4223846,
- 50.5188201
+ 6.246919,
+ 49.89535
],
[
- -3.1164796,
- 50.5246258
+ 6.257809,
+ 49.88724
],
[
- -3.1210453,
- 50.6579592
+ 6.263008,
+ 49.88101
],
[
- -2.6736357,
- 50.6619495
+ 6.276455,
+ 49.87725
],
[
- -2.5953453,
- 50.6394325
+ 6.281126,
+ 49.87957
],
[
- -2.5905026,
- 50.5728419
+ 6.291661,
+ 49.87548
],
[
- -2.4791203,
- 50.5733545
+ 6.297699,
+ 49.86673
],
[
- -2.4758919,
- 50.5066704
+ 6.309889,
+ 49.87107
],
[
- -2.3967943,
- 50.5056438
+ 6.315324,
+ 49.8673
],
[
- -2.401637,
- 50.5723293
+ 6.314651,
+ 49.86057
],
[
- -1.0400296,
- 50.5718167
+ 6.323611,
+ 49.85188
],
[
- -1.0335726,
- 50.7059289
+ 6.321577,
+ 49.8409
],
[
- -0.549302,
- 50.7038843
+ 6.327406,
+ 49.83673
],
[
- -0.5460736,
- 50.7886618
+ 6.336561,
+ 49.83998
],
[
- -0.0924734,
- 50.7856002
+ 6.339366,
+ 49.8507
],
[
- -0.0876307,
- 50.7181949
+ 6.364651,
+ 49.85164
],
[
- 0.4789659,
- 50.7120623
+ 6.402203,
+ 49.82098
],
[
- 0.487037,
- 50.8182467
+ 6.426434,
+ 49.81629
],
[
- 0.9761503,
- 50.8049868
+ 6.428071,
+ 49.81186
],
[
- 0.9922927,
- 51.0126311
+ 6.43097,
+ 49.81129
],
[
- 1.4491213,
- 51.0004424
+ 6.441608,
+ 49.81547
],
[
- 1.4781775,
- 51.4090372
+ 6.443442,
+ 49.81233
],
[
- 1.0229632,
- 51.4271576
+ 6.45366,
+ 49.81275
],
[
- 1.035877,
- 51.7640881
+ 6.464538,
+ 49.81975
],
[
- 1.6105448,
- 51.7500992
+ 6.47057,
+ 49.82385
],
[
- 1.646058,
- 52.1560003
+ 6.496805,
+ 49.81277
],
[
- 1.7267698,
- 52.1540195
+ 6.50669,
+ 49.80993
],
[
- 1.749369,
- 52.4481811
+ 6.511554,
+ 49.80238
],
[
- 1.7870672,
- 52.4811624
+ 6.51485,
+ 49.80513
],
[
- 1.759102,
- 52.522505
+ 6.519604,
+ 49.81446
],
[
- 1.7933451,
- 52.9602749
+ 6.529808,
+ 49.81048
],
[
- 0.3798147,
- 52.9958468
+ 6.532249,
+ 49.80686
],
[
- 0.3895238,
- 53.2511239
+ 6.530829,
+ 49.80116
],
[
- 0.3478614,
- 53.2511239
+ 6.506225,
+ 49.78899
],
[
- 0.3238912,
- 53.282186
+ 6.519171,
+ 49.78344
],
[
- 0.3461492,
- 53.6538501
+ 6.511055,
+ 49.77422
],
[
- 0.128487,
- 53.6575466
+ 6.520563,
+ 49.76818
],
[
- 0.116582,
- 53.6674703
+ 6.520516,
+ 49.76134
],
[
- 0.1350586,
- 54.0655731
+ 6.503734,
+ 49.75086
],
[
- -0.0609831,
- 54.065908
+ 6.502627,
+ 49.73298
],
[
- -0.0414249,
- 54.4709448
+ 6.507266,
+ 49.72938
],
[
- -0.5662701,
- 54.4771794
+ 6.518092,
+ 49.7242
],
[
- -0.5592078,
- 54.6565127
+ 6.516417,
+ 49.72129
],
[
- -1.1665638,
- 54.6623485
+ 6.511763,
+ 49.72016
],
[
- -1.1637389,
- 54.842611
+ 6.504791,
+ 49.725
],
[
- -1.3316194,
- 54.843909
+ 6.498913,
+ 49.72639
],
[
- -1.3257065,
- 55.2470842
+ 6.495576,
+ 49.72443
],
[
- -1.529453,
- 55.2487108
+ 6.507122,
+ 49.71655
],
[
- -1.524178,
- 55.6540122
+ 6.507884,
+ 49.71215
],
[
- -1.7638798,
- 55.6540122
+ 6.504598,
+ 49.71227
],
[
- -1.7733693,
- 55.9719116
+ 6.427139,
+ 49.66237
],
[
- -2.1607858,
- 55.9682981
+ 6.439899,
+ 49.66025
],
[
- -2.1543289,
- 56.0621387
+ 6.442511,
+ 49.65591
],
[
- -2.4578051,
- 56.0585337
+ 6.421781,
+ 49.61809
],
[
- -2.4190635,
- 56.641717
+ 6.398978,
+ 49.60094
],
[
- -2.0962164,
- 56.641717
+ 6.379408,
+ 49.59526
],
[
- -2.0833025,
- 57.0021322
+ 6.375507,
+ 49.58809
],
[
- -1.9283359,
- 57.0126802
+ 6.384426,
+ 49.5801
],
[
- -1.9180966,
- 57.3590895
+ 6.381188,
+ 49.57509
],
[
- -1.7502161,
- 57.3625721
+ 6.369093,
+ 49.5783
],
[
- -1.7695869,
- 57.7608634
+ 6.357913,
+ 49.57166
],
[
- -3.6937554,
- 57.7574187
+ 6.384902,
+ 49.55817
],
[
- -3.7066693,
- 57.9806386
+ 6.380095,
+ 49.54856
],
[
- -3.5969013,
- 57.9772149
+ 6.358555,
+ 49.53296
],
[
- -3.6033582,
- 58.1207277
+ 6.359322,
+ 49.52481
],
[
- -3.0222335,
- 58.1309566
+ 6.370763,
+ 49.50545
],
[
- -3.0286905,
- 58.5410788
+ 6.370562,
+ 49.45732
],
[
- -2.8478961,
- 58.530968
+ 6.333403,
+ 49.46493
],
[
- -2.86081,
- 58.8430508
+ 6.321894,
+ 49.47244
],
[
- -2.679624,
- 58.8414991
+ 6.295034,
+ 49.47928
],
[
- -2.6841897,
- 58.885175
+ 6.287889,
+ 49.48379
],
[
- -2.6339665,
- 58.9052239
+ 6.271912,
+ 49.49995
],
[
- -2.679624,
- 58.9335083
+ 6.241327,
+ 49.50693
],
[
- -2.6887555,
- 59.0229231
+ 6.196692,
+ 49.50331
],
[
- -2.3668703,
- 59.0229231
+ 6.173373,
+ 49.50577
],
[
- -2.3702946,
- 59.2652861
+ 6.160858,
+ 49.50085
],
[
- -2.3429001,
- 59.2821989
+ 6.167099,
+ 49.49006
],
[
- -2.3714361,
- 59.2996861
+ 6.140179,
+ 49.48525
],
[
- -2.3737189,
- 59.3707083
+ 6.129367,
+ 49.48803
],
[
- -2.3429001,
- 59.385825
+ 6.127247,
+ 49.47081
],
[
- -2.3725775,
- 59.400354
+ 6.101403,
+ 49.46726
],
[
- -2.3714361,
- 59.4259098
+ 6.104826,
+ 49.45076
],
[
- -3.0734196,
- 59.4230067
+ 6.081667,
+ 49.45417
],
[
- -3.0711368,
- 59.3433649
+ 6.077222,
+ 49.46139
],
[
- -3.103097,
- 59.3311405
+ 6.059167,
+ 49.46306
],
[
- -3.0745611,
- 59.3136695
+ 6.052222,
+ 49.46028
],
[
- -3.0722782,
- 59.232603
+ 6.044213,
+ 49.44553
],
[
- -3.3850319,
- 59.1484167
+ 6.025294,
+ 49.44703
],
[
- -3.3747589,
- 58.9352753
+ 6.021545,
+ 49.45127
],
[
- -3.5653789,
- 58.9323303
+ 6.01574,
+ 49.44885
],
[
- -3.554829,
- 58.69759
+ 5.994123,
+ 49.45301
],
[
- -5.2808579,
- 58.6667732
+ 5.976569,
+ 49.44885
],
[
- -5.2534159,
- 58.3514125
+ 5.977725,
+ 49.45955
],
[
- -5.5068508,
- 58.3437887
+ 5.972317,
+ 49.46087
],
[
- -5.4761804,
- 58.0323557
+ 5.968912,
+ 49.48202
],
[
- -5.8974958,
- 58.0212436
+ 5.9616,
+ 49.49026
],
[
- -5.8522972,
- 57.6171758
+ 5.915781,
+ 49.49835
],
[
- -6.1396311,
- 57.6137174
+ 5.890334,
+ 49.4948
],
[
- -6.1541592,
- 57.7423183
+ 5.863321,
+ 49.50006
],
[
- -6.2913692,
- 57.7380102
+ 5.84897,
+ 49.50826
],
[
- -6.3365678,
- 58.1398784
+ 5.84828,
+ 49.51397
],
[
- -6.1121891,
- 58.1466944
+ 5.83641,
+ 49.51817
],
[
- -6.1473778,
- 58.5106285
+ 5.831868,
+ 49.52639
],
[
- -6.2934817,
- 58.5416182
+ 5.84308,
+ 49.53081
],
[
- -6.8413713,
- 58.2977321
+ 5.835622,
+ 49.54114
],
[
- -7.0057382,
- 58.2929331
+ 5.816251,
+ 49.53325
],
[
- -7.1016189,
- 58.2064403
+ 5.805201,
+ 49.54272
],
[
- -7.2573132,
- 58.1793148
+ 5.859432,
+ 49.57158
],
[
- -7.2531092,
- 58.1004928
+ 5.868663,
+ 49.587
],
[
- -7.4070698,
- 58.0905566
+ 5.862888,
+ 49.58525
],
[
- -7.391347,
- 57.7911354
+ 5.851102,
+ 49.58379
],
[
- -7.790991,
- 57.7733151
+ 5.847116,
+ 49.58961
],
[
- -7.7624215,
- 57.5444165
+ 5.845652,
+ 49.5981
],
[
- -7.698501,
- 57.1453194
+ 5.869401,
+ 49.6106
],
[
- -7.7943817,
- 57.1304547
+ 5.881819,
+ 49.63815
],
[
- -7.716764,
- 56.7368628
+ 5.899978,
+ 49.63907
],
[
- -7.0122067,
- 56.7654359
+ 5.899339,
+ 49.66239
],
[
- -6.979922,
- 56.5453858
+ 5.856561,
+ 49.67628
],
[
- -7.0638622,
- 56.5453858
+ 5.856283,
+ 49.68211
],
[
- -7.0444914,
- 56.3562587
+ 5.875703,
+ 49.71118
],
[
- -6.500676,
- 56.3812917
+ 5.864811,
+ 49.72331
],
[
- -6.4491433,
- 55.9793649
+ 5.843249,
+ 49.71822
],
[
- -6.563287,
- 55.9691456
+ 5.82191,
+ 49.72128
],
[
- -6.5393742,
- 55.7030135
+ 5.824894,
+ 49.73767
],
[
- -6.5595521,
- 55.6907321
+ 5.820728,
+ 49.74878
],
[
- -6.5345315,
- 55.6761713
+ 5.786264,
+ 49.79079
],
[
- -6.5216176,
- 55.5704434
+ 5.765172,
+ 49.78961
],
[
- -5.8912587,
- 55.5923416
+ 5.750937,
+ 49.79094
],
[
- -5.8560127,
- 55.2320733
+ 5.741591,
+ 49.82126
],
[
- -5.2293639,
- 55.2515958
+ 5.745814,
+ 49.82435
],
[
- -5.1837064,
- 54.6254139
+ 5.737197,
+ 49.83353
],
[
- -3.6655956,
- 54.6518373
+ 5.740531,
+ 49.84142
],
[
- -3.6496155,
- 54.4320023
+ 5.747012,
+ 49.84048
],
[
- -3.5400375,
- 54.4306744
+ 5.746237,
+ 49.84783
],
[
- -3.530906,
- 54.0290181
+ 5.753989,
+ 49.84878
],
[
- -3.0697656,
- 54.030359
+ 5.740663,
+ 49.85152
],
[
- -3.0675737,
- 53.8221388
+ 5.752288,
+ 49.85922
],
[
- -3.0804876,
- 53.7739911
+ 5.749545,
+ 49.87554
],
[
- -3.0619239,
- 53.7477488
+ 5.775668,
+ 49.87438
],
[
- -3.0611168,
- 53.6737049
+ 5.775053,
+ 49.88057
],
[
- -3.2144691,
- 53.6708361
+ 5.734598,
+ 49.89341
],
[
- -3.2057699,
- 53.4226163
+ 5.733033,
+ 49.90285
],
[
- -3.2799632,
- 53.355224
+ 5.757834,
+ 49.91737
],
[
- -3.2896655,
- 53.3608441
+ 5.760393,
+ 49.93252
],
[
- -3.3327547,
- 53.364931
+ 5.770728,
+ 49.93711
],
[
- -3.3761293,
- 53.3540318
+ 5.768783,
+ 49.94239
],
[
- -4.0888976,
- 53.3433102
+ 5.768802,
+ 49.96104
],
[
- -4.0945474,
- 53.4612036
+ 5.786724,
+ 49.96816
],
[
- -4.697412,
- 53.4448624
+ 5.80524,
+ 49.96677
],
[
- -4.6882805,
- 53.3318598
+ 5.806521,
+ 49.97321
],
[
- -4.7202407,
- 53.2895771
+ 5.831293,
+ 49.97995
],
[
- -4.6837148,
- 53.2486184
+ 5.834616,
+ 49.98656
],
[
- -4.6768661,
- 53.1542644
+ 5.818057,
+ 49.99936
],
[
- -4.8480816,
- 53.1446807
+ 5.815606,
+ 50.01437
],
[
- -4.8178336,
- 52.7440299
+ 5.847923,
+ 50.02809
],
[
- -4.2545751,
- 52.7558939
+ 5.861889,
+ 50.04581
],
[
- -4.228876,
- 52.254876
+ 5.850872,
+ 50.0563
],
[
- -4.2607571,
- 52.2536408
+ 5.857809,
+ 50.07186
],
[
- -4.2724603,
- 52.2432637
+ 5.880997,
+ 50.08069
],
[
- -4.8136263,
- 52.230095
+ 5.891965,
+ 50.12041
],
[
- -4.8079191,
- 52.1138892
+ 5.952856,
+ 50.13384
],
[
- -5.3889104,
- 52.0991668
+ 5.961753,
+ 50.17631
+ ]
+ ]
+ ],
+ "terms_url": "http://www.act.public.lu/fr/actualites/2014/02/ortho2014/",
+ "terms_text": "Administration du Cadastre et de la Topographie",
+ "id": "lu.geoportail.inspire.ortho2010"
+ },
+ {
+ "name": "Luxembourg Inspire Ortho 2013",
+ "type": "tms",
+ "template": "http://mapproxy.openstreetmap.lu/tiles/ortho2013/EPSG900913/{z}/{x}/{y}.jpeg",
+ "scaleExtent": [
+ 0,
+ 20
+ ],
+ "polygon": [
+ [
+ [
+ 5.961753,
+ 50.17631
],
[
- -5.3717888,
- 51.9129667
+ 6.026268,
+ 50.18496
],
[
- -5.4208706,
- 51.9101502
+ 6.033182,
+ 50.16395
],
[
- -5.414022,
- 51.8453218
+ 6.060695,
+ 50.15536
],
[
- -5.3683645,
- 51.8474373
+ 6.07668,
+ 50.15913
],
[
- -5.3466772,
- 51.5595332
+ 6.078237,
+ 50.17255
],
[
- -4.773676,
- 51.5758518
+ 6.101762,
+ 50.17199
],
[
- -4.7656859,
- 51.4885146
+ 6.122501,
+ 50.16437
],
[
- -4.1915432,
- 51.4970427
+ 6.120101,
+ 50.15594
],
[
- -4.1869775,
- 51.4344663
+ 6.127695,
+ 50.14993
],
[
- -3.6151177,
- 51.4444274
+ 6.113228,
+ 50.13739
],
[
- -3.6105519,
- 51.3746543
+ 6.123691,
+ 50.13719
],
[
- -3.1494115,
- 51.3789292
+ 6.140929,
+ 50.1305
],
[
- -3.1494115,
- 51.2919281
+ 6.135554,
+ 50.11899
],
[
- -4.3038735,
- 51.2745907
+ 6.138082,
+ 50.10263
],
[
- -4.2861169,
- 51.0508721
+ 6.131085,
+ 50.09964
],
[
- -4.8543277,
- 51.0366633
+ 6.135473,
+ 50.09119
],
[
- -4.8372201,
- 50.7212787
+ 6.121939,
+ 50.09059
],
[
- -5.2618345,
- 50.7082694
- ]
- ],
- [
+ 6.126335,
+ 50.07817
+ ],
[
- -2.1502671,
- 60.171318
+ 6.131858,
+ 50.07348
],
[
- -2.0030218,
- 60.1696146
+ 6.121171,
+ 50.064
],
[
- -2.0013096,
- 60.0997023
+ 6.114444,
+ 50.06139
],
[
- -2.148555,
- 60.1011247
- ]
- ],
- [
+ 6.115631,
+ 50.05817
+ ],
[
- -6.2086011,
- 59.1163488
+ 6.123611,
+ 50.06323
],
[
- -6.1229934,
- 59.1166418
+ 6.136608,
+ 50.04178
],
[
- -6.121852,
- 59.0714985
+ 6.130343,
+ 50.02975
],
[
- -6.2097426,
- 59.0714985
- ]
- ],
- [
+ 6.148207,
+ 50.02307
+ ],
[
- -4.4159559,
- 59.0889036
+ 6.13868,
+ 50.01572
],
[
- -4.4212022,
- 59.0770848
+ 6.135938,
+ 50.01485
],
[
- -4.3971904,
- 59.0779143
+ 6.131384,
+ 50.01905
],
[
- -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": [
- [
+ 6.130243,
+ 50.01819
+ ],
[
- -4.7157244,
- 54.6796556
+ 6.139343,
+ 50.01116
],
[
- -4.6850662,
- 54.6800268
+ 6.151702,
+ 50.01058
],
[
- -4.6835779,
- 54.6623245
+ 6.145464,
+ 49.99689
],
[
- -4.7148782,
- 54.6615818
- ]
- ],
- [
+ 6.139657,
+ 49.9994
+ ],
[
- -3.7085748,
- 58.3371151
+ 6.138524,
+ 49.99829
],
[
- -3.5405937,
- 58.3380684
+ 6.142178,
+ 49.99535
],
[
- -3.5315137,
- 58.1608002
+ 6.150227,
+ 49.99518
],
[
- -3.3608086,
- 58.1622372
+ 6.156247,
+ 49.98867
],
[
- -3.3653486,
- 58.252173
+ 6.173045,
+ 49.98589
],
[
- -3.1610473,
- 58.2536063
+ 6.17348,
+ 49.98344
],
[
- -3.1610473,
- 58.3261509
+ 6.170353,
+ 49.98376
],
[
- -3.0275704,
- 58.3271045
+ 6.165487,
+ 49.97115
],
[
- -3.0366505,
- 58.6139001
+ 6.171512,
+ 49.96298
],
[
- -3.0021463,
- 58.614373
+ 6.176298,
+ 49.962
],
[
- -3.0030543,
- 58.7036341
+ 6.179954,
+ 49.95386
],
[
- -3.4180129,
- 58.7003322
+ 6.183393,
+ 49.9548
],
[
- -3.4171049,
- 58.6290293
+ 6.179829,
+ 49.96307
],
[
- -3.7240109,
- 58.6266658
+ 6.183312,
+ 49.9686
],
[
- -3.7231029,
- 58.606806
+ 6.192774,
+ 49.97158
],
[
- -4.2361262,
- 58.5992374
+ 6.199783,
+ 49.95352
],
[
- -4.2334022,
- 58.5092347
+ 6.207066,
+ 49.95672
],
[
- -3.88836,
- 58.5144516
+ 6.212689,
+ 49.9514
],
[
- -3.8829119,
- 58.4261327
+ 6.225023,
+ 49.95039
],
[
- -3.7158389,
- 58.4270836
- ]
- ],
- [
+ 6.22044,
+ 49.94369
+ ],
[
- -6.46676,
- 49.9943621
+ 6.228241,
+ 49.93726
],
[
- -6.1889102,
- 50.004868
+ 6.22635,
+ 49.92766
],
[
- -6.1789222,
- 49.8967815
+ 6.219133,
+ 49.92354
],
[
- -6.3169391,
- 49.8915171
+ 6.229862,
+ 49.92125
],
[
- -6.312399,
- 49.8200979
+ 6.236032,
+ 49.91355
],
[
- -6.4504159,
- 49.8159968
- ]
- ],
- [
+ 6.231867,
+ 49.91064
+ ],
[
- -5.6453263,
- 50.2029809
+ 6.227694,
+ 49.91062
],
[
- -5.7801329,
- 50.2014076
+ 6.232286,
+ 49.9072
],
[
- -5.7637888,
- 50.0197267
+ 6.23381,
+ 49.90028
],
[
- -5.3479221,
- 50.0290604
+ 6.246919,
+ 49.89535
],
[
- -5.3388421,
- 49.9414854
+ 6.257809,
+ 49.88724
],
[
- -5.024672,
- 49.9473287
+ 6.263008,
+ 49.88101
],
[
- -5.0355681,
- 50.0383923
+ 6.276455,
+ 49.87725
],
[
- -5.0010639,
- 50.0453901
+ 6.281126,
+ 49.87957
],
[
- -4.9974319,
- 50.1304478
+ 6.291661,
+ 49.87548
],
[
- -4.855783,
- 50.13394
+ 6.297699,
+ 49.86673
],
[
- -4.861231,
- 50.206057
+ 6.309889,
+ 49.87107
],
[
- -4.6546085,
- 50.2140172
+ 6.315324,
+ 49.8673
],
[
- -4.6558926,
- 50.3018616
+ 6.314651,
+ 49.86057
],
[
- -4.5184924,
- 50.3026818
+ 6.323611,
+ 49.85188
],
[
- -4.51464,
- 50.325642
+ 6.321577,
+ 49.8409
],
[
- -4.2488284,
- 50.3264618
+ 6.327406,
+ 49.83673
],
[
- -4.2488284,
- 50.3100631
+ 6.336561,
+ 49.83998
],
[
- -4.10886,
- 50.3141633
+ 6.339366,
+ 49.8507
],
[
- -4.1062917,
- 50.2411267
+ 6.364651,
+ 49.85164
],
[
- -3.9648088,
- 50.2432047
+ 6.402203,
+ 49.82098
],
[
- -3.9640778,
- 50.2254158
+ 6.426434,
+ 49.81629
],
[
- -3.8522287,
- 50.2273626
+ 6.428071,
+ 49.81186
],
[
- -3.8503757,
- 50.1552563
+ 6.43097,
+ 49.81129
],
[
- -3.6921809,
- 50.1572487
+ 6.441608,
+ 49.81547
],
[
- -3.5414602,
- 50.1602198
+ 6.443442,
+ 49.81233
],
[
- -3.5465781,
- 50.3226814
+ 6.45366,
+ 49.81275
],
[
- -3.4068012,
- 50.3241013
+ 6.464538,
+ 49.81975
],
[
- -3.4165761,
- 50.5892711
+ 6.47057,
+ 49.82385
],
[
- -3.2746691,
- 50.5962721
+ 6.496805,
+ 49.81277
],
[
- -3.2749172,
- 50.6106323
+ 6.50669,
+ 49.80993
],
[
- -2.9971742,
- 50.613972
+ 6.511554,
+ 49.80238
],
[
- -2.9896008,
- 50.688537
+ 6.51485,
+ 49.80513
],
[
- -2.7120266,
- 50.690565
+ 6.519604,
+ 49.81446
],
[
- -2.710908,
- 50.6195964
+ 6.529808,
+ 49.81048
],
[
- -2.5695473,
- 50.6157538
+ 6.532249,
+ 49.80686
],
[
- -2.5651019,
- 50.5134083
+ 6.530829,
+ 49.80116
],
[
- -2.4014463,
- 50.513379
+ 6.506225,
+ 49.78899
],
[
- -2.3940583,
- 50.6160348
+ 6.519171,
+ 49.78344
],
[
- -2.2894123,
- 50.6147436
+ 6.511055,
+ 49.77422
],
[
- -2.2876184,
- 50.6008549
+ 6.520563,
+ 49.76818
],
[
- -2.1477855,
- 50.6048506
+ 6.520516,
+ 49.76134
],
[
- -2.1451013,
- 50.5325437
+ 6.503734,
+ 49.75086
],
[
- -1.9335117,
- 50.5347477
+ 6.502627,
+ 49.73298
],
[
- -1.9362139,
- 50.6170445
+ 6.507266,
+ 49.72938
],
[
- -1.8573025,
- 50.6228094
+ 6.518092,
+ 49.7242
],
[
- -1.8554865,
- 50.709139
+ 6.516417,
+ 49.72129
],
[
- -1.6066929,
- 50.709139
+ 6.511763,
+ 49.72016
],
[
- -1.6085089,
- 50.6239615
+ 6.504791,
+ 49.725
],
[
- -1.4450678,
- 50.6228094
+ 6.498913,
+ 49.72639
],
[
- -1.4432518,
- 50.5317039
+ 6.495576,
+ 49.72443
],
[
- -1.1545059,
- 50.5293951
+ 6.507122,
+ 49.71655
],
[
- -1.1472419,
- 50.6170485
+ 6.507884,
+ 49.71215
],
[
- -1.011041,
- 50.6205051
+ 6.504598,
+ 49.71227
],
[
- -1.011041,
- 50.7056889
+ 6.427139,
+ 49.66237
],
[
- -0.704135,
- 50.7045388
+ 6.439899,
+ 49.66025
],
[
- -0.700503,
- 50.7769401
+ 6.442511,
+ 49.65591
],
[
- -0.5860943,
- 50.7723465
+ 6.421781,
+ 49.61809
],
[
- -0.5879103,
- 50.7907181
+ 6.398978,
+ 49.60094
],
[
- -0.0149586,
- 50.7798108
+ 6.379408,
+ 49.59526
],
[
- -0.0185906,
- 50.7625836
+ 6.375507,
+ 49.58809
],
[
- 0.0967261,
- 50.7620093
+ 6.384426,
+ 49.5801
],
[
- 0.0921861,
- 50.6913106
+ 6.381188,
+ 49.57509
],
[
- 0.3046595,
- 50.6890096
+ 6.369093,
+ 49.5783
],
[
- 0.3101075,
- 50.7757917
+ 6.357913,
+ 49.57166
],
[
- 0.5511831,
- 50.7726336
+ 6.384902,
+ 49.55817
],
[
- 0.5529991,
- 50.8432096
+ 6.380095,
+ 49.54856
],
[
- 0.695556,
- 50.8403428
+ 6.358555,
+ 49.53296
],
[
- 0.696464,
- 50.8592608
+ 6.359322,
+ 49.52481
],
[
- 0.9852099,
- 50.8523824
+ 6.370763,
+ 49.50545
],
[
- 0.9906579,
- 50.9417226
+ 6.370562,
+ 49.45732
],
[
- 1.0160821,
- 50.9411504
+ 6.333403,
+ 49.46493
],
[
- 1.0215301,
- 51.0303204
+ 6.321894,
+ 49.47244
],
[
- 1.2812198,
- 51.0240383
+ 6.295034,
+ 49.47928
],
[
- 1.2848518,
- 51.0948044
+ 6.287889,
+ 49.48379
],
[
- 1.4277848,
- 51.0948044
+ 6.271912,
+ 49.49995
],
[
- 1.4386809,
- 51.2882859
+ 6.241327,
+ 49.50693
],
[
- 1.4713691,
- 51.2871502
+ 6.196692,
+ 49.50331
],
[
- 1.4804492,
- 51.3994534
+ 6.173373,
+ 49.50577
],
[
- 1.1590151,
- 51.4073836
+ 6.160858,
+ 49.50085
],
[
- 1.1590151,
- 51.3869889
+ 6.167099,
+ 49.49006
],
[
- 1.0191822,
- 51.3903886
+ 6.140179,
+ 49.48525
],
[
- 1.0228142,
- 51.4798247
+ 6.129367,
+ 49.48803
],
[
- 0.8793493,
- 51.4843484
+ 6.127247,
+ 49.47081
],
[
- 0.8829813,
- 51.5566675
+ 6.101403,
+ 49.46726
],
[
- 1.0264462,
- 51.5544092
+ 6.104826,
+ 49.45076
],
[
- 1.0373423,
- 51.7493319
+ 6.081667,
+ 49.45417
],
[
- 1.2607117,
- 51.7482076
+ 6.077222,
+ 49.46139
],
[
- 1.2661598,
- 51.8279642
+ 6.059167,
+ 49.46306
],
[
- 1.3351682,
- 51.8335756
+ 6.052222,
+ 49.46028
],
[
- 1.3478803,
- 51.9199021
+ 6.044213,
+ 49.44553
],
[
- 1.4840812,
- 51.9199021
+ 6.025294,
+ 49.44703
],
[
- 1.4986093,
- 52.0038271
+ 6.021545,
+ 49.45127
],
[
- 1.6438902,
- 52.0027092
+ 6.01574,
+ 49.44885
],
[
- 1.6656823,
- 52.270221
+ 5.994123,
+ 49.45301
],
[
- 1.7310588,
- 52.270221
+ 5.976569,
+ 49.44885
],
[
- 1.7528509,
- 52.4465637
+ 5.977725,
+ 49.45955
],
[
- 1.8254914,
- 52.4476705
+ 5.972317,
+ 49.46087
],
[
- 1.8345714,
- 52.624408
+ 5.968912,
+ 49.48202
],
[
- 1.7690346,
- 52.6291402
+ 5.9616,
+ 49.49026
],
[
- 1.7741711,
- 52.717904
+ 5.915781,
+ 49.49835
],
[
- 1.6996925,
- 52.721793
+ 5.890334,
+ 49.4948
],
[
- 1.706113,
- 52.8103687
+ 5.863321,
+ 49.50006
],
[
- 1.559724,
- 52.8165777
+ 5.84897,
+ 49.50826
],
[
- 1.5648605,
- 52.9034116
+ 5.84828,
+ 49.51397
],
[
- 1.4184715,
- 52.9103818
+ 5.83641,
+ 49.51817
],
[
- 1.4223238,
- 52.9281894
+ 5.831868,
+ 49.52639
],
[
- 1.3439928,
- 52.9289635
+ 5.84308,
+ 49.53081
],
[
- 1.3491293,
- 53.0001194
+ 5.835622,
+ 49.54114
],
[
- 0.4515789,
- 53.022589
+ 5.816251,
+ 49.53325
],
[
- 0.4497629,
- 52.9351139
+ 5.805201,
+ 49.54272
],
[
- 0.3789384,
- 52.9351139
+ 5.859432,
+ 49.57158
],
[
- 0.3716744,
- 52.846365
+ 5.868663,
+ 49.587
],
[
- 0.2227614,
- 52.8496552
+ 5.862888,
+ 49.58525
],
[
- 0.2336575,
- 52.9329248
+ 5.851102,
+ 49.58379
],
[
- 0.3062979,
- 52.9351139
+ 5.847116,
+ 49.58961
],
[
- 0.308114,
- 53.022589
+ 5.845652,
+ 49.5981
],
[
- 0.3807544,
- 53.0236813
+ 5.869401,
+ 49.6106
],
[
- 0.3993708,
- 53.2933729
+ 5.881819,
+ 49.63815
],
[
- 0.3248922,
- 53.2987454
+ 5.899978,
+ 49.63907
],
[
- 0.3274604,
- 53.3853782
+ 5.899339,
+ 49.66239
],
[
- 0.2504136,
- 53.38691
+ 5.856561,
+ 49.67628
],
[
- 0.2581183,
- 53.4748924
+ 5.856283,
+ 49.68211
],
[
- 0.1862079,
- 53.4779494
+ 5.875703,
+ 49.71118
],
[
- 0.1913443,
- 53.6548777
+ 5.864811,
+ 49.72331
],
[
- 0.1502527,
- 53.6594436
+ 5.843249,
+ 49.71822
],
[
- 0.1528209,
- 53.7666003
+ 5.82191,
+ 49.72128
],
[
- 0.0012954,
- 53.7734308
+ 5.824894,
+ 49.73767
],
[
- 0.0025796,
- 53.8424326
+ 5.820728,
+ 49.74878
],
[
- -0.0282392,
- 53.841675
+ 5.786264,
+ 49.79079
],
[
- -0.0226575,
- 53.9311501
+ 5.765172,
+ 49.78961
],
[
- -0.1406983,
- 53.9322193
+ 5.750937,
+ 49.79094
],
[
- -0.1416063,
- 54.0219323
+ 5.741591,
+ 49.82126
],
[
- -0.1706625,
- 54.0235326
+ 5.745814,
+ 49.82435
],
[
- -0.1679384,
- 54.0949482
+ 5.737197,
+ 49.83353
],
[
- -0.0126694,
- 54.0912206
+ 5.740531,
+ 49.84142
],
[
- -0.0099454,
- 54.1811226
+ 5.747012,
+ 49.84048
],
[
- -0.1615824,
- 54.1837795
+ 5.746237,
+ 49.84783
],
[
- -0.1606744,
- 54.2029038
+ 5.753989,
+ 49.84878
],
[
- -0.2405789,
- 54.2034349
+ 5.740663,
+ 49.85152
],
[
- -0.2378549,
- 54.2936234
+ 5.752288,
+ 49.85922
],
[
- -0.3894919,
- 54.2941533
+ 5.749545,
+ 49.87554
],
[
- -0.3857497,
- 54.3837321
+ 5.775668,
+ 49.87438
],
[
- -0.461638,
- 54.3856364
+ 5.775053,
+ 49.88057
],
[
- -0.4571122,
- 54.4939066
+ 5.734598,
+ 49.89341
],
[
- -0.6105651,
- 54.4965434
+ 5.733033,
+ 49.90285
],
[
- -0.6096571,
- 54.5676704
+ 5.757834,
+ 49.91737
],
[
- -0.7667421,
- 54.569776
+ 5.760393,
+ 49.93252
],
[
- -0.7640181,
- 54.5887213
+ 5.770728,
+ 49.93711
],
[
- -0.9192871,
- 54.5908258
+ 5.768783,
+ 49.94239
],
[
- -0.9148116,
- 54.6608348
+ 5.768802,
+ 49.96104
],
[
- -1.1485204,
- 54.6634343
+ 5.786724,
+ 49.96816
],
[
- -1.1472363,
- 54.7528316
+ 5.80524,
+ 49.96677
],
[
- -1.2268514,
- 54.7532021
+ 5.806521,
+ 49.97321
],
[
- -1.2265398,
- 54.8429879
+ 5.831293,
+ 49.97995
],
[
- -1.2991803,
- 54.8435107
+ 5.834616,
+ 49.98656
],
[
- -1.2991803,
- 54.9333391
+ 5.818057,
+ 49.99936
],
[
- -1.3454886,
- 54.9354258
+ 5.815606,
+ 50.01437
],
[
- -1.3436726,
- 55.0234878
+ 5.847923,
+ 50.02809
],
[
- -1.3772688,
- 55.0255698
+ 5.861889,
+ 50.04581
],
[
- -1.3754528,
- 55.1310877
+ 5.850872,
+ 50.0563
],
[
- -1.4997441,
- 55.1315727
+ 5.857809,
+ 50.07186
],
[
- -1.4969272,
- 55.2928323
+ 5.880997,
+ 50.08069
],
[
- -1.5296721,
- 55.2942946
+ 5.891965,
+ 50.12041
],
[
- -1.5258198,
- 55.6523803
+ 5.952856,
+ 50.13384
],
[
- -1.7659492,
- 55.6545537
- ],
+ 5.961753,
+ 50.17631
+ ]
+ ]
+ ],
+ "terms_url": "http://www.act.public.lu/fr/actualites/2014/02/ortho2014/",
+ "terms_text": "Administration du Cadastre et de la Topographie",
+ "id": "lu.geoportail.inspire.ortho2013"
+ },
+ {
+ "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": [
+ [
[
- -1.7620968,
- 55.7435626
+ -9,
+ 49.8
],
[
- -1.9688392,
- 55.7435626
+ -9,
+ 61.1
],
[
- -1.9698023,
- 55.8334505
+ 1.9,
+ 61.1
],
[
- -2.0019051,
- 55.8336308
+ 1.9,
+ 49.8
],
[
- -2.0015841,
- 55.9235526
- ],
+ -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": [
+ [
[
- -2.1604851,
- 55.9240613
+ -6.4585407,
+ 49.9044128
],
[
- -2.1613931,
- 55.9413549
+ -6.3872009,
+ 49.9841116
],
[
- -2.3202942,
- 55.9408463
+ -6.2296827,
+ 49.9896159
],
[
- -2.3212022,
- 56.0145126
+ -6.2171269,
+ 49.8680087
],
[
- -2.5627317,
- 56.0124824
- ],
+ -6.4551164,
+ 49.8591793
+ ]
+ ],
+ [
[
- -2.5645477,
- 56.1022207
+ -1.4495137,
+ 60.8634056
],
[
- -2.9658863,
- 56.0991822
+ -0.7167114,
+ 60.8545122
],
[
- -2.9667943,
- 56.1710304
+ -0.7349744,
+ 60.4359756
],
[
- -2.4828272,
- 56.1755797
+ -0.6938826,
+ 60.4168218
],
[
- -2.4882752,
- 56.2856078
+ -0.7258429,
+ 60.3942735
],
[
- -2.5645477,
- 56.2835918
+ -0.7395401,
+ 60.0484714
],
[
- -2.5681798,
- 56.3742075
+ -0.9267357,
+ 60.0461918
],
[
- -2.7261728,
- 56.3732019
+ -0.9381501,
+ 59.8266157
],
[
- -2.7316208,
- 56.4425301
+ -1.4586452,
+ 59.831205
],
[
- -2.6190281,
- 56.4425301
+ -1.4455187,
+ 60.0535999
],
[
- -2.6153961,
- 56.5317671
+ -1.463211,
+ 60.0535999
],
[
- -2.453771,
- 56.5347715
+ -1.4643524,
+ 60.0630002
],
[
- -2.4534686,
- 56.6420248
+ -1.5716475,
+ 60.0638546
],
[
- -2.4062523,
- 56.6440218
+ -1.5693646,
+ 60.1790005
],
[
- -2.3953562,
- 56.7297964
+ -1.643558,
+ 60.1807033
],
[
- -2.2936596,
- 56.7337811
+ -1.643558,
+ 60.1892162
],
[
- -2.2972916,
- 56.807423
+ -1.8216221,
+ 60.1894999
],
[
- -2.1629067,
- 56.8113995
+ -1.8204807,
+ 60.3615507
],
[
- -2.1592747,
- 56.9958425
+ -1.8415973,
+ 60.3697345
],
[
- -1.9922016,
- 57.0017771
+ -1.8216221,
+ 60.3832755
],
[
- -2.0067297,
- 57.2737477
+ -1.8179852,
+ 60.5934321
],
[
- -1.9195612,
- 57.2757112
- ],
+ -1.453168,
+ 60.5934321
+ ]
+ ],
+ [
[
- -1.9304572,
- 57.3482876
+ -4.9089213,
+ 54.4242078
],
[
- -1.8106005,
- 57.3443682
+ -4.282598,
+ 54.4429861
],
[
- -1.7997044,
- 57.4402728
+ -4.2535417,
+ 54.029769
],
[
- -1.6616875,
- 57.4285429
- ],
+ -4.8766366,
+ 54.0221831
+ ]
+ ],
+ [
[
- -1.6689516,
- 57.5398256
+ -5.8667408,
+ 59.1444603
],
[
- -1.7452241,
- 57.5398256
+ -5.7759966,
+ 59.1470945
],
[
- -1.7524881,
- 57.6313302
+ -5.7720016,
+ 59.1014052
],
[
- -1.8287606,
- 57.6332746
- ],
+ -5.8621751,
+ 59.0990605
+ ]
+ ],
+ [
[
- -1.8287606,
- 57.7187255
+ -1.7065887,
+ 59.5703599
],
[
- -3.1768526,
- 57.7171219
+ -1.5579165,
+ 59.5693481
],
[
- -3.1794208,
- 57.734264
+ -1.5564897,
+ 59.4965695
],
[
- -3.5134082,
- 57.7292105
- ],
+ -1.7054472,
+ 59.4975834
+ ]
+ ],
+ [
[
- -3.5129542,
- 57.7112683
+ -7.6865827,
+ 58.2940975
],
[
- -3.7635638,
- 57.7076303
+ -7.5330594,
+ 58.3006957
],
[
- -3.7598539,
- 57.635713
+ -7.5256401,
+ 58.2646905
],
[
- -3.8420372,
- 57.6343382
- ],
+ -7.6797341,
+ 58.2577853
+ ]
+ ],
+ [
[
- -3.8458895,
- 57.6178365
+ -4.5338281,
+ 59.0359871
],
[
- -3.9794374,
- 57.6157733
+ -4.481322,
+ 59.0371616
],
[
- -3.9794374,
- 57.686544
+ -4.4796099,
+ 59.0186583
],
[
- -3.8150708,
- 57.689976
+ -4.5332574,
+ 59.0180707
+ ]
+ ],
+ [
+ [
+ -8.6710698,
+ 57.8769896
],
[
- -3.817639,
- 57.7968899
+ -8.4673234,
+ 57.8897332
],
[
- -3.6853753,
- 57.7989429
+ -8.4467775,
+ 57.7907
],
[
- -3.6892276,
- 57.8891567
- ],
+ -8.6510947,
+ 57.7779213
+ ]
+ ],
+ [
[
- -3.9383458,
- 57.8877915
+ -5.2395519,
+ 50.3530581
],
[
- -3.9421981,
- 57.9750592
+ -5.7920073,
+ 50.3384899
],
[
- -3.6943641,
- 57.9784638
+ -5.760047,
+ 49.9317027
],
[
- -3.6969323,
- 58.0695865
+ -4.6551363,
+ 49.9581461
],
[
- -4.0372226,
- 58.0641528
+ -4.677965,
+ 50.2860073
],
[
- -4.0346543,
- 57.9730163
+ -4.244219,
+ 50.2801723
],
[
- -4.2003051,
- 57.9702923
+ -4.2487848,
+ 50.2042525
],
[
- -4.1832772,
- 57.7012869
+ -3.3812929,
+ 50.2042525
],
[
- -4.518752,
- 57.6951111
+ -3.4223846,
+ 50.5188201
],
[
- -4.5122925,
- 57.6050682
+ -3.1164796,
+ 50.5246258
],
[
- -4.6789116,
- 57.6016628
+ -3.1210453,
+ 50.6579592
],
[
- -4.666022,
- 57.4218334
+ -2.6736357,
+ 50.6619495
],
[
- -3.6677696,
- 57.4394729
+ -2.5953453,
+ 50.6394325
],
[
- -3.671282,
- 57.5295384
+ -2.5905026,
+ 50.5728419
],
[
- -3.3384979,
- 57.5331943
+ -2.4791203,
+ 50.5733545
],
[
- -3.3330498,
- 57.4438859
+ -2.4758919,
+ 50.5066704
],
[
- -2.8336466,
- 57.4485275
+ -2.3967943,
+ 50.5056438
],
[
- -2.8236396,
- 56.9992706
+ -2.401637,
+ 50.5723293
],
[
- -2.3305398,
- 57.0006693
+ -1.0400296,
+ 50.5718167
],
[
- -2.3298977,
- 56.9113932
+ -1.0335726,
+ 50.7059289
],
[
- -2.6579889,
- 56.9092901
+ -0.549302,
+ 50.7038843
],
[
- -2.6559637,
- 56.8198406
+ -0.5460736,
+ 50.7886618
],
[
- -2.8216747,
- 56.8188467
+ -0.0924734,
+ 50.7856002
],
[
- -2.8184967,
- 56.7295397
+ -0.0876307,
+ 50.7181949
],
[
- -3.1449248,
- 56.7265508
+ 0.4789659,
+ 50.7120623
],
[
- -3.1435628,
- 56.6362749
+ 0.487037,
+ 50.8182467
],
[
- -3.4679089,
- 56.6350265
+ 0.9761503,
+ 50.8049868
],
[
- -3.474265,
- 56.7238108
+ 0.9922927,
+ 51.0126311
],
[
- -3.8011471,
- 56.7188284
+ 1.4491213,
+ 51.0004424
],
[
- -3.785711,
- 56.4493026
+ 1.4781775,
+ 51.4090372
],
[
- -3.946428,
- 56.4457896
+ 1.0229632,
+ 51.4271576
],
[
- -3.9428873,
- 56.2659777
+ 1.035877,
+ 51.7640881
],
[
- -4.423146,
- 56.2588459
+ 1.6105448,
+ 51.7500992
],
[
- -4.4141572,
- 56.0815506
+ 1.646058,
+ 52.1560003
],
[
- -4.8944159,
- 56.0708008
+ 1.7267698,
+ 52.1540195
],
[
- -4.8791072,
- 55.8896994
+ 1.749369,
+ 52.4481811
],
[
- -5.1994158,
- 55.8821374
+ 1.7870672,
+ 52.4811624
],
[
- -5.1852906,
- 55.7023791
+ 1.759102,
+ 52.522505
],
[
- -5.0273445,
- 55.7067203
+ 1.7933451,
+ 52.9602749
],
[
- -5.0222081,
- 55.6879046
+ 0.3798147,
+ 52.9958468
],
[
- -4.897649,
- 55.6907999
+ 0.3895238,
+ 53.2511239
],
[
- -4.8880181,
- 55.6002822
+ 0.3478614,
+ 53.2511239
],
[
- -4.7339244,
- 55.6046348
+ 0.3238912,
+ 53.282186
],
[
- -4.7275038,
- 55.5342082
+ 0.3461492,
+ 53.6538501
],
[
- -4.773732,
- 55.5334815
+ 0.128487,
+ 53.6575466
],
[
- -4.7685955,
- 55.4447227
+ 0.116582,
+ 53.6674703
],
[
- -4.8494947,
- 55.4418092
+ 0.1350586,
+ 54.0655731
],
[
- -4.8405059,
- 55.3506535
+ -0.0609831,
+ 54.065908
],
[
- -4.8700405,
- 55.3513836
+ -0.0414249,
+ 54.4709448
],
[
- -4.8649041,
- 55.2629462
+ -0.5662701,
+ 54.4771794
],
[
- -4.9920314,
- 55.2592875
+ -0.5592078,
+ 54.6565127
],
[
- -4.9907473,
- 55.1691779
+ -1.1665638,
+ 54.6623485
],
[
- -5.0600894,
- 55.1655105
+ -1.1637389,
+ 54.842611
],
[
- -5.0575212,
- 55.0751884
+ -1.3316194,
+ 54.843909
],
[
- -5.2141831,
- 55.0722477
+ -1.3257065,
+ 55.2470842
],
[
- -5.1991766,
- 54.8020337
+ -1.529453,
+ 55.2487108
],
[
- -5.0466316,
- 54.8062205
+ -1.524178,
+ 55.6540122
],
[
- -5.0502636,
- 54.7244996
+ -1.7638798,
+ 55.6540122
],
[
- -4.9703591,
- 54.7203043
+ -1.7733693,
+ 55.9719116
],
[
- -4.9776232,
- 54.6215905
+ -2.1607858,
+ 55.9682981
],
[
- -4.796022,
- 54.6342056
+ -2.1543289,
+ 56.0621387
],
[
- -4.796022,
- 54.7307917
+ -2.4578051,
+ 56.0585337
],
[
- -4.8977186,
- 54.7265971
+ -2.4190635,
+ 56.641717
],
[
- -4.9086147,
- 54.8145928
+ -2.0962164,
+ 56.641717
],
[
- -4.8069181,
- 54.8166856
+ -2.0833025,
+ 57.0021322
],
[
- -4.8105501,
- 54.7915648
+ -1.9283359,
+ 57.0126802
],
[
- -4.6943253,
- 54.7978465
+ -1.9180966,
+ 57.3590895
],
[
- -4.6761652,
- 54.7244996
+ -1.7502161,
+ 57.3625721
],
[
- -4.5744686,
- 54.7244996
+ -1.7695869,
+ 57.7608634
],
[
- -4.5599405,
- 54.6426135
+ -3.6937554,
+ 57.7574187
],
[
- -4.3093309,
- 54.6384098
+ -3.7066693,
+ 57.9806386
],
[
- -4.3333262,
- 54.8229889
+ -3.5969013,
+ 57.9772149
],
[
- -4.2626999,
- 54.8274274
+ -3.6033582,
+ 58.1207277
],
[
- -4.2549952,
- 54.7348587
+ -3.0222335,
+ 58.1309566
],
[
- -3.8338058,
- 54.7400481
+ -3.0286905,
+ 58.5410788
],
[
- -3.836374,
- 54.8141105
+ -2.8478961,
+ 58.530968
],
[
- -3.7118149,
- 54.8133706
+ -2.86081,
+ 58.8430508
],
[
- -3.7143831,
- 54.8318654
+ -2.679624,
+ 58.8414991
],
[
- -3.5346072,
- 54.8355633
+ -2.6841897,
+ 58.885175
],
[
- -3.5271039,
- 54.9066228
+ -2.6339665,
+ 58.9052239
],
[
- -3.4808758,
- 54.9084684
+ -2.679624,
+ 58.9335083
],
[
- -3.4776655,
- 54.7457328
+ -2.6887555,
+ 59.0229231
],
[
- -3.5874573,
- 54.744621
+ -2.3668703,
+ 59.0229231
],
[
- -3.5836049,
- 54.6546166
+ -2.3702946,
+ 59.2652861
],
[
- -3.7107322,
- 54.6531308
+ -2.3429001,
+ 59.2821989
],
[
- -3.6991752,
- 54.4550407
+ -2.3714361,
+ 59.2996861
],
[
- -3.5746161,
- 54.4572801
+ -2.3737189,
+ 59.3707083
],
[
- -3.5759002,
- 54.3863042
+ -2.3429001,
+ 59.385825
],
[
- -3.539945,
- 54.3855564
+ -2.3725775,
+ 59.400354
],
[
- -3.5386609,
- 54.297224
+ -2.3714361,
+ 59.4259098
],
[
- -3.46033,
- 54.2957252
+ -3.0734196,
+ 59.4230067
],
[
- -3.4590458,
- 54.2079507
+ -3.0711368,
+ 59.3433649
],
[
- -3.3807149,
- 54.2102037
+ -3.103097,
+ 59.3311405
],
[
- -3.381999,
- 54.1169788
+ -3.0745611,
+ 59.3136695
],
[
- -3.302878,
- 54.1160656
+ -3.0722782,
+ 59.232603
],
[
- -3.300154,
- 54.0276224
+ -3.3850319,
+ 59.1484167
],
[
- -3.1013007,
- 54.0292224
+ -3.3747589,
+ 58.9352753
],
[
- -3.093596,
- 53.6062158
+ -3.5653789,
+ 58.9323303
],
[
- -3.2065981,
- 53.6016441
+ -3.554829,
+ 58.69759
],
[
- -3.2091663,
- 53.4917753
+ -5.2808579,
+ 58.6667732
],
[
- -3.2451215,
- 53.4887193
+ -5.2534159,
+ 58.3514125
],
[
- -3.2348486,
- 53.4045934
+ -5.5068508,
+ 58.3437887
],
[
- -3.5276266,
- 53.3999999
+ -5.4761804,
+ 58.0323557
],
[
- -3.5343966,
- 53.328481
+ -5.8974958,
+ 58.0212436
],
[
- -3.6488053,
- 53.3252272
+ -5.8522972,
+ 57.6171758
],
[
- -3.6527308,
- 53.3057716
+ -6.1396311,
+ 57.6137174
],
[
- -3.7271873,
- 53.3046865
+ -6.1541592,
+ 57.7423183
],
[
- -3.7315003,
- 53.3945257
+ -6.2913692,
+ 57.7380102
],
[
- -3.9108315,
- 53.3912769
+ -6.3365678,
+ 58.1398784
],
[
- -3.9071995,
- 53.3023804
+ -6.1121891,
+ 58.1466944
],
[
- -3.9521457,
- 53.3015665
+ -6.1473778,
+ 58.5106285
],
[
- -3.9566724,
- 53.3912183
+ -6.2934817,
+ 58.5416182
],
[
- -4.1081979,
- 53.3889209
+ -6.8413713,
+ 58.2977321
],
[
- -4.1081979,
- 53.4072967
+ -7.0057382,
+ 58.2929331
],
[
- -4.2622916,
- 53.4065312
+ -7.1016189,
+ 58.2064403
],
[
- -4.2635757,
- 53.4753707
+ -7.2573132,
+ 58.1793148
],
[
- -4.638537,
- 53.4677274
+ -7.2531092,
+ 58.1004928
],
[
- -4.6346847,
- 53.3812621
+ -7.4070698,
+ 58.0905566
],
[
- -4.7091633,
- 53.3774321
+ -7.391347,
+ 57.7911354
],
[
- -4.7001745,
- 53.1954965
+ -7.790991,
+ 57.7733151
],
[
- -4.5499332,
- 53.1962658
+ -7.7624215,
+ 57.5444165
],
[
- -4.5435126,
- 53.1092488
+ -7.698501,
+ 57.1453194
],
[
- -4.3919871,
- 53.1100196
+ -7.7943817,
+ 57.1304547
],
[
- -4.3855666,
- 53.0236002
+ -7.716764,
+ 56.7368628
],
[
- -4.6115707,
- 53.0205105
+ -7.0122067,
+ 56.7654359
],
[
- -4.603866,
- 52.9284932
+ -6.979922,
+ 56.5453858
],
[
- -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
+ -7.0638622,
+ 56.5453858
],
[
- -4.7807076,
- 52.1162967
+ -7.0444914,
+ 56.3562587
],
[
- -4.9259885,
- 52.1140663
+ -6.500676,
+ 56.3812917
],
[
- -4.9187245,
- 52.0392855
+ -6.4491433,
+ 55.9793649
],
[
- -5.2365265,
- 52.0314653
+ -6.563287,
+ 55.9691456
],
[
- -5.2347105,
- 51.9442339
+ -6.5393742,
+ 55.7030135
],
[
- -5.3473032,
- 51.9408755
+ -6.5595521,
+ 55.6907321
],
[
- -5.3473032,
- 51.9195995
+ -6.5345315,
+ 55.6761713
],
[
- -5.4925842,
- 51.9162392
+ -6.5216176,
+ 55.5704434
],
[
- -5.4853201,
- 51.8265386
+ -5.8912587,
+ 55.5923416
],
[
- -5.1983903,
- 51.8321501
+ -5.8560127,
+ 55.2320733
],
[
- -5.1893102,
- 51.7625177
+ -5.2293639,
+ 55.2515958
],
[
- -5.335825,
- 51.7589528
+ -5.1837064,
+ 54.6254139
],
[
- -5.3281204,
- 51.6686495
+ -3.6655956,
+ 54.6518373
],
[
- -5.1836575,
- 51.6730296
+ -3.6496155,
+ 54.4320023
],
[
- -5.1836575,
- 51.6539134
+ -3.5400375,
+ 54.4306744
],
[
- -5.0674452,
- 51.6578966
+ -3.530906,
+ 54.0290181
],
[
- -5.0603825,
- 51.5677905
+ -3.0697656,
+ 54.030359
],
[
- -4.5974594,
- 51.5809588
+ -3.0675737,
+ 53.8221388
],
[
- -4.60388,
- 51.6726314
+ -3.0804876,
+ 53.7739911
],
[
- -4.345773,
- 51.6726314
+ -3.0619239,
+ 53.7477488
],
[
- -4.3355001,
- 51.4962964
+ -3.0611168,
+ 53.6737049
],
[
- -3.9528341,
- 51.5106841
+ -3.2144691,
+ 53.6708361
],
[
- -3.9425611,
- 51.5905333
+ -3.2057699,
+ 53.4226163
],
[
- -3.8809237,
- 51.5953198
+ -3.2799632,
+ 53.355224
],
[
- -3.8706508,
- 51.5074872
+ -3.2896655,
+ 53.3608441
],
[
- -3.7679216,
- 51.4978952
+ -3.3327547,
+ 53.364931
],
[
- -3.7550805,
- 51.4242895
+ -3.3761293,
+ 53.3540318
],
[
- -3.5855774,
- 51.41468
+ -4.0888976,
+ 53.3433102
],
[
- -3.5778727,
- 51.3329177
+ -4.0945474,
+ 53.4612036
],
[
- -3.0796364,
- 51.3329177
+ -4.697412,
+ 53.4448624
],
[
- -3.0770682,
- 51.2494018
+ -4.6882805,
+ 53.3318598
],
[
- -3.7216935,
- 51.2381477
+ -4.7202407,
+ 53.2895771
],
[
- -3.7216935,
- 51.2558315
+ -4.6837148,
+ 53.2486184
],
[
- -3.8706508,
- 51.2558315
+ -4.6768661,
+ 53.1542644
],
[
- -3.8680825,
- 51.2365398
+ -4.8480816,
+ 53.1446807
],
[
- -4.2944084,
- 51.2252825
+ -4.8178336,
+ 52.7440299
],
[
- -4.289272,
- 51.0496352
+ -4.2545751,
+ 52.7558939
],
[
- -4.5692089,
- 51.0431767
+ -4.228876,
+ 52.254876
],
[
- -4.5624122,
- 50.9497388
+ -4.2607571,
+ 52.2536408
],
[
- -4.5905604,
- 50.9520269
+ -4.2724603,
+ 52.2432637
],
[
- -4.5896524,
- 50.8627065
+ -4.8136263,
+ 52.230095
],
[
- -4.6296046,
- 50.8592677
+ -4.8079191,
+ 52.1138892
],
[
- -4.6226411,
- 50.7691513
+ -5.3889104,
+ 52.0991668
],
[
- -4.6952816,
- 50.7680028
+ -5.3717888,
+ 51.9129667
],
[
- -4.6934655,
- 50.6967379
+ -5.4208706,
+ 51.9101502
],
[
- -4.8342064,
- 50.6938621
+ -5.414022,
+ 51.8453218
],
[
- -4.8296664,
- 50.6046231
+ -5.3683645,
+ 51.8474373
],
[
- -4.9676833,
- 50.6000126
+ -5.3466772,
+ 51.5595332
],
[
- -4.9685913,
- 50.5821427
+ -4.773676,
+ 51.5758518
],
[
- -5.1084242,
- 50.5786832
+ -4.7656859,
+ 51.4885146
],
[
- -5.1029762,
- 50.4892254
+ -4.1915432,
+ 51.4970427
],
[
- -5.1311244,
- 50.48807
+ -4.1869775,
+ 51.4344663
],
[
- -5.1274923,
- 50.4163798
+ -3.6151177,
+ 51.4444274
],
[
- -5.2664172,
- 50.4117509
+ -3.6105519,
+ 51.3746543
],
[
- -5.2609692,
- 50.3034214
+ -3.1494115,
+ 51.3789292
],
[
- -5.5124868,
- 50.2976214
+ -3.1494115,
+ 51.2919281
],
[
- -5.5061308,
- 50.2256428
+ -4.3038735,
+ 51.2745907
],
[
- -5.6468717,
- 50.2209953
- ]
- ],
- [
- [
- -5.1336607,
- 55.2630226
+ -4.2861169,
+ 51.0508721
],
[
- -5.1021999,
- 55.2639372
+ -4.8543277,
+ 51.0366633
],
[
- -5.0999527,
- 55.2458239
+ -4.8372201,
+ 50.7212787
],
[
- -5.1322161,
- 55.2446343
+ -5.2618345,
+ 50.7082694
]
],
[
[
- -5.6431878,
- 55.5095745
+ -2.1502671,
+ 60.171318
],
[
- -5.4861028,
- 55.5126594
+ -2.0030218,
+ 60.1696146
],
[
- -5.4715747,
- 55.3348829
+ -2.0013096,
+ 60.0997023
],
[
- -5.6277517,
- 55.3302345
+ -2.148555,
+ 60.1011247
]
],
[
[
- -4.7213517,
- 51.2180246
+ -6.2086011,
+ 59.1163488
],
[
- -4.5804201,
- 51.2212417
+ -6.1229934,
+ 59.1166418
],
[
- -4.5746416,
- 51.1306736
+ -6.121852,
+ 59.0714985
],
[
- -4.7174993,
- 51.1280545
+ -6.2097426,
+ 59.0714985
]
],
[
[
- -5.1608796,
- 55.4153626
+ -4.4159559,
+ 59.0889036
],
[
- -5.0045387,
- 55.4190069
+ -4.4212022,
+ 59.0770848
],
[
- -5.0184798,
- 55.6153521
+ -4.3971904,
+ 59.0779143
],
[
- -5.1755648,
- 55.6138137
+ -4.3913388,
+ 59.0897328
]
]
],
"terms_text": "National Library of Scotland Historic Maps"
},
{
- "name": "NLS - OS 6-inch Scotland 1842-82",
+ "name": "NLS - OS 1:25k 1st Series 1937-61",
"type": "tms",
- "template": "http://geo.nls.uk/maps/os/six_inch/{zoom}/{x}/{-y}.png",
+ "template": "http://geo.nls.uk/mapdata2/os/25000/{zoom}/{x}/{-y}.png",
"scaleExtent": [
5,
16
"polygon": [
[
[
- -5.2112173,
- 54.8018593
+ -4.7157244,
+ 54.6796556
],
[
- -5.0642752,
- 54.8026508
+ -4.6850662,
+ 54.6800268
],
[
- -5.0560354,
- 54.6305176
+ -4.6835779,
+ 54.6623245
],
[
- -4.3158316,
- 54.6297227
- ],
+ -4.7148782,
+ 54.6615818
+ ]
+ ],
+ [
[
- -4.3117117,
- 54.7448258
+ -3.7085748,
+ 58.3371151
],
[
- -3.8530325,
- 54.7464112
+ -3.5405937,
+ 58.3380684
],
[
- -3.8530325,
- 54.8034424
+ -3.5315137,
+ 58.1608002
],
[
- -3.5522818,
- 54.8034424
+ -3.3608086,
+ 58.1622372
],
[
- -3.5522818,
- 54.8374644
+ -3.3653486,
+ 58.252173
],
[
- -3.468511,
- 54.8406277
+ -3.1610473,
+ 58.2536063
],
[
- -3.4657644,
- 54.8983158
+ -3.1610473,
+ 58.3261509
],
[
- -3.3847403,
- 54.8991055
+ -3.0275704,
+ 58.3271045
],
[
- -3.3888601,
- 54.9559214
+ -3.0366505,
+ 58.6139001
],
[
- -3.0920786,
- 54.9539468
+ -3.0021463,
+ 58.614373
],
[
- -3.0392359,
- 54.9923274
+ -3.0030543,
+ 58.7036341
],
[
- -3.0212713,
- 55.0493881
+ -3.4180129,
+ 58.7003322
],
[
- -2.9591232,
- 55.0463283
+ -3.4171049,
+ 58.6290293
],
[
- -2.9202807,
- 55.0666294
+ -3.7240109,
+ 58.6266658
],
[
- -2.7857081,
- 55.068652
+ -3.7231029,
+ 58.606806
],
[
- -2.7852225,
- 55.0914426
+ -4.2361262,
+ 58.5992374
],
[
- -2.7337562,
- 55.0922761
+ -4.2334022,
+ 58.5092347
],
[
- -2.737616,
- 55.151204
+ -3.88836,
+ 58.5144516
],
[
- -2.7648395,
- 55.1510672
+ -3.8829119,
+ 58.4261327
],
[
- -2.7013114,
- 55.1722505
- ],
+ -3.7158389,
+ 58.4270836
+ ]
+ ],
+ [
[
- -2.6635459,
- 55.2192808
+ -6.46676,
+ 49.9943621
],
[
- -2.6460364,
- 55.2188891
+ -6.1889102,
+ 50.004868
],
[
- -2.629042,
- 55.2233933
+ -6.1789222,
+ 49.8967815
],
[
- -2.6317886,
- 55.2287781
+ -6.3169391,
+ 49.8915171
],
[
- -2.6235488,
- 55.2446345
+ -6.312399,
+ 49.8200979
],
[
- -2.6197723,
- 55.2454663
- ],
+ -6.4504159,
+ 49.8159968
+ ]
+ ],
+ [
[
- -2.6099017,
- 55.2454174
+ -5.6453263,
+ 50.2029809
],
[
- -2.6099876,
- 55.2486466
+ -5.7801329,
+ 50.2014076
],
[
- -2.6408121,
- 55.2590039
+ -5.7637888,
+ 50.0197267
],
[
- -2.6247896,
- 55.2615631
+ -5.3479221,
+ 50.0290604
],
[
- -2.6045186,
- 55.2823081
+ -5.3388421,
+ 49.9414854
],
[
- -2.5693176,
- 55.296132
+ -5.024672,
+ 49.9473287
],
[
- -2.5479542,
- 55.3121617
+ -5.0355681,
+ 50.0383923
],
[
- -2.5091116,
- 55.3234891
+ -5.0010639,
+ 50.0453901
],
[
- -2.4780376,
- 55.3494471
+ -4.9974319,
+ 50.1304478
],
[
- -2.4421083,
- 55.3533118
+ -4.855783,
+ 50.13394
],
[
- -2.4052079,
- 55.3439256
+ -4.861231,
+ 50.206057
],
[
- -2.3726772,
- 55.3447539
+ -4.6546085,
+ 50.2140172
],
[
- -2.3221819,
- 55.3687665
+ -4.6558926,
+ 50.3018616
],
[
- -2.3241241,
- 55.3999337
+ -4.5184924,
+ 50.3026818
],
[
- -2.2576062,
- 55.425015
+ -4.51464,
+ 50.325642
],
[
- -2.1985547,
- 55.4273529
+ -4.2488284,
+ 50.3264618
],
[
- -2.1484296,
- 55.4717466
+ -4.2488284,
+ 50.3100631
],
[
- -2.1944348,
- 55.484199
+ -4.10886,
+ 50.3141633
],
[
- -2.2040479,
- 55.529306
+ -4.1062917,
+ 50.2411267
],
[
- -2.2960584,
- 55.6379722
+ -3.9648088,
+ 50.2432047
],
[
- -2.2177808,
- 55.6379722
+ -3.9640778,
+ 50.2254158
],
[
- -2.1059266,
- 55.7452498
+ -3.8522287,
+ 50.2273626
],
[
- -1.9716874,
- 55.7462161
+ -3.8503757,
+ 50.1552563
],
[
- -1.9697453,
- 55.9190951
+ -3.6921809,
+ 50.1572487
],
[
- -2.1201694,
- 55.9207115
+ -3.5414602,
+ 50.1602198
],
[
- -2.1242893,
- 55.9776133
+ -3.5465781,
+ 50.3226814
],
[
- -2.3440159,
- 55.9783817
+ -3.4068012,
+ 50.3241013
],
[
- -2.3440159,
- 56.0390349
+ -3.4165761,
+ 50.5892711
],
[
- -2.5046909,
- 56.0413363
+ -3.2746691,
+ 50.5962721
],
[
- -2.500571,
- 56.1003588
+ -3.2749172,
+ 50.6106323
],
[
- -2.8823459,
- 56.0957629
+ -2.9971742,
+ 50.613972
],
[
- -2.8823459,
- 56.1722898
+ -2.9896008,
+ 50.688537
],
[
- -2.4126804,
- 56.1692316
+ -2.7120266,
+ 50.690565
],
[
- -2.4181736,
- 56.2334017
+ -2.710908,
+ 50.6195964
],
[
- -2.5857151,
- 56.2303484
+ -2.5695473,
+ 50.6157538
],
[
- -2.5719822,
- 56.3416356
+ -2.5651019,
+ 50.5134083
],
[
- -2.7257908,
- 56.3462022
+ -2.4014463,
+ 50.513379
],
[
- -2.7312839,
- 56.4343808
+ -2.3940583,
+ 50.6160348
],
[
- -2.6928318,
- 56.4343808
+ -2.2894123,
+ 50.6147436
],
[
- -2.6928318,
- 56.4859769
+ -2.2876184,
+ 50.6008549
],
[
- -2.5307834,
- 56.4935587
+ -2.1477855,
+ 50.6048506
],
[
- -2.5307834,
- 56.570806
+ -2.1451013,
+ 50.5325437
],
[
- -2.5302878,
- 56.6047947
+ -1.9335117,
+ 50.5347477
],
[
- -2.3732428,
- 56.6044452
+ -1.9362139,
+ 50.6170445
],
[
- -2.3684363,
- 56.7398824
+ -1.8573025,
+ 50.6228094
],
[
- -2.3292975,
- 56.7398824
+ -1.8554865,
+ 50.709139
],
[
- -2.3292975,
- 56.7888065
+ -1.6066929,
+ 50.709139
],
[
- -2.3145346,
- 56.7891826
+ -1.6085089,
+ 50.6239615
],
[
- -2.3148779,
- 56.7967036
+ -1.4450678,
+ 50.6228094
],
[
- -2.171369,
- 56.7967036
+ -1.4432518,
+ 50.5317039
],
[
- -2.1703979,
- 56.9710595
+ -1.1545059,
+ 50.5293951
],
[
- -2.0101725,
- 56.9694716
+ -1.1472419,
+ 50.6170485
],
[
- -2.0101725,
- 57.0846832
+ -1.011041,
+ 50.6205051
],
[
- -2.0817687,
- 57.085349
+ -1.011041,
+ 50.7056889
],
[
- -2.0488097,
- 57.1259963
+ -0.704135,
+ 50.7045388
],
[
- -2.0409133,
- 57.126369
+ -0.700503,
+ 50.7769401
],
[
- -2.0383434,
- 57.2411129
+ -0.5860943,
+ 50.7723465
],
[
- -1.878118,
- 57.2421638
+ -0.5879103,
+ 50.7907181
],
[
- -1.8771469,
- 57.2978175
+ -0.0149586,
+ 50.7798108
],
[
- -1.9868771,
- 57.2983422
+ -0.0185906,
+ 50.7625836
],
[
- -1.9082209,
- 57.3560063
+ 0.0967261,
+ 50.7620093
],
[
- -1.8752048,
- 57.3560063
+ 0.0921861,
+ 50.6913106
],
[
- -1.8761758,
- 57.3769527
+ 0.3046595,
+ 50.6890096
],
[
- -1.8120857,
- 57.4120111
+ 0.3101075,
+ 50.7757917
],
[
- -1.7120661,
- 57.4120111
+ 0.5511831,
+ 50.7726336
],
[
- -1.7034646,
- 57.6441388
+ 0.5529991,
+ 50.8432096
],
[
- -1.8666032,
- 57.6451781
+ 0.695556,
+ 50.8403428
],
[
- -1.8646611,
- 57.7033351
+ 0.696464,
+ 50.8592608
],
[
- -3.1204292,
- 57.7064705
+ 0.9852099,
+ 50.8523824
],
[
- -3.1218025,
- 57.7504652
+ 0.9906579,
+ 50.9417226
],
[
- -3.4445259,
- 57.7526635
+ 1.0160821,
+ 50.9411504
],
[
- -3.4472724,
- 57.7138067
+ 1.0215301,
+ 51.0303204
],
[
- -3.5145637,
- 57.7094052
+ 1.2812198,
+ 51.0240383
],
[
- -3.5118171,
- 57.6939956
+ 1.2848518,
+ 51.0948044
],
[
- -3.7645027,
- 57.6917938
+ 1.4277848,
+ 51.0948044
],
[
- -3.7672492,
- 57.6344975
+ 1.4386809,
+ 51.2882859
],
[
- -3.842378,
- 57.6288312
+ 1.4713691,
+ 51.2871502
],
[
- -3.8438346,
- 57.5965825
+ 1.4804492,
+ 51.3994534
],
[
- -3.9414265,
- 57.5916386
+ 1.1590151,
+ 51.4073836
],
[
- -3.9404554,
- 57.6537782
+ 1.1590151,
+ 51.3869889
],
[
- -3.8894746,
- 57.6529989
+ 1.0191822,
+ 51.3903886
],
[
- -3.8826772,
- 57.7676408
+ 1.0228142,
+ 51.4798247
],
[
- -3.7224517,
- 57.766087
+ 0.8793493,
+ 51.4843484
],
[
- -3.7195385,
- 57.8819201
+ 0.8829813,
+ 51.5566675
],
[
- -3.9146888,
- 57.8853352
+ 1.0264462,
+ 51.5544092
],
[
- -3.916062,
- 57.9546243
+ 1.0373423,
+ 51.7493319
],
[
- -3.745774,
- 57.9538956
+ 1.2607117,
+ 51.7482076
],
[
- -3.7471473,
- 58.0688409
+ 1.2661598,
+ 51.8279642
],
[
- -3.5837256,
- 58.0695672
+ 1.3351682,
+ 51.8335756
],
[
- -3.5837256,
- 58.1116689
+ 1.3478803,
+ 51.9199021
],
[
- -3.4560096,
- 58.1138452
+ 1.4840812,
+ 51.9199021
],
[
- -3.4544646,
- 58.228503
+ 1.4986093,
+ 52.0038271
],
[
- -3.4379851,
- 58.2283222
+ 1.6438902,
+ 52.0027092
],
[
- -3.4243233,
- 58.2427725
+ 1.6656823,
+ 52.270221
],
[
- -3.412307,
- 58.2438567
+ 1.7310588,
+ 52.270221
],
[
- -3.3735115,
- 58.2695057
+ 1.7528509,
+ 52.4465637
],
[
- -3.3063919,
- 58.2862038
+ 1.8254914,
+ 52.4476705
],
[
- -3.1229154,
- 58.2859395
+ 1.8345714,
+ 52.624408
],
[
- -3.123602,
- 58.3443661
+ 1.7690346,
+ 52.6291402
],
[
- -2.9574338,
- 58.3447264
+ 1.7741711,
+ 52.717904
],
[
- -2.951254,
- 58.6422011
+ 1.6996925,
+ 52.721793
],
[
- -2.8812162,
- 58.6429157
+ 1.706113,
+ 52.8103687
],
[
- -2.8851004,
- 58.8112825
+ 1.559724,
+ 52.8165777
],
[
- -2.7180775,
- 58.8142997
+ 1.5648605,
+ 52.9034116
],
[
- -2.7161354,
- 58.8715749
+ 1.4184715,
+ 52.9103818
],
[
- -2.556881,
- 58.8775984
+ 1.4223238,
+ 52.9281894
],
[
- -2.5544533,
- 58.9923453
+ 1.3439928,
+ 52.9289635
],
[
- -2.5567617,
- 59.0483775
+ 1.3491293,
+ 53.0001194
],
[
- -2.391893,
- 59.0485996
+ 0.4515789,
+ 53.022589
],
[
- -2.3918002,
- 59.1106996
+ 0.4497629,
+ 52.9351139
],
[
- -2.4733695,
- 59.1106996
+ 0.3789384,
+ 52.9351139
],
[
- -2.5591563,
- 59.1783028
+ 0.3716744,
+ 52.846365
],
[
- -2.5630406,
- 59.2210646
+ 0.2227614,
+ 52.8496552
],
[
- -2.3921334,
- 59.224046
+ 0.2336575,
+ 52.9329248
],
[
- -2.3911409,
- 59.2740075
+ 0.3062979,
+ 52.9351139
],
[
- -2.3639512,
- 59.2745036
+ 0.308114,
+ 53.022589
],
[
- -2.3658933,
- 59.285417
+ 0.3807544,
+ 53.0236813
],
[
- -2.3911409,
- 59.284921
+ 0.3993708,
+ 53.2933729
],
[
- -2.3911409,
- 59.3379505
+ 0.3248922,
+ 53.2987454
],
[
- -2.2221759,
- 59.3381981
+ 0.3274604,
+ 53.3853782
],
[
- -2.2233897,
- 59.395965
+ 0.2504136,
+ 53.38691
],
[
- -2.3758467,
- 59.396583
+ 0.2581183,
+ 53.4748924
],
[
- -2.3899271,
- 59.4026383
+ 0.1862079,
+ 53.4779494
],
[
- -2.4008516,
- 59.3962122
+ 0.1913443,
+ 53.6548777
],
[
- -2.5637882,
- 59.3952604
+ 0.1502527,
+ 53.6594436
],
[
- -2.5637882,
- 59.3385811
+ 0.1528209,
+ 53.7666003
],
[
- -2.7320164,
- 59.3375306
- ],
+ 0.0012954,
+ 53.7734308
+ ],
[
- -2.7333896,
- 59.3952604
+ 0.0025796,
+ 53.8424326
],
[
- -3.0726511,
- 59.3931174
+ -0.0282392,
+ 53.841675
],
[
- -3.0703404,
- 59.3354759
+ -0.0226575,
+ 53.9311501
],
[
- -3.0753186,
- 59.3355634
+ -0.1406983,
+ 53.9322193
],
[
- -3.0749753,
- 59.3292593
+ -0.1416063,
+ 54.0219323
],
[
- -3.0698254,
- 59.3289091
+ -0.1706625,
+ 54.0235326
],
[
- -3.069801,
- 59.2196159
+ -0.1679384,
+ 54.0949482
],
[
- -3.2363384,
- 59.2166341
+ -0.0126694,
+ 54.0912206
],
[
- -3.2336751,
- 59.1606496
+ -0.0099454,
+ 54.1811226
],
[
- -3.4032766,
- 59.1588895
+ -0.1615824,
+ 54.1837795
],
[
- -3.394086,
- 58.9279316
+ -0.1606744,
+ 54.2029038
],
[
- -3.5664497,
- 58.9259268
+ -0.2405789,
+ 54.2034349
],
[
- -3.5611089,
- 58.8679885
+ -0.2378549,
+ 54.2936234
],
[
- -3.392508,
- 58.8699339
+ -0.3894919,
+ 54.2941533
],
[
- -3.3894734,
- 58.8698711
+ -0.3857497,
+ 54.3837321
],
[
- -3.3891093,
- 58.8684905
+ -0.461638,
+ 54.3856364
],
[
- -3.3912942,
- 58.868616
+ -0.4571122,
+ 54.4939066
],
[
- -3.3884161,
- 58.7543084
+ -0.6105651,
+ 54.4965434
],
[
- -3.2238208,
- 58.7555677
+ -0.6096571,
+ 54.5676704
],
[
- -3.2189655,
- 58.691289
+ -0.7667421,
+ 54.569776
],
[
- -3.4634113,
- 58.6905753
+ -0.7640181,
+ 54.5887213
],
[
- -3.4551716,
- 58.6341518
+ -0.9192871,
+ 54.5908258
],
[
- -3.787508,
- 58.6341518
+ -0.9148116,
+ 54.6608348
],
[
- -3.7861347,
- 58.5769211
+ -1.1485204,
+ 54.6634343
],
[
- -3.9028645,
- 58.5733411
+ -1.1472363,
+ 54.7528316
],
[
- -3.9028645,
- 58.6477304
+ -1.2268514,
+ 54.7532021
],
[
- -4.0690327,
- 58.6491594
+ -1.2265398,
+ 54.8429879
],
[
- -4.0690327,
- 58.5912376
+ -1.2991803,
+ 54.8435107
],
[
- -4.7364521,
- 58.5933845
+ -1.2991803,
+ 54.9333391
],
[
- -4.7364521,
- 58.6505884
+ -1.3454886,
+ 54.9354258
],
[
- -5.0715351,
- 58.6520173
+ -1.3436726,
+ 55.0234878
],
[
- -5.0654779,
- 58.5325854
+ -1.3772688,
+ 55.0255698
],
[
- -5.2332047,
- 58.5316087
+ -1.3754528,
+ 55.1310877
],
[
- -5.2283494,
- 58.4719947
+ -1.4997441,
+ 55.1315727
],
[
- -5.2424298,
- 58.4719947
+ -1.4969272,
+ 55.2928323
],
[
- -5.2366034,
- 58.4089731
+ -1.5296721,
+ 55.2942946
],
[
- -5.2283494,
- 58.4094818
+ -1.5258198,
+ 55.6523803
],
[
- -5.2210664,
- 58.3005859
+ -1.7659492,
+ 55.6545537
],
[
- -5.5657939,
- 58.2959933
+ -1.7620968,
+ 55.7435626
],
[
- -5.5580254,
- 58.2372573
+ -1.9688392,
+ 55.7435626
],
[
- -5.4146722,
- 58.2401326
+ -1.9698023,
+ 55.8334505
],
[
- -5.4141866,
- 58.2267768
+ -2.0019051,
+ 55.8336308
],
[
- -5.3885749,
- 58.2272242
+ -2.0015841,
+ 55.9235526
],
[
- -5.382714,
- 58.1198615
+ -2.1604851,
+ 55.9240613
],
[
- -5.51043,
- 58.1191362
+ -2.1613931,
+ 55.9413549
],
[
- -5.5114011,
- 58.006214
+ -2.3202942,
+ 55.9408463
],
[
- -5.6745397,
- 58.0041559
+ -2.3212022,
+ 56.0145126
],
[
- -5.6716266,
- 57.9449366
+ -2.5627317,
+ 56.0124824
],
[
- -5.6716266,
- 57.8887166
+ -2.5645477,
+ 56.1022207
],
[
- -5.8347652,
- 57.8856193
+ -2.9658863,
+ 56.0991822
],
[
- -5.8277052,
- 57.5988958
+ -2.9667943,
+ 56.1710304
],
[
- -6.0384259,
- 57.5986357
+ -2.4828272,
+ 56.1755797
],
[
- -6.0389115,
- 57.6459559
+ -2.4882752,
+ 56.2856078
],
[
- -6.1981658,
- 57.6456961
+ -2.5645477,
+ 56.2835918
],
[
- -6.2076123,
- 57.7600132
+ -2.5681798,
+ 56.3742075
],
[
- -6.537067,
- 57.7544033
+ -2.7261728,
+ 56.3732019
],
[
- -6.5312406,
- 57.6402392
+ -2.7316208,
+ 56.4425301
],
[
- -6.7002056,
- 57.6360809
+ -2.6190281,
+ 56.4425301
],
[
- -6.6807844,
- 57.5236293
+ -2.6153961,
+ 56.5317671
],
[
- -6.8516915,
- 57.5152857
+ -2.453771,
+ 56.5347715
],
[
- -6.8361545,
- 57.3385811
+ -2.4534686,
+ 56.6420248
],
[
- -6.6730158,
- 57.3438213
+ -2.4062523,
+ 56.6440218
],
[
- -6.674958,
- 57.2850883
+ -2.3953562,
+ 56.7297964
],
[
- -6.5098772,
- 57.2850883
+ -2.2936596,
+ 56.7337811
],
[
- -6.4982244,
- 57.1757637
+ -2.2972916,
+ 56.807423
],
[
- -6.3506228,
- 57.1820797
+ -2.1629067,
+ 56.8113995
],
[
- -6.3312015,
- 57.1251969
+ -2.1592747,
+ 56.9958425
],
[
- -6.1797156,
- 57.1230884
+ -1.9922016,
+ 57.0017771
],
[
- -6.1719471,
- 57.0682265
+ -2.0067297,
+ 57.2737477
],
[
- -6.4593819,
- 57.059779
+ -1.9195612,
+ 57.2757112
],
[
- -6.4564687,
- 57.1093806
+ -1.9304572,
+ 57.3482876
],
[
- -6.6671895,
- 57.1062165
+ -1.8106005,
+ 57.3443682
],
[
- -6.6730158,
- 57.002708
+ -1.7997044,
+ 57.4402728
],
[
- -6.5021087,
- 57.0048233
+ -1.6616875,
+ 57.4285429
],
[
- -6.4836097,
- 56.8917522
+ -1.6689516,
+ 57.5398256
],
[
- -6.3266104,
- 56.8894062
+ -1.7452241,
+ 57.5398256
],
[
- -6.3156645,
- 56.7799312
+ -1.7524881,
+ 57.6313302
],
[
- -6.2146739,
- 56.775675
+ -1.8287606,
+ 57.6332746
],
[
- -6.2146739,
- 56.7234965
+ -1.8287606,
+ 57.7187255
],
[
- -6.6866107,
- 56.7224309
+ -3.1768526,
+ 57.7171219
],
[
- -6.6769001,
- 56.6114413
+ -3.1794208,
+ 57.734264
],
[
- -6.8419809,
- 56.607166
+ -3.5134082,
+ 57.7292105
],
[
- -6.8400387,
- 56.5483307
+ -3.5129542,
+ 57.7112683
],
[
- -7.1546633,
- 56.5461895
+ -3.7635638,
+ 57.7076303
],
[
- -7.1488369,
- 56.4872592
+ -3.7598539,
+ 57.635713
],
[
- -6.9915246,
- 56.490476
+ -3.8420372,
+ 57.6343382
],
[
- -6.9876404,
- 56.4325329
+ -3.8458895,
+ 57.6178365
],
[
- -6.6827265,
- 56.4314591
+ -3.9794374,
+ 57.6157733
],
[
- -6.6769001,
- 56.5472601
+ -3.9794374,
+ 57.686544
],
[
- -6.5292985,
- 56.5504717
+ -3.8150708,
+ 57.689976
],
[
- -6.5234721,
- 56.4379018
+ -3.817639,
+ 57.7968899
],
[
- -6.3661598,
- 56.4368281
+ -3.6853753,
+ 57.7989429
],
[
- -6.3642177,
- 56.3766524
+ -3.6892276,
+ 57.8891567
],
[
- -6.5273563,
- 56.3712749
+ -3.9383458,
+ 57.8877915
],
[
- -6.5171745,
- 56.2428427
+ -3.9421981,
+ 57.9750592
],
[
- -6.4869621,
- 56.247421
+ -3.6943641,
+ 57.9784638
],
[
- -6.4869621,
- 56.1893882
+ -3.6969323,
+ 58.0695865
],
[
- -6.3001945,
- 56.1985572
+ -4.0372226,
+ 58.0641528
],
[
- -6.3029411,
- 56.2581017
+ -4.0346543,
+ 57.9730163
],
[
- -5.9019401,
- 56.256576
+ -4.2003051,
+ 57.9702923
],
[
- -5.8964469,
- 56.0960466
+ -4.1832772,
+ 57.7012869
],
[
- -6.0282829,
- 56.0883855
+ -4.518752,
+ 57.6951111
],
[
- -6.0392692,
- 56.1557502
+ -4.5122925,
+ 57.6050682
],
[
- -6.3853385,
- 56.1542205
+ -4.6789116,
+ 57.6016628
],
[
- -6.3606193,
- 55.96099
+ -4.666022,
+ 57.4218334
],
[
- -6.2123039,
- 55.9640647
+ -3.6677696,
+ 57.4394729
],
[
- -6.2047508,
- 55.9202269
+ -3.671282,
+ 57.5295384
],
[
- -6.5185478,
- 55.9129158
+ -3.3384979,
+ 57.5331943
],
[
- -6.5061881,
- 55.7501763
+ -3.3330498,
+ 57.4438859
],
[
- -6.6764762,
- 55.7409005
+ -2.8336466,
+ 57.4485275
],
[
- -6.6599967,
- 55.6263176
+ -2.8236396,
+ 56.9992706
],
[
- -6.3551261,
- 55.6232161
+ -2.3305398,
+ 57.0006693
],
[
- -6.3578727,
- 55.5689002
+ -2.3298977,
+ 56.9113932
],
[
- -6.0392692,
- 55.5720059
+ -2.6579889,
+ 56.9092901
],
[
- -6.0310294,
- 55.6247669
+ -2.6559637,
+ 56.8198406
],
[
- -5.7398917,
- 55.6309694
+ -2.8216747,
+ 56.8188467
],
[
- -5.7371452,
- 55.4569279
+ -2.8184967,
+ 56.7295397
],
[
- -5.8964469,
- 55.4600426
+ -3.1449248,
+ 56.7265508
],
[
- -5.8964469,
- 55.2789864
+ -3.1435628,
+ 56.6362749
],
[
- -5.4350211,
- 55.2821151
+ -3.4679089,
+ 56.6350265
],
[
- -5.4405143,
- 55.4506979
+ -3.474265,
+ 56.7238108
],
[
- -5.2867057,
- 55.4569279
+ -3.8011471,
+ 56.7188284
],
[
- -5.3086784,
- 55.4070602
+ -3.785711,
+ 56.4493026
],
[
- -4.9735954,
- 55.4008223
+ -3.946428,
+ 56.4457896
],
[
- -4.9845817,
- 55.2038242
+ -3.9428873,
+ 56.2659777
],
[
- -5.1493766,
- 55.2038242
+ -4.423146,
+ 56.2588459
],
[
- -5.1411369,
- 55.037337
+ -4.4141572,
+ 56.0815506
],
[
- -5.2152946,
- 55.0341891
- ]
- ],
- [
- [
- -2.1646559,
- 60.1622059
+ -4.8944159,
+ 56.0708008
],
[
- -1.9930299,
- 60.1609801
+ -4.8791072,
+ 55.8896994
],
[
- -1.9946862,
- 60.1035151
+ -5.1994158,
+ 55.8821374
],
[
- -2.1663122,
- 60.104743
- ]
- ],
- [
- [
- -1.5360658,
- 59.8570831
+ -5.1852906,
+ 55.7023791
],
[
- -1.3653566,
- 59.8559841
+ -5.0273445,
+ 55.7067203
],
[
- -1.366847,
- 59.7975565
+ -5.0222081,
+ 55.6879046
],
[
- -1.190628,
- 59.7964199
+ -4.897649,
+ 55.6907999
],
[
- -1.1862046,
- 59.9695391
+ -4.8880181,
+ 55.6002822
],
[
- -1.0078652,
- 59.9683948
+ -4.7339244,
+ 55.6046348
],
[
- -1.0041233,
- 60.114145
+ -4.7275038,
+ 55.5342082
],
[
- -0.8360832,
- 60.1130715
+ -4.773732,
+ 55.5334815
],
[
- -0.834574,
- 60.1716772
+ -4.7685955,
+ 55.4447227
],
[
- -1.0074262,
- 60.1727795
+ -4.8494947,
+ 55.4418092
],
[
- -1.0052165,
- 60.2583924
+ -4.8405059,
+ 55.3506535
],
[
- -0.8299659,
- 60.2572778
+ -4.8700405,
+ 55.3513836
],
[
- -0.826979,
- 60.3726551
+ -4.8649041,
+ 55.2629462
],
[
- -0.6507514,
- 60.3715381
+ -4.9920314,
+ 55.2592875
],
[
- -0.6477198,
- 60.4882292
+ -4.9907473,
+ 55.1691779
],
[
- -0.9984896,
- 60.4904445
+ -5.0600894,
+ 55.1655105
],
[
- -0.9970279,
- 60.546555
+ -5.0575212,
+ 55.0751884
],
[
- -0.6425288,
- 60.5443201
+ -5.2141831,
+ 55.0722477
],
[
- -0.6394896,
- 60.6606792
+ -5.1991766,
+ 54.8020337
],
[
- -0.8148133,
- 60.6617806
+ -5.0466316,
+ 54.8062205
],
[
- -0.8132987,
- 60.7196112
+ -5.0502636,
+ 54.7244996
],
[
- -0.6383298,
- 60.7185141
+ -4.9703591,
+ 54.7203043
],
[
- -0.635467,
- 60.8275393
+ -4.9776232,
+ 54.6215905
],
[
- -0.797568,
- 60.8285523
+ -4.796022,
+ 54.6342056
],
[
- -0.9941426,
- 60.8297807
+ -4.796022,
+ 54.7307917
],
[
- -0.9954966,
- 60.7782667
+ -4.8977186,
+ 54.7265971
],
[
- -1.1670282,
- 60.7793403
+ -4.9086147,
+ 54.8145928
],
[
- -1.1700357,
- 60.6646181
+ -4.8069181,
+ 54.8166856
],
[
- -1.5222599,
- 60.6668304
+ -4.8105501,
+ 54.7915648
],
[
- -1.5237866,
- 60.6084426
+ -4.6943253,
+ 54.7978465
],
[
- -1.6975673,
- 60.609536
+ -4.6761652,
+ 54.7244996
],
[
- -1.7021271,
- 60.4345249
+ -4.5744686,
+ 54.7244996
],
[
- -1.5260578,
- 60.4334111
+ -4.5599405,
+ 54.6426135
],
[
- -1.5275203,
- 60.3770719
+ -4.3093309,
+ 54.6384098
],
[
- -1.8751127,
- 60.3792746
+ -4.3333262,
+ 54.8229889
],
[
- -1.8781372,
- 60.2624647
+ -4.2626999,
+ 54.8274274
],
[
- -1.7019645,
- 60.2613443
+ -4.2549952,
+ 54.7348587
],
[
- -1.7049134,
- 60.1470532
+ -3.8338058,
+ 54.7400481
],
[
- -1.528659,
- 60.1459283
- ]
- ],
- [
- [
- -0.9847667,
- 60.8943762
+ -3.836374,
+ 54.8141105
],
[
- -0.9860347,
- 60.8361105
+ -3.7118149,
+ 54.8133706
],
[
- -0.8078362,
- 60.8351904
+ -3.7143831,
+ 54.8318654
],
[
- -0.8065683,
- 60.8934578
- ]
- ],
- [
- [
- -7.7696901,
- 56.8788231
+ -3.5346072,
+ 54.8355633
],
[
- -7.7614504,
- 56.7608274
+ -3.5271039,
+ 54.9066228
],
[
- -7.6009049,
- 56.7641903
+ -3.4808758,
+ 54.9084684
],
[
- -7.5972473,
- 56.819332
+ -3.4776655,
+ 54.7457328
],
[
- -7.4479894,
- 56.8203948
+ -3.5874573,
+ 54.744621
],
[
- -7.4489319,
- 56.8794098
+ -3.5836049,
+ 54.6546166
],
[
- -7.2841369,
- 56.8794098
+ -3.7107322,
+ 54.6531308
],
[
- -7.2813904,
- 57.0471152
+ -3.6991752,
+ 54.4550407
],
[
- -7.1303283,
- 57.0515969
+ -3.5746161,
+ 54.4572801
],
[
- -7.1330749,
- 57.511801
+ -3.5759002,
+ 54.3863042
],
[
- -6.96828,
- 57.5147514
+ -3.539945,
+ 54.3855564
],
[
- -6.9765198,
- 57.6854668
+ -3.5386609,
+ 54.297224
],
[
- -6.8062317,
- 57.6913392
+ -3.46033,
+ 54.2957252
],
[
- -6.8089782,
- 57.8041985
+ -3.4590458,
+ 54.2079507
],
[
- -6.6496765,
- 57.8071252
+ -3.3807149,
+ 54.2102037
],
[
- -6.6441833,
- 57.8612267
+ -3.381999,
+ 54.1169788
],
[
- -6.3200866,
- 57.8626878
+ -3.302878,
+ 54.1160656
],
[
- -6.3200866,
- 58.1551617
+ -3.300154,
+ 54.0276224
],
[
- -6.1607849,
- 58.1522633
+ -3.1013007,
+ 54.0292224
],
[
- -6.1552917,
- 58.20874
+ -3.093596,
+ 53.6062158
],
[
- -5.9850036,
- 58.2101869
+ -3.2065981,
+ 53.6016441
],
[
- -5.9904968,
- 58.2680163
+ -3.2091663,
+ 53.4917753
],
[
- -6.1497986,
- 58.2665717
+ -3.2451215,
+ 53.4887193
],
[
- -6.1415588,
- 58.5557514
+ -3.2348486,
+ 53.4045934
],
[
- -6.3173401,
- 58.5557514
+ -3.5276266,
+ 53.3999999
],
[
- -6.3091003,
- 58.4983923
+ -3.5343966,
+ 53.328481
],
[
- -6.4876282,
- 58.4955218
+ -3.6488053,
+ 53.3252272
],
[
- -6.4876282,
- 58.4423768
+ -3.6527308,
+ 53.3057716
],
[
- -6.6606628,
- 58.4395018
+ -3.7271873,
+ 53.3046865
],
[
- -6.6469299,
- 58.3819525
+ -3.7315003,
+ 53.3945257
],
[
- -6.8117248,
- 58.3805125
+ -3.9108315,
+ 53.3912769
],
[
- -6.8117248,
- 58.3286357
+ -3.9071995,
+ 53.3023804
],
[
- -6.9792663,
- 58.3286357
+ -3.9521457,
+ 53.3015665
],
[
- -6.9710266,
- 58.2694608
+ -3.9566724,
+ 53.3912183
],
[
- -7.1413147,
- 58.2680163
+ -4.1081979,
+ 53.3889209
],
[
- -7.1403816,
- 58.0358742
+ -4.1081979,
+ 53.4072967
],
[
- -7.3020636,
- 58.0351031
+ -4.2622916,
+ 53.4065312
],
[
- -7.3030347,
- 57.9774797
+ -4.2635757,
+ 53.4753707
],
[
- -7.1379539,
- 57.9777372
+ -4.638537,
+ 53.4677274
],
[
- -7.1413526,
- 57.9202792
+ -4.6346847,
+ 53.3812621
],
[
- -7.1398961,
- 57.8640206
+ -4.7091633,
+ 53.3774321
],
[
- -7.3020636,
- 57.862471
+ -4.7001745,
+ 53.1954965
],
[
- -7.298484,
- 57.7442293
+ -4.5499332,
+ 53.1962658
],
[
- -7.4509193,
- 57.7456951
+ -4.5435126,
+ 53.1092488
],
[
- -7.4550392,
- 57.6899522
+ -4.3919871,
+ 53.1100196
],
[
- -7.6186131,
- 57.6906048
+ -4.3855666,
+ 53.0236002
],
[
- -7.6198341,
- 57.7456951
+ -4.6115707,
+ 53.0205105
],
[
- -7.7901222,
- 57.7442293
+ -4.603866,
+ 52.9284932
],
[
- -7.7873756,
- 57.6855477
+ -4.7566756,
+ 52.9261709
],
[
- -7.6222332,
- 57.6853817
+ -4.7476868,
+ 52.8370555
],
[
- -7.6173779,
- 57.5712602
+ -4.8208813,
+ 52.8331768
],
[
- -7.788285,
- 57.5709998
+ -4.8208813,
+ 52.7446476
],
[
- -7.7892561,
- 57.512109
+ -4.3701572,
+ 52.7539749
],
[
- -7.7038025,
- 57.5115874
+ -4.3765778,
+ 52.8401583
],
[
- -7.6999183,
- 57.4546902
+ -4.2314728,
+ 52.8455875
],
[
- -7.5367796,
- 57.4552126
+ -4.2237682,
+ 52.7586379
],
[
- -7.5348375,
- 57.5126306
+ -4.1056297,
+ 52.7570836
],
[
- -7.4581235,
- 57.5131521
+ -4.1015192,
+ 52.6714874
],
[
- -7.4552103,
- 57.2824165
+ -4.1487355,
+ 52.6703862
],
[
- -7.6115515,
- 57.2845158
+ -4.1305754,
+ 52.4008596
],
[
- -7.6144647,
- 57.2272651
+ -4.1995838,
+ 52.3986435
],
[
- -7.451326,
- 57.2256881
+ -4.2050319,
+ 52.3110195
],
[
- -7.451326,
- 57.1103873
+ -4.3466808,
+ 52.303247
],
[
- -7.6164068,
- 57.1088053
+ -4.3484968,
+ 52.2365693
],
[
- -7.603783,
- 56.8792358
- ]
- ],
- [
- [
- -1.7106618,
- 59.5626284
+ -4.4901457,
+ 52.2332328
],
[
- -1.5417509,
- 59.562215
+ -4.4883297,
+ 52.2098702
],
[
- -1.5423082,
- 59.5037224
+ -4.6572188,
+ 52.2098702
],
[
- -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
+ -4.6590348,
+ 52.1385939
],
[
- -124.6059492,
- 45.90245
+ -4.7788916,
+ 52.13525
],
[
- -124.9934269,
- 40.0557614
+ -4.7807076,
+ 52.1162967
],
[
- -122.5369737,
- 36.8566086
+ -4.9259885,
+ 52.1140663
],
[
- -119.9775867,
- 33.0064099
+ -4.9187245,
+ 52.0392855
],
[
- -117.675935,
- 32.4630223
+ -5.2365265,
+ 52.0314653
],
[
- -114.8612307,
- 32.4799891
+ -5.2347105,
+ 51.9442339
],
[
- -111.0089311,
- 31.336015
+ -5.3473032,
+ 51.9408755
],
[
- -108.1992687,
- 31.3260016
+ -5.3473032,
+ 51.9195995
],
[
- -108.1871123,
- 31.7755116
+ -5.4925842,
+ 51.9162392
],
[
- -106.5307225,
- 31.7820947
+ -5.4853201,
+ 51.8265386
],
[
- -106.4842052,
- 31.7464455
+ -5.1983903,
+ 51.8321501
],
[
- -106.429317,
- 31.7520583
+ -5.1893102,
+ 51.7625177
],
[
- -106.2868855,
- 31.5613291
+ -5.335825,
+ 51.7589528
],
[
- -106.205248,
- 31.446704
+ -5.3281204,
+ 51.6686495
],
[
- -105.0205259,
- 30.5360988
+ -5.1836575,
+ 51.6730296
],
[
- -104.5881916,
- 29.6997856
+ -5.1836575,
+ 51.6539134
],
[
- -103.2518856,
- 28.8908685
+ -5.0674452,
+ 51.6578966
],
[
- -102.7173632,
- 29.3920567
+ -5.0603825,
+ 51.5677905
],
[
- -102.1513983,
- 29.7475702
+ -4.5974594,
+ 51.5809588
],
[
- -101.2552871,
- 29.4810523
+ -4.60388,
+ 51.6726314
],
[
- -100.0062436,
- 28.0082173
+ -4.345773,
+ 51.6726314
],
[
- -99.2351068,
- 26.4475962
+ -4.3355001,
+ 51.4962964
],
[
- -98.0109067,
- 25.9928035
+ -3.9528341,
+ 51.5106841
],
[
- -97.435024,
- 25.8266009
+ -3.9425611,
+ 51.5905333
],
[
- -96.9555259,
- 25.9821589
+ -3.8809237,
+ 51.5953198
],
[
- -96.8061741,
- 27.7978168
+ -3.8706508,
+ 51.5074872
],
[
- -95.5563349,
- 28.5876066
+ -3.7679216,
+ 51.4978952
],
[
- -93.7405308,
- 29.4742093
+ -3.7550805,
+ 51.4242895
],
[
- -90.9028456,
- 28.8564513
+ -3.5855774,
+ 51.41468
],
[
- -88.0156706,
- 28.9944338
+ -3.5778727,
+ 51.3329177
],
[
- -88.0162494,
- 30.0038862
+ -3.0796364,
+ 51.3329177
],
[
- -86.0277506,
- 30.0047454
+ -3.0770682,
+ 51.2494018
],
[
- -84.0187909,
- 28.9961781
+ -3.7216935,
+ 51.2381477
],
[
- -81.9971976,
- 25.9826768
+ -3.7216935,
+ 51.2558315
],
[
- -81.9966618,
- 25.0134917
+ -3.8706508,
+ 51.2558315
],
[
- -84.0165592,
- 25.0125783
+ -3.8680825,
+ 51.2365398
],
[
- -84.0160068,
- 24.0052745
+ -4.2944084,
+ 51.2252825
],
[
- -80.0199985,
- 24.007096
+ -4.289272,
+ 51.0496352
],
[
- -79.8901116,
- 26.8550713
+ -4.5692089,
+ 51.0431767
],
[
- -80.0245309,
- 32.0161282
+ -4.5624122,
+ 50.9497388
],
[
- -75.4147385,
- 35.0531894
+ -4.5905604,
+ 50.9520269
],
[
- -74.0211163,
- 39.5727927
+ -4.5896524,
+ 50.8627065
],
[
- -72.002019,
- 40.9912464
+ -4.6296046,
+ 50.8592677
],
[
- -69.8797398,
- 40.9920457
+ -4.6226411,
+ 50.7691513
],
[
- -69.8489304,
- 43.2619916
+ -4.6952816,
+ 50.7680028
],
[
- -66.9452845,
- 44.7104937
+ -4.6934655,
+ 50.6967379
],
[
- -67.7596632,
- 47.0990024
+ -4.8342064,
+ 50.6938621
],
[
- -69.2505131,
- 47.5122328
+ -4.8296664,
+ 50.6046231
],
[
- -70.4614886,
- 46.2176574
+ -4.9676833,
+ 50.6000126
],
[
- -71.412273,
- 45.254878
+ -4.9685913,
+ 50.5821427
],
[
- -72.0222508,
- 45.0059846
+ -5.1084242,
+ 50.5786832
],
[
- -75.0798841,
- 44.9802854
+ -5.1029762,
+ 50.4892254
],
[
- -76.9023061,
- 43.8024568
+ -5.1311244,
+ 50.48807
],
[
- -78.7623935,
- 43.6249578
+ -5.1274923,
+ 50.4163798
],
[
- -79.15798,
- 43.4462589
+ -5.2664172,
+ 50.4117509
],
[
- -79.0060087,
- 42.8005317
+ -5.2609692,
+ 50.3034214
],
[
- -82.662475,
- 41.6889458
+ -5.5124868,
+ 50.2976214
],
[
- -82.1761642,
- 43.588535
+ -5.5061308,
+ 50.2256428
],
[
- -83.2813977,
- 46.138853
+ -5.6468717,
+ 50.2209953
+ ]
+ ],
+ [
+ [
+ -5.1336607,
+ 55.2630226
],
[
- -87.5064535,
- 48.0142702
+ -5.1021999,
+ 55.2639372
],
[
- -88.3492194,
- 48.2963271
+ -5.0999527,
+ 55.2458239
],
[
- -89.4353148,
- 47.9837822
+ -5.1322161,
+ 55.2446343
+ ]
+ ],
+ [
+ [
+ -5.6431878,
+ 55.5095745
],
[
- -93.9981078,
- 49.0067142
+ -5.4861028,
+ 55.5126594
],
[
- -95.1105379,
- 49.412004
+ -5.4715747,
+ 55.3348829
],
[
- -96.0131199,
- 49.0060547
+ -5.6277517,
+ 55.3302345
+ ]
+ ],
+ [
+ [
+ -4.7213517,
+ 51.2180246
],
[
- -123.3228926,
- 49.0042878
+ -4.5804201,
+ 51.2212417
],
[
- -123.2275233,
- 48.1849927
+ -4.5746416,
+ 51.1306736
+ ],
+ [
+ -4.7174993,
+ 51.1280545
]
],
[
[
- -160.5787616,
- 22.5062947
+ -5.1608796,
+ 55.4153626
],
[
- -160.5782192,
- 21.4984647
+ -5.0045387,
+ 55.4190069
],
[
- -158.7470604,
- 21.2439843
+ -5.0184798,
+ 55.6153521
],
[
- -157.5083185,
- 20.995803
- ],
+ -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": [
+ [
[
- -155.9961942,
- 18.7790194
+ -5.2112173,
+ 54.8018593
],
[
- -154.6217803,
- 18.7586966
+ -5.0642752,
+ 54.8026508
],
[
- -154.6890176,
- 19.8805722
+ -5.0560354,
+ 54.6305176
],
[
- -156.2927622,
- 21.2225888
+ -4.3158316,
+ 54.6297227
],
[
- -157.5047384,
- 21.9984962
+ -4.3117117,
+ 54.7448258
],
[
- -159.0093692,
- 22.5070181
- ]
- ],
- [
+ -3.8530325,
+ 54.7464112
+ ],
[
- -167.1571546,
- 68.721974
+ -3.8530325,
+ 54.8034424
],
[
- -164.8553982,
- 67.0255078
+ -3.5522818,
+ 54.8034424
],
[
- -168.002195,
- 66.0017503
+ -3.5522818,
+ 54.8374644
],
[
- -169.0087448,
- 66.001546
+ -3.468511,
+ 54.8406277
],
[
- -169.0075381,
- 64.9987675
+ -3.4657644,
+ 54.8983158
],
[
- -172.5143281,
- 63.8767267
+ -3.3847403,
+ 54.8991055
],
[
- -173.8197023,
- 59.74014
+ -3.3888601,
+ 54.9559214
],
[
- -162.5018149,
- 58.0005815
+ -3.0920786,
+ 54.9539468
],
[
- -160.0159024,
- 58.0012389
+ -3.0392359,
+ 54.9923274
],
[
- -160.0149725,
- 57.000035
+ -3.0212713,
+ 55.0493881
],
[
- -160.5054788,
- 56.9999017
+ -2.9591232,
+ 55.0463283
],
[
- -165.8092575,
- 54.824847
+ -2.9202807,
+ 55.0666294
],
[
- -178.000097,
- 52.2446469
+ -2.7857081,
+ 55.068652
],
[
- -177.9992996,
- 51.2554252
+ -2.7852225,
+ 55.0914426
],
[
- -171.4689067,
- 51.8215329
+ -2.7337562,
+ 55.0922761
],
[
- -162.40251,
- 53.956664
+ -2.737616,
+ 55.151204
],
[
- -159.0075717,
- 55.002502
+ -2.7648395,
+ 55.1510672
],
[
- -158.0190709,
- 55.0027849
+ -2.7013114,
+ 55.1722505
],
[
- -151.9963213,
- 55.9991902
+ -2.6635459,
+ 55.2192808
],
[
- -151.500341,
- 57.9987853
+ -2.6460364,
+ 55.2188891
],
[
- -151.5012894,
- 58.9919816
+ -2.629042,
+ 55.2233933
],
[
- -138.5159989,
- 58.9953194
+ -2.6317886,
+ 55.2287781
],
[
- -138.5150471,
- 57.9986434
+ -2.6235488,
+ 55.2446345
],
[
- -133.9948193,
- 54.0031685
+ -2.6197723,
+ 55.2454663
],
[
- -130.0044418,
- 54.0043387
+ -2.6099017,
+ 55.2454174
],
[
- -130.0070826,
- 57.0000507
+ -2.6099876,
+ 55.2486466
],
[
- -131.975877,
- 56.9995156
+ -2.6408121,
+ 55.2590039
],
[
- -135.1229873,
- 59.756601
+ -2.6247896,
+ 55.2615631
],
[
- -138.0071813,
- 59.991805
+ -2.6045186,
+ 55.2823081
],
[
- -139.1715881,
- 60.4127229
+ -2.5693176,
+ 55.296132
],
[
- -140.9874011,
- 61.0118551
+ -2.5479542,
+ 55.3121617
],
[
- -140.9683975,
- 69.9535069
+ -2.5091116,
+ 55.3234891
],
[
- -156.176891,
- 71.5633329
+ -2.4780376,
+ 55.3494471
],
[
- -160.413634,
- 70.7397728
+ -2.4421083,
+ 55.3533118
],
[
- -163.0218273,
- 69.9707435
+ -2.4052079,
+ 55.3439256
],
[
- -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": [
- [
+ -2.3726772,
+ 55.3447539
+ ],
[
- -9,
- 49.8
+ -2.3221819,
+ 55.3687665
],
[
- -9,
- 61.1
+ -2.3241241,
+ 55.3999337
],
[
- 1.9,
- 61.1
+ -2.2576062,
+ 55.425015
],
[
- 1.9,
- 49.8
+ -2.1985547,
+ 55.4273529
],
[
- -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
+ -2.1484296,
+ 55.4717466
],
[
- -5.8,
- 55.8
+ -2.1944348,
+ 55.484199
],
[
- 1.9,
- 55.8
+ -2.2040479,
+ 55.529306
],
[
- 1.9,
- 49.8
+ -2.2960584,
+ 55.6379722
],
[
- -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
+ -2.2177808,
+ 55.6379722
],
[
- -9,
- 61.1
+ -2.1059266,
+ 55.7452498
],
[
- 1.9,
- 61.1
+ -1.9716874,
+ 55.7462161
],
[
- 1.9,
- 49.8
+ -1.9697453,
+ 55.9190951
],
[
- -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
+ -2.1201694,
+ 55.9207115
],
[
- -5.8292886,
- 50.254819
+ -2.1242893,
+ 55.9776133
],
[
- -5.373356,
- 50.254819
+ -2.3440159,
+ 55.9783817
],
[
- -5.373356,
- 50.3530588
+ -2.3440159,
+ 56.0390349
],
[
- -5.1756021,
- 50.3530588
+ -2.5046909,
+ 56.0413363
],
[
- -5.1756021,
- 50.5925406
+ -2.500571,
+ 56.1003588
],
[
- -4.9970743,
- 50.5925406
+ -2.8823459,
+ 56.0957629
],
[
- -4.9970743,
- 50.6935617
+ -2.8823459,
+ 56.1722898
],
[
- -4.7965738,
- 50.6935617
+ -2.4126804,
+ 56.1692316
],
[
- -4.7965738,
- 50.7822112
+ -2.4181736,
+ 56.2334017
],
[
- -4.6949503,
- 50.7822112
+ -2.5857151,
+ 56.2303484
],
[
- -4.6949503,
- 50.9607371
+ -2.5719822,
+ 56.3416356
],
[
- -4.6043131,
- 50.9607371
+ -2.7257908,
+ 56.3462022
],
[
- -4.6043131,
- 51.0692066
+ -2.7312839,
+ 56.4343808
],
[
- -4.3792215,
- 51.0692066
+ -2.6928318,
+ 56.4343808
],
[
- -4.3792215,
- 51.2521782
+ -2.6928318,
+ 56.4859769
],
[
- -3.9039346,
- 51.2521782
+ -2.5307834,
+ 56.4935587
],
[
- -3.9039346,
- 51.2916998
+ -2.5307834,
+ 56.570806
],
[
- -3.7171671,
- 51.2916998
+ -2.5302878,
+ 56.6047947
],
[
- -3.7171671,
- 51.2453014
+ -2.3732428,
+ 56.6044452
],
[
- -3.1486246,
- 51.2453014
+ -2.3684363,
+ 56.7398824
],
[
- -3.1486246,
- 51.362067
+ -2.3292975,
+ 56.7398824
],
[
- -3.7446329,
- 51.362067
+ -2.3292975,
+ 56.7888065
],
[
- -3.7446329,
- 51.4340386
+ -2.3145346,
+ 56.7891826
],
[
- -3.8297769,
- 51.4340386
+ -2.3148779,
+ 56.7967036
],
[
- -3.8297769,
- 51.5298246
+ -2.171369,
+ 56.7967036
],
[
- -4.0852091,
- 51.5298246
+ -2.1703979,
+ 56.9710595
],
[
- -4.0852091,
- 51.4939284
+ -2.0101725,
+ 56.9694716
],
[
- -4.3792215,
- 51.4939284
+ -2.0101725,
+ 57.0846832
],
[
- -4.3792215,
- 51.5427168
+ -2.0817687,
+ 57.085349
],
[
- -5.1444195,
- 51.5427168
+ -2.0488097,
+ 57.1259963
],
[
- -5.1444195,
- 51.6296003
+ -2.0409133,
+ 57.126369
],
[
- -5.7387103,
- 51.6296003
+ -2.0383434,
+ 57.2411129
],
[
- -5.7387103,
- 51.774037
+ -1.878118,
+ 57.2421638
],
[
- -5.5095393,
- 51.774037
+ -1.8771469,
+ 57.2978175
],
[
- -5.5095393,
- 51.9802596
+ -1.9868771,
+ 57.2983422
],
[
- -5.198799,
- 51.9802596
+ -1.9082209,
+ 57.3560063
],
[
- -5.198799,
- 52.0973358
+ -1.8752048,
+ 57.3560063
],
[
- -4.8880588,
- 52.0973358
+ -1.8761758,
+ 57.3769527
],
[
- -4.8880588,
- 52.1831557
+ -1.8120857,
+ 57.4120111
],
[
- -4.4957492,
- 52.1831557
+ -1.7120661,
+ 57.4120111
],
[
- -4.4957492,
- 52.2925739
+ -1.7034646,
+ 57.6441388
],
[
- -4.3015365,
- 52.2925739
+ -1.8666032,
+ 57.6451781
],
[
- -4.3015365,
- 52.3685318
+ -1.8646611,
+ 57.7033351
],
[
- -4.1811246,
- 52.3685318
+ -3.1204292,
+ 57.7064705
],
[
- -4.1811246,
- 52.7933685
+ -3.1218025,
+ 57.7504652
],
[
- -4.4413696,
- 52.7933685
+ -3.4445259,
+ 57.7526635
],
[
- -4.4413696,
- 52.7369614
+ -3.4472724,
+ 57.7138067
],
[
- -4.8569847,
- 52.7369614
+ -3.5145637,
+ 57.7094052
],
[
- -4.8569847,
- 52.9317255
+ -3.5118171,
+ 57.6939956
],
[
- -4.7288044,
- 52.9317255
+ -3.7645027,
+ 57.6917938
],
[
- -4.7288044,
- 53.5038599
+ -3.7672492,
+ 57.6344975
],
[
- -4.1578191,
- 53.5038599
+ -3.842378,
+ 57.6288312
],
[
- -4.1578191,
- 53.4113498
+ -3.8438346,
+ 57.5965825
],
[
- -3.3110518,
- 53.4113498
+ -3.9414265,
+ 57.5916386
],
[
- -3.3110518,
- 53.5038599
+ -3.9404554,
+ 57.6537782
],
[
- -3.2333667,
- 53.5038599
+ -3.8894746,
+ 57.6529989
],
[
- -3.2333667,
- 54.0159169
+ -3.8826772,
+ 57.7676408
],
[
- -3.3926211,
- 54.0159169
+ -3.7224517,
+ 57.766087
],
[
- -3.3926211,
- 54.1980953
+ -3.7195385,
+ 57.8819201
],
[
- -3.559644,
- 54.1980953
+ -3.9146888,
+ 57.8853352
],
[
- -3.559644,
- 54.433732
+ -3.916062,
+ 57.9546243
],
[
- -3.7188984,
- 54.433732
+ -3.745774,
+ 57.9538956
],
[
- -3.7188984,
- 54.721897
+ -3.7471473,
+ 58.0688409
],
[
- -4.3015365,
- 54.721897
+ -3.5837256,
+ 58.0695672
],
[
- -4.3015365,
- 54.6140739
+ -3.5837256,
+ 58.1116689
],
[
- -5.0473132,
- 54.6140739
+ -3.4560096,
+ 58.1138452
],
[
- -5.0473132,
- 54.7532915
+ -3.4544646,
+ 58.228503
],
[
- -5.2298731,
- 54.7532915
+ -3.4379851,
+ 58.2283222
],
[
- -5.2298731,
- 55.2190799
+ -3.4243233,
+ 58.2427725
],
[
- -5.6532567,
- 55.2190799
+ -3.412307,
+ 58.2438567
],
[
- -5.6532567,
- 55.250088
+ -3.3735115,
+ 58.2695057
],
[
- -5.8979647,
- 55.250088
+ -3.3063919,
+ 58.2862038
],
[
- -5.8979647,
- 55.4822462
+ -3.1229154,
+ 58.2859395
],
[
- -6.5933212,
- 55.4822462
+ -3.123602,
+ 58.3443661
],
[
- -6.5933212,
- 56.3013441
+ -2.9574338,
+ 58.3447264
],
[
- -7.1727691,
- 56.3013441
+ -2.951254,
+ 58.6422011
],
[
- -7.1727691,
- 56.5601822
+ -2.8812162,
+ 58.6429157
],
[
- -6.8171722,
- 56.5601822
+ -2.8851004,
+ 58.8112825
],
[
- -6.8171722,
- 56.6991713
+ -2.7180775,
+ 58.8142997
],
[
- -6.5315276,
- 56.6991713
+ -2.7161354,
+ 58.8715749
],
[
- -6.5315276,
- 56.9066964
+ -2.556881,
+ 58.8775984
],
[
- -6.811679,
- 56.9066964
+ -2.5544533,
+ 58.9923453
],
[
- -6.811679,
- 57.3716613
+ -2.5567617,
+ 59.0483775
],
[
- -6.8721038,
- 57.3716613
+ -2.391893,
+ 59.0485996
],
[
- -6.8721038,
- 57.5518893
+ -2.3918002,
+ 59.1106996
],
[
- -7.0973235,
- 57.5518893
+ -2.4733695,
+ 59.1106996
],
[
- -7.0973235,
- 57.2411085
+ -2.5591563,
+ 59.1783028
],
[
- -7.1742278,
- 57.2411085
+ -2.5630406,
+ 59.2210646
],
[
- -7.1742278,
- 56.9066964
+ -2.3921334,
+ 59.224046
],
[
- -7.3719817,
- 56.9066964
+ -2.3911409,
+ 59.2740075
],
[
- -7.3719817,
- 56.8075885
+ -2.3639512,
+ 59.2745036
],
[
- -7.5202972,
- 56.8075885
+ -2.3658933,
+ 59.285417
],
[
- -7.5202972,
- 56.7142479
+ -2.3911409,
+ 59.284921
],
[
- -7.8306806,
- 56.7142479
+ -2.3911409,
+ 59.3379505
],
[
- -7.8306806,
- 56.8994605
+ -2.2221759,
+ 59.3381981
],
[
- -7.6494061,
- 56.8994605
+ -2.2233897,
+ 59.395965
],
[
- -7.6494061,
- 57.4739617
+ -2.3758467,
+ 59.396583
],
[
- -7.8306806,
- 57.4739617
+ -2.3899271,
+ 59.4026383
],
[
- -7.8306806,
- 57.7915584
+ -2.4008516,
+ 59.3962122
],
[
- -7.4736249,
- 57.7915584
+ -2.5637882,
+ 59.3952604
],
[
- -7.4736249,
- 58.086063
+ -2.5637882,
+ 59.3385811
],
[
- -7.1879804,
- 58.086063
+ -2.7320164,
+ 59.3375306
],
[
- -7.1879804,
- 58.367197
+ -2.7333896,
+ 59.3952604
],
[
- -6.8034589,
- 58.367197
+ -3.0726511,
+ 59.3931174
],
[
- -6.8034589,
- 58.4155786
+ -3.0703404,
+ 59.3354759
],
[
- -6.638664,
- 58.4155786
+ -3.0753186,
+ 59.3355634
],
[
- -6.638664,
- 58.4673277
+ -3.0749753,
+ 59.3292593
],
[
- -6.5178143,
- 58.4673277
+ -3.0698254,
+ 59.3289091
],
[
- -6.5178143,
- 58.5625632
+ -3.069801,
+ 59.2196159
],
[
- -6.0536224,
- 58.5625632
+ -3.2363384,
+ 59.2166341
],
[
- -6.0536224,
- 58.1568843
+ -3.2336751,
+ 59.1606496
],
[
- -6.1470062,
- 58.1568843
+ -3.4032766,
+ 59.1588895
],
[
- -6.1470062,
- 58.1105865
+ -3.394086,
+ 58.9279316
],
[
- -6.2799798,
- 58.1105865
+ -3.5664497,
+ 58.9259268
],
[
- -6.2799798,
- 57.7122664
+ -3.5611089,
+ 58.8679885
],
[
- -6.1591302,
- 57.7122664
+ -3.392508,
+ 58.8699339
],
[
- -6.1591302,
- 57.6667563
+ -3.3894734,
+ 58.8698711
],
[
- -5.9339104,
- 57.6667563
+ -3.3891093,
+ 58.8684905
],
[
- -5.9339104,
- 57.8892524
+ -3.3912942,
+ 58.868616
],
[
- -5.80643,
- 57.8892524
+ -3.3884161,
+ 58.7543084
],
[
- -5.80643,
- 57.9621767
+ -3.2238208,
+ 58.7555677
],
[
- -5.6141692,
- 57.9621767
+ -3.2189655,
+ 58.691289
],
[
- -5.6141692,
- 58.0911236
+ -3.4634113,
+ 58.6905753
],
[
- -5.490819,
- 58.0911236
+ -3.4551716,
+ 58.6341518
],
[
- -5.490819,
- 58.3733281
+ -3.787508,
+ 58.6341518
],
[
- -5.3199118,
- 58.3733281
+ -3.7861347,
+ 58.5769211
],
[
- -5.3199118,
- 58.75015
+ -3.9028645,
+ 58.5733411
],
[
- -3.5719977,
- 58.75015
+ -3.9028645,
+ 58.6477304
],
[
- -3.5719977,
- 59.2091788
+ -4.0690327,
+ 58.6491594
],
[
- -3.1944501,
- 59.2091788
+ -4.0690327,
+ 58.5912376
],
[
- -3.1944501,
- 59.4759216
+ -4.7364521,
+ 58.5933845
],
[
- -2.243583,
- 59.4759216
+ -4.7364521,
+ 58.6505884
],
[
- -2.243583,
- 59.1388749
+ -5.0715351,
+ 58.6520173
],
[
- -2.4611012,
- 59.1388749
+ -5.0654779,
+ 58.5325854
],
[
- -2.4611012,
- 58.8185938
+ -5.2332047,
+ 58.5316087
],
[
- -2.7407675,
- 58.8185938
+ -5.2283494,
+ 58.4719947
],
[
- -2.7407675,
- 58.5804743
+ -5.2424298,
+ 58.4719947
],
[
- -2.9116746,
- 58.5804743
+ -5.2366034,
+ 58.4089731
],
[
- -2.9116746,
- 58.1157523
+ -5.2283494,
+ 58.4094818
],
[
- -3.4865441,
- 58.1157523
+ -5.2210664,
+ 58.3005859
],
[
- -3.4865441,
- 57.740386
+ -5.5657939,
+ 58.2959933
],
[
- -1.7153245,
- 57.740386
+ -5.5580254,
+ 58.2372573
],
[
- -1.7153245,
- 57.2225558
+ -5.4146722,
+ 58.2401326
],
[
- -1.9794538,
- 57.2225558
+ -5.4141866,
+ 58.2267768
],
[
- -1.9794538,
- 56.8760742
+ -5.3885749,
+ 58.2272242
],
[
- -2.1658979,
- 56.8760742
+ -5.382714,
+ 58.1198615
],
[
- -2.1658979,
- 56.6333186
+ -5.51043,
+ 58.1191362
],
[
- -2.3601106,
- 56.6333186
+ -5.5114011,
+ 58.006214
],
[
- -2.3601106,
- 56.0477521
+ -5.6745397,
+ 58.0041559
],
[
- -1.9794538,
- 56.0477521
+ -5.6716266,
+ 57.9449366
],
[
- -1.9794538,
- 55.8650949
+ -5.6716266,
+ 57.8887166
],
[
- -1.4745008,
- 55.8650949
+ -5.8347652,
+ 57.8856193
],
[
- -1.4745008,
- 55.2499926
+ -5.8277052,
+ 57.5988958
],
[
- -1.3221997,
- 55.2499926
+ -6.0384259,
+ 57.5986357
],
[
- -1.3221997,
- 54.8221737
+ -6.0389115,
+ 57.6459559
],
[
- -1.0550014,
- 54.8221737
+ -6.1981658,
+ 57.6456961
],
[
- -1.0550014,
- 54.6746628
+ -6.2076123,
+ 57.7600132
],
[
- -0.6618765,
- 54.6746628
+ -6.537067,
+ 57.7544033
],
[
- -0.6618765,
- 54.5527463
+ -6.5312406,
+ 57.6402392
],
[
- -0.3247617,
- 54.5527463
+ -6.7002056,
+ 57.6360809
],
[
- -0.3247617,
- 54.2865195
+ -6.6807844,
+ 57.5236293
],
[
- 0.0092841,
- 54.2865195
+ -6.8516915,
+ 57.5152857
],
[
- 0.0092841,
- 53.7938518
+ -6.8361545,
+ 57.3385811
],
[
- 0.2081962,
- 53.7938518
+ -6.6730158,
+ 57.3438213
],
[
- 0.2081962,
- 53.5217726
+ -6.674958,
+ 57.2850883
],
[
- 0.4163548,
- 53.5217726
+ -6.5098772,
+ 57.2850883
],
[
- 0.4163548,
- 53.0298851
+ -6.4982244,
+ 57.1757637
],
[
- 1.4273388,
- 53.0298851
+ -6.3506228,
+ 57.1820797
],
[
- 1.4273388,
- 52.92021
+ -6.3312015,
+ 57.1251969
],
[
- 1.8333912,
- 52.92021
+ -6.1797156,
+ 57.1230884
],
[
- 1.8333912,
- 52.042488
+ -6.1719471,
+ 57.0682265
],
[
- 1.5235504,
- 52.042488
+ -6.4593819,
+ 57.059779
],
[
- 1.5235504,
- 51.8261335
+ -6.4564687,
+ 57.1093806
],
[
- 1.2697049,
- 51.8261335
+ -6.6671895,
+ 57.1062165
],
[
- 1.2697049,
- 51.6967453
+ -6.6730158,
+ 57.002708
],
[
- 1.116651,
- 51.6967453
+ -6.5021087,
+ 57.0048233
],
[
- 1.116651,
- 51.440346
+ -6.4836097,
+ 56.8917522
],
[
- 1.5235504,
- 51.440346
+ -6.3266104,
+ 56.8894062
],
[
- 1.5235504,
- 51.3331831
+ -6.3156645,
+ 56.7799312
],
[
- 1.4507565,
- 51.3331831
+ -6.2146739,
+ 56.775675
],
[
- 1.4507565,
- 51.0207553
+ -6.2146739,
+ 56.7234965
],
[
- 1.0699883,
- 51.0207553
+ -6.6866107,
+ 56.7224309
],
[
- 1.0699883,
- 50.9008416
+ -6.6769001,
+ 56.6114413
],
[
- 0.7788126,
- 50.9008416
+ -6.8419809,
+ 56.607166
],
[
- 0.7788126,
- 50.729843
+ -6.8400387,
+ 56.5483307
],
[
- -0.7255952,
- 50.729843
+ -7.1546633,
+ 56.5461895
],
[
- -0.7255952,
- 50.7038437
+ -7.1488369,
+ 56.4872592
],
[
- -1.0074383,
- 50.7038437
+ -6.9915246,
+ 56.490476
],
[
- -1.0074383,
- 50.5736307
+ -6.9876404,
+ 56.4325329
],
[
- -2.3625252,
- 50.5736307
+ -6.6827265,
+ 56.4314591
],
[
- -2.3625252,
- 50.4846421
+ -6.6769001,
+ 56.5472601
],
[
- -2.4987805,
- 50.4846421
+ -6.5292985,
+ 56.5504717
],
[
- -2.4987805,
- 50.5736307
+ -6.5234721,
+ 56.4379018
],
[
- -3.4096378,
- 50.5736307
+ -6.3661598,
+ 56.4368281
],
[
- -3.4096378,
- 50.2057837
+ -6.3642177,
+ 56.3766524
],
[
- -3.6922446,
- 50.2057837
+ -6.5273563,
+ 56.3712749
],
[
- -3.6922446,
- 50.1347737
+ -6.5171745,
+ 56.2428427
],
[
- -5.005468,
- 50.1347737
+ -6.4869621,
+ 56.247421
],
[
- -5.005468,
- 49.9474456
+ -6.4869621,
+ 56.1893882
],
[
- -5.2839506,
- 49.9474456
+ -6.3001945,
+ 56.1985572
],
[
- -5.2839506,
- 50.0229734
- ]
- ],
- [
- [
- -6.4580707,
- 49.8673563
+ -6.3029411,
+ 56.2581017
],
[
- -6.4580707,
- 49.9499935
+ -5.9019401,
+ 56.256576
],
[
- -6.3978807,
- 49.9499935
+ -5.8964469,
+ 56.0960466
],
[
- -6.3978807,
- 50.0053797
+ -6.0282829,
+ 56.0883855
],
[
- -6.1799606,
- 50.0053797
+ -6.0392692,
+ 56.1557502
],
[
- -6.1799606,
- 49.9168614
+ -6.3853385,
+ 56.1542205
],
[
- -6.2540201,
- 49.9168614
+ -6.3606193,
+ 55.96099
],
[
- -6.2540201,
- 49.8673563
- ]
- ],
- [
+ -6.2123039,
+ 55.9640647
+ ],
[
- -5.8343165,
- 49.932156
+ -6.2047508,
+ 55.9202269
],
[
- -5.8343165,
- 49.9754641
+ -6.5185478,
+ 55.9129158
],
[
- -5.7683254,
- 49.9754641
+ -6.5061881,
+ 55.7501763
],
[
- -5.7683254,
- 49.932156
- ]
- ],
- [
+ -6.6764762,
+ 55.7409005
+ ],
[
- -1.9483797,
- 60.6885737
+ -6.6599967,
+ 55.6263176
],
[
- -1.9483797,
- 60.3058841
+ -6.3551261,
+ 55.6232161
],
[
- -1.7543149,
- 60.3058841
+ -6.3578727,
+ 55.5689002
],
[
- -1.7543149,
- 60.1284428
+ -6.0392692,
+ 55.5720059
],
[
- -1.5754914,
- 60.1284428
+ -6.0310294,
+ 55.6247669
],
[
- -1.5754914,
- 59.797917
+ -5.7398917,
+ 55.6309694
],
[
- -1.0316959,
- 59.797917
+ -5.7371452,
+ 55.4569279
],
[
- -1.0316959,
- 60.0354518
+ -5.8964469,
+ 55.4600426
],
[
- -0.6626918,
- 60.0354518
+ -5.8964469,
+ 55.2789864
],
[
- -0.6626918,
- 60.9103862
+ -5.4350211,
+ 55.2821151
],
[
- -1.1034395,
- 60.9103862
+ -5.4405143,
+ 55.4506979
],
[
- -1.1034395,
- 60.8040022
+ -5.2867057,
+ 55.4569279
],
[
- -1.3506319,
- 60.8040022
+ -5.3086784,
+ 55.4070602
],
[
- -1.3506319,
- 60.6885737
- ]
- ],
- [
+ -4.9735954,
+ 55.4008223
+ ],
[
- -2.203381,
- 60.1968568
+ -4.9845817,
+ 55.2038242
],
[
- -2.203381,
- 60.0929443
+ -5.1493766,
+ 55.2038242
],
[
- -1.9864011,
- 60.0929443
+ -5.1411369,
+ 55.037337
],
[
- -1.9864011,
- 60.1968568
+ -5.2152946,
+ 55.0341891
]
],
[
[
- -1.7543149,
- 59.5698289
+ -2.1646559,
+ 60.1622059
],
[
- -1.7543149,
- 59.4639383
- ],
+ -1.9930299,
+ 60.1609801
+ ],
[
- -1.5373349,
- 59.4639383
+ -1.9946862,
+ 60.1035151
],
[
- -1.5373349,
- 59.5698289
+ -2.1663122,
+ 60.104743
]
],
[
[
- -4.5585981,
- 59.1370518
+ -1.5360658,
+ 59.8570831
],
[
- -4.5585981,
- 58.9569099
+ -1.3653566,
+ 59.8559841
],
[
- -4.2867004,
- 58.9569099
+ -1.366847,
+ 59.7975565
],
[
- -4.2867004,
- 59.1370518
- ]
- ],
- [
+ -1.190628,
+ 59.7964199
+ ],
[
- -6.2787732,
- 59.2025744
+ -1.1862046,
+ 59.9695391
],
[
- -6.2787732,
- 59.0227769
+ -1.0078652,
+ 59.9683948
],
[
- -5.6650612,
- 59.0227769
+ -1.0041233,
+ 60.114145
],
[
- -5.6650612,
- 59.2025744
- ]
- ],
- [
+ -0.8360832,
+ 60.1130715
+ ],
[
- -8.7163482,
- 57.9440556
+ -0.834574,
+ 60.1716772
],
[
- -8.7163482,
- 57.7305936
+ -1.0074262,
+ 60.1727795
],
[
- -8.3592926,
- 57.7305936
+ -1.0052165,
+ 60.2583924
],
[
- -8.3592926,
- 57.9440556
- ]
- ],
- [
+ -0.8299659,
+ 60.2572778
+ ],
[
- -7.6077005,
- 50.4021026
+ -0.826979,
+ 60.3726551
],
[
- -7.6077005,
- 50.2688657
+ -0.6507514,
+ 60.3715381
],
[
- -7.3907205,
- 50.2688657
+ -0.6477198,
+ 60.4882292
],
[
- -7.3907205,
- 50.4021026
- ]
- ],
- [
+ -0.9984896,
+ 60.4904445
+ ],
[
- -7.7304303,
- 58.3579902
+ -0.9970279,
+ 60.546555
],
[
- -7.7304303,
- 58.248313
+ -0.6425288,
+ 60.5443201
],
[
- -7.5134503,
- 58.248313
+ -0.6394896,
+ 60.6606792
],
[
- -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": [
- [
+ -0.8148133,
+ 60.6617806
+ ],
[
- -7.8,
- 54.5
+ -0.8132987,
+ 60.7196112
],
[
- -7.8,
- 61.1
+ -0.6383298,
+ 60.7185141
],
[
- -1.1,
- 61.1
+ -0.635467,
+ 60.8275393
],
[
- -1.1,
- 54.5
+ -0.797568,
+ 60.8285523
],
[
- -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": [
- [
+ -0.9941426,
+ 60.8297807
+ ],
[
- -2.14039404,
- 57.11218789
+ -0.9954966,
+ 60.7782667
],
[
- -2.14064752,
- 57.17894161
+ -1.1670282,
+ 60.7793403
],
[
- -2.04501987,
- 57.17901252
+ -1.1700357,
+ 60.6646181
],
[
- -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": [
- [
+ -1.5222599,
+ 60.6668304
+ ],
[
- -3.99291738,
- 55.86408041
+ -1.5237866,
+ 60.6084426
],
[
- -3.99338933,
- 55.87329115
+ -1.6975673,
+ 60.609536
],
[
- -3.9691085,
- 55.87368212
+ -1.7021271,
+ 60.4345249
],
[
- -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": [
- [
+ -1.5260578,
+ 60.4334111
+ ],
[
- -4.58973571,
- 55.97536707
+ -1.5275203,
+ 60.3770719
],
[
- -4.59104461,
- 55.99493153
+ -1.8751127,
+ 60.3792746
],
[
- -4.55985072,
- 55.99558348
+ -1.8781372,
+ 60.2624647
],
[
- -4.55855754,
- 55.97601855
+ -1.7019645,
+ 60.2613443
+ ],
+ [
+ -1.7049134,
+ 60.1470532
+ ],
+ [
+ -1.528659,
+ 60.1459283
]
- ]
- ],
- "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
+ -0.9847667,
+ 60.8943762
],
[
- -3.81274448,
- 56.12169929
+ -0.9860347,
+ 60.8361105
],
[
- -3.7804609,
- 56.12216898
+ -0.8078362,
+ 60.8351904
],
[
- -3.77939631,
- 56.09911292
+ -0.8065683,
+ 60.8934578
]
- ]
- ],
- "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
+ -7.7696901,
+ 56.8788231
],
[
- -3.27960062,
- 54.9946601
+ -7.7614504,
+ 56.7608274
],
[
- -3.24866331,
- 54.99498165
+ -7.6009049,
+ 56.7641903
],
[
- -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
+ -7.5972473,
+ 56.819332
],
[
- -2.60764981,
- 56.57022426
+ -7.4479894,
+ 56.8203948
],
[
- -2.56498708,
- 56.57042549
+ -7.4489319,
+ 56.8794098
],
[
- -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": [
- [
+ -7.2841369,
+ 56.8794098
+ ],
[
- -4.66768105,
- 55.43748864
+ -7.2813904,
+ 57.0471152
],
[
- -4.67080057,
- 55.48363961
+ -7.1303283,
+ 57.0515969
],
[
- -4.60609844,
- 55.48503484
+ -7.1330749,
+ 57.511801
],
[
- -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": [
- [
+ -6.96828,
+ 57.5147514
+ ],
[
- -2.02117487,
- 55.75577627
+ -6.9765198,
+ 57.6854668
],
[
- -2.02118763,
- 55.77904118
+ -6.8062317,
+ 57.6913392
],
[
- -1.98976956,
- 55.77904265
+ -6.8089782,
+ 57.8041985
],
[
- -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": [
- [
+ -6.6496765,
+ 57.8071252
+ ],
[
- -2.67480248,
- 56.71456775
+ -6.6441833,
+ 57.8612267
],
[
- -2.67521172,
- 56.73739937
+ -6.3200866,
+ 57.8626878
],
[
- -2.64319679,
- 56.73756872
+ -6.3200866,
+ 58.1551617
],
[
- -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": [
- [
+ -6.1607849,
+ 58.1522633
+ ],
[
- -3.24879624,
- 56.04240046
+ -6.1552917,
+ 58.20874
],
[
- -3.2495182,
- 56.06472996
+ -5.9850036,
+ 58.2101869
],
[
- -3.21830572,
- 56.06504207
+ -5.9904968,
+ 58.2680163
],
[
- -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": [
- [
+ -6.1497986,
+ 58.2665717
+ ],
[
- -5.62345307,
- 55.40255998
+ -6.1415588,
+ 58.5557514
],
[
- -5.62631353,
- 55.43375303
+ -6.3173401,
+ 58.5557514
],
[
- -5.58276654,
- 55.43503753
+ -6.3091003,
+ 58.4983923
],
[
- -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": [
- [
+ -6.4876282,
+ 58.4955218
+ ],
[
- -4.05035921,
- 55.84648689
+ -6.4876282,
+ 58.4423768
],
[
- -4.05157062,
- 55.86947193
+ -6.6606628,
+ 58.4395018
],
[
- -4.01953905,
- 55.87000186
+ -6.6469299,
+ 58.3819525
],
[
- -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": [
- [
+ -6.8117248,
+ 58.3805125
+ ],
[
- -3.04765872,
- 56.28653177
+ -6.8117248,
+ 58.3286357
],
[
- -3.04890965,
- 56.332192
+ -6.9792663,
+ 58.3286357
],
[
- -2.98498515,
- 56.33271677
+ -6.9710266,
+ 58.2694608
],
[
- -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": [
- [
+ -7.1413147,
+ 58.2680163
+ ],
[
- -3.0327697,
- 56.30243657
+ -7.1403816,
+ 58.0358742
],
[
- -3.03338443,
- 56.32520139
+ -7.3020636,
+ 58.0351031
],
[
- -3.00146629,
- 56.32546356
+ -7.3030347,
+ 57.9774797
],
[
- -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": [
- [
+ -7.1379539,
+ 57.9777372
+ ],
[
- -3.07862465,
- 55.88900264
+ -7.1413526,
+ 57.9202792
],
[
- -3.0790381,
- 55.90389729
+ -7.1398961,
+ 57.8640206
],
[
- -3.05835611,
- 55.90407681
+ -7.3020636,
+ 57.862471
],
[
- -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": [
- [
+ -7.298484,
+ 57.7442293
+ ],
[
- -3.08600192,
- 55.87936087
+ -7.4509193,
+ 57.7456951
],
[
- -3.08658588,
- 55.90025926
+ -7.4550392,
+ 57.6899522
],
[
- -3.0436473,
- 55.90063074
+ -7.6186131,
+ 57.6906048
],
[
- -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": [
- [
+ -7.6198341,
+ 57.7456951
+ ],
[
- -4.58559982,
- 55.92742578
+ -7.7901222,
+ 57.7442293
],
[
- -4.58714245,
- 55.95056014
+ -7.7873756,
+ 57.6855477
],
[
- -4.55463269,
- 55.95123882
+ -7.6222332,
+ 57.6853817
],
[
- -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": [
- [
+ -7.6173779,
+ 57.5712602
+ ],
[
- -3.63928076,
- 55.03715991
+ -7.788285,
+ 57.5709998
],
[
- -3.64116352,
- 55.08319002
+ -7.7892561,
+ 57.512109
],
[
- -3.57823183,
- 55.08402202
+ -7.7038025,
+ 57.5115874
],
[
- -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": [
- [
+ -7.6999183,
+ 57.4546902
+ ],
[
- -3.63179081,
- 55.04150111
+ -7.5367796,
+ 57.4552126
],
[
- -3.63330662,
- 55.07873429
+ -7.5348375,
+ 57.5126306
],
[
- -3.58259012,
- 55.07940411
+ -7.4581235,
+ 57.5131521
],
[
- -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": [
- [
+ -7.4552103,
+ 57.2824165
+ ],
[
- -3.02584468,
- 56.44879161
+ -7.6115515,
+ 57.2845158
],
[
- -3.02656969,
- 56.47566815
+ -7.6144647,
+ 57.2272651
],
[
- -2.94710317,
- 56.47629984
+ -7.451326,
+ 57.2256881
],
[
- -2.94643424,
- 56.44942266
+ -7.451326,
+ 57.1103873
+ ],
+ [
+ -7.6164068,
+ 57.1088053
+ ],
+ [
+ -7.603783,
+ 56.8792358
]
- ]
- ],
- "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
+ -1.7106618,
+ 59.5626284
],
[
- -3.03497463,
- 56.48435238
+ -1.5417509,
+ 59.562215
],
[
- -2.92352705,
- 56.48523137
+ -1.5423082,
+ 59.5037224
],
[
- -2.92265681,
- 56.4493748
+ -1.7112191,
+ 59.5041365
]
]
],
- "terms_url": "http://maps.nls.uk/townplans/dundee_2.html",
- "terms_text": "National Library of Scotland - Dundee 1870-1872"
+ "terms_url": "http://geo.nls.uk/maps/",
+ "terms_text": "National Library of Scotland Historic Maps"
},
{
- "name": "OS Town Plans, Dunfermline 1854 (NLS)",
+ "name": "New & Misaligned TIGER Roads",
"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",
+ "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/v4/enf.e0b8291e/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJhNVlHd29ZIn0.ti6wATGDWOmCnCYen-Ip7Q",
"scaleExtent": [
- 13,
- 20
+ 0,
+ 22
],
"polygon": [
[
[
- -3.49045481,
- 56.0605979
+ -124.7617886,
+ 48.4130148
],
[
- -3.49116489,
- 56.07898822
+ -124.6059492,
+ 45.90245
],
[
- -3.44374075,
- 56.07955208
+ -124.9934269,
+ 40.0557614
],
[
- -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": [
- [
+ -122.5369737,
+ 36.8566086
+ ],
[
- -3.48284159,
- 56.05198219
+ -119.9775867,
+ 33.0064099
],
[
- -3.48399434,
- 56.08198924
+ -117.675935,
+ 32.4630223
],
[
- -3.44209721,
- 56.08248587
+ -114.8612307,
+ 32.4799891
],
[
- -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": [
- [
+ -111.0089311,
+ 31.336015
+ ],
[
- -3.2361048,
- 55.921366
+ -108.1992687,
+ 31.3260016
],
[
- -3.23836397,
- 55.99217223
+ -108.1871123,
+ 31.7755116
],
[
- -3.14197035,
- 55.99310288
+ -106.5307225,
+ 31.7820947
],
[
- -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": [
- [
+ -106.4842052,
+ 31.7464455
+ ],
[
- -3.24740498,
- 55.92116518
+ -106.429317,
+ 31.7520583
],
[
- -3.24989581,
- 55.99850896
+ -106.2868855,
+ 31.5613291
],
[
- -3.13061127,
- 55.99966059
+ -106.205248,
+ 31.446704
],
[
- -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": [
- [
+ -105.0205259,
+ 30.5360988
+ ],
[
- -3.26111081,
- 55.89555387
+ -104.5881916,
+ 29.6997856
],
[
- -3.26450423,
- 55.9997912
+ -103.2518856,
+ 28.8908685
],
[
- -3.11970824,
- 56.00119128
+ -102.7173632,
+ 29.3920567
],
[
- -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": [
- [
+ -102.1513983,
+ 29.7475702
+ ],
[
- -3.33665196,
- 57.62879017
+ -101.2552871,
+ 29.4810523
],
[
- -3.33776583,
- 57.65907381
+ -100.0062436,
+ 28.0082173
],
[
- -3.29380859,
- 57.65953111
+ -99.2351068,
+ 26.4475962
],
[
- -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": [
- [
+ -98.0109067,
+ 25.9928035
+ ],
[
- -3.79587441,
- 55.99343101
+ -97.435024,
+ 25.8266009
],
[
- -3.79697783,
- 56.01720281
+ -96.9555259,
+ 25.9821589
],
[
- -3.76648151,
- 56.01764348
+ -96.8061741,
+ 27.7978168
],
[
- -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": [
- [
+ -95.5563349,
+ 28.5876066
+ ],
[
- -2.90326183,
- 56.6289471
+ -93.7405308,
+ 29.4742093
],
[
- -2.90378797,
- 56.65095013
+ -90.9028456,
+ 28.8564513
],
[
- -2.87228457,
- 56.65117489
+ -88.0156706,
+ 28.9944338
],
[
- -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": [
- [
+ -88.0162494,
+ 30.0038862
+ ],
[
- -3.63516795,
- 57.58887872
+ -86.0277506,
+ 30.0047454
],
[
- -3.63647637,
- 57.618002
+ -84.0187909,
+ 28.9961781
],
[
- -3.57751453,
- 57.61875171
+ -81.9971976,
+ 25.9826768
],
[
- -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": [
- [
+ -81.9966618,
+ 25.0134917
+ ],
[
- -2.82918609,
- 55.59586303
+ -84.0165592,
+ 25.0125783
],
[
- -2.82981273,
- 55.62554026
+ -84.0160068,
+ 24.0052745
],
[
- -2.78895254,
- 55.62580992
+ -80.0199985,
+ 24.007096
],
[
- -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": [
- [
+ -79.8901116,
+ 26.8550713
+ ],
[
- -4.87424251,
- 55.22679729
+ -80.0245309,
+ 32.0161282
],
[
- -4.87587895,
- 55.24945946
+ -75.4147385,
+ 35.0531894
],
[
- -4.84447382,
- 55.25019598
+ -74.0211163,
+ 39.5727927
],
[
- -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": [
- [
+ -72.002019,
+ 40.9912464
+ ],
[
- -4.31575491,
- 55.82072009
+ -69.8797398,
+ 40.9920457
],
[
- -4.319683,
- 55.88667625
+ -69.8489304,
+ 43.2619916
],
[
- -4.1771319,
- 55.88928081
+ -66.9452845,
+ 44.7104937
],
[
- -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": [
- [
+ -67.7596632,
+ 47.0990024
+ ],
[
- -4.3465357,
- 55.81456228
+ -69.2505131,
+ 47.5122328
],
[
- -4.35157646,
- 55.89806268
+ -70.4614886,
+ 46.2176574
],
[
- -4.17788765,
- 55.9012587
+ -71.412273,
+ 45.254878
],
[
- -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": [
- [
+ -72.0222508,
+ 45.0059846
+ ],
[
- -4.78108857,
- 55.92617865
+ -75.0798841,
+ 44.9802854
],
[
- -4.78382957,
- 55.96437481
+ -76.9023061,
+ 43.8024568
],
[
- -4.7302257,
- 55.96557475
+ -78.7623935,
+ 43.6249578
],
[
- -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": [
- [
+ -79.15798,
+ 43.4462589
+ ],
[
- -2.78855542,
- 55.9451862
+ -79.0060087,
+ 42.8005317
],
[
- -2.78888196,
- 55.96124194
+ -82.662475,
+ 41.6889458
],
[
- -2.76674325,
- 55.9613817
+ -82.1761642,
+ 43.588535
],
[
- -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": [
- [
+ -83.2813977,
+ 46.138853
+ ],
[
- -2.80152293,
- 55.93428734
+ -87.5064535,
+ 48.0142702
],
[
- -2.80214693,
- 55.96447189
+ -88.3492194,
+ 48.2963271
],
[
- -2.76038069,
- 55.9647367
+ -89.4353148,
+ 47.9837822
],
[
- -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": [
- [
+ -93.9981078,
+ 49.0067142
+ ],
[
- -4.06721642,
- 55.74877265
+ -95.1105379,
+ 49.412004
],
[
- -4.06924047,
- 55.78698508
+ -96.0131199,
+ 49.0060547
],
[
- -4.01679233,
- 55.78785698
+ -123.3228926,
+ 49.0042878
],
[
- -4.01481949,
- 55.74964331
+ -123.2275233,
+ 48.1849927
]
- ]
- ],
- "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
+ -160.5787616,
+ 22.5062947
],
[
- -2.80176329,
- 55.43304638
+ -160.5782192,
+ 21.4984647
],
[
- -2.7708832,
- 55.43324489
+ -158.7470604,
+ 21.2439843
],
[
- -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": [
- [
+ -157.5083185,
+ 20.995803
+ ],
[
- -4.25481758,
- 57.45916363
+ -155.9961942,
+ 18.7790194
],
[
- -4.25752308,
- 57.50302387
+ -154.6217803,
+ 18.7586966
],
[
- -4.19713638,
- 57.50409032
+ -154.6890176,
+ 19.8805722
],
[
- -4.1945031,
- 57.46022829
+ -156.2927622,
+ 21.2225888
+ ],
+ [
+ -157.5047384,
+ 21.9984962
+ ],
+ [
+ -159.0093692,
+ 22.5070181
]
- ]
- ],
- "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
+ -167.1571546,
+ 68.721974
],
[
- -4.67643252,
- 55.62159024
+ -164.8553982,
+ 67.0255078
],
[
- -4.65537888,
- 55.62204812
- ],
+ -168.002195,
+ 66.0017503
+ ],
[
- -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": [
- [
+ -169.0087448,
+ 66.001546
+ ],
[
- -2.56332521,
- 55.47105448
+ -169.0075381,
+ 64.9987675
],
[
- -2.56355503,
- 55.48715562
+ -172.5143281,
+ 63.8767267
],
[
- -2.54168193,
- 55.48725438
+ -173.8197023,
+ 59.74014
],
[
- -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": [
- [
+ -162.5018149,
+ 58.0005815
+ ],
[
- -2.44924544,
- 55.58390848
+ -160.0159024,
+ 58.0012389
],
[
- -2.44949757,
- 55.6059582
+ -160.0149725,
+ 57.000035
],
[
- -2.41902085,
- 55.60606617
+ -160.5054788,
+ 56.9999017
],
[
- -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": [
- [
+ -165.8092575,
+ 54.824847
+ ],
[
- -4.51746876,
- 55.58950933
+ -178.000097,
+ 52.2446469
],
[
- -4.5194347,
- 55.62017114
+ -177.9992996,
+ 51.2554252
],
[
- -4.47675652,
- 55.62104083
+ -171.4689067,
+ 51.8215329
],
[
- -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": [
- [
+ -162.40251,
+ 53.956664
+ ],
[
- -3.17455285,
- 56.09518942
+ -159.0075717,
+ 55.002502
],
[
- -3.17554995,
- 56.12790251
+ -158.0190709,
+ 55.0027849
],
[
- -3.12991402,
- 56.12832843
+ -151.9963213,
+ 55.9991902
],
[
- -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": [
- [
+ -151.500341,
+ 57.9987853
+ ],
[
- -3.17460426,
- 56.09513375
+ -151.5012894,
+ 58.9919816
],
[
- -3.17560428,
- 56.12794116
+ -138.5159989,
+ 58.9953194
],
[
- -3.12989512,
- 56.12836777
+ -138.5150471,
+ 57.9986434
],
[
- -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": [
- [
+ -133.9948193,
+ 54.0031685
+ ],
[
- -4.06154334,
- 54.82586314
+ -130.0044418,
+ 54.0043387
],
[
- -4.0623081,
- 54.84086061
+ -130.0070826,
+ 57.0000507
],
[
- -4.0420219,
- 54.84120364
+ -131.975877,
+ 56.9995156
],
[
- -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": [
- [
+ -135.1229873,
+ 59.756601
+ ],
[
- -4.06001868,
- 54.82720122
+ -138.0071813,
+ 59.991805
],
[
- -4.06079036,
- 54.84234455
+ -139.1715881,
+ 60.4127229
],
[
- -4.04025067,
- 54.84269158
+ -140.9874011,
+ 61.0118551
],
[
- -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": [
- [
+ -140.9683975,
+ 69.9535069
+ ],
[
- -4.16664222,
- 55.93124287
+ -156.176891,
+ 71.5633329
],
[
- -4.16748402,
- 55.94631265
+ -160.413634,
+ 70.7397728
],
[
- -4.14637318,
- 55.94668235
+ -163.0218273,
+ 69.9707435
],
[
- -4.14553956,
- 55.93161237
+ -164.9717003,
+ 68.994689
]
]
],
- "terms_url": "http://maps.nls.uk/townplans/kirkintilloch.html",
- "terms_text": "National Library of Scotland - Kirkintilloch 1859"
+ "overlay": true
},
{
- "name": "OS Town Plans, Kirriemuir 1861 (NLS)",
+ "name": "OS 1:25k historic (OSM)",
"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",
+ "template": "http://ooc.openstreetmap.org/os1/{zoom}/{x}/{y}.jpg",
"scaleExtent": [
- 13,
- 20
+ 6,
+ 17
],
"polygon": [
[
[
- -3.01255744,
- 56.65896044
+ -9,
+ 49.8
],
[
- -3.01302683,
- 56.67645382
+ -9,
+ 61.1
],
[
- -2.98815879,
- 56.67665366
+ 1.9,
+ 61.1
],
[
- -2.98770092,
- 56.65916014
+ 1.9,
+ 49.8
+ ],
+ [
+ -9,
+ 49.8
]
]
- ],
- "terms_url": "http://maps.nls.uk/townplans/kirriemuir.html",
- "terms_text": "National Library of Scotland - Kirriemuir 1861"
+ ]
},
{
- "name": "OS Town Plans, Lanark 1858 (NLS)",
+ "name": "OS New Popular Edition historic",
"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
- ],
+ "template": "http://ooc.openstreetmap.org/npe/{zoom}/{x}/{y}.png",
"polygon": [
[
[
- -3.78642584,
- 55.66308804
+ -5.8,
+ 49.8
],
[
- -3.78710605,
- 55.67800854
+ -5.8,
+ 55.8
],
[
- -3.76632876,
- 55.67830935
+ 1.9,
+ 55.8
],
[
- -3.76565645,
- 55.66338868
+ 1.9,
+ 49.8
+ ],
+ [
+ -5.8,
+ 49.8
]
]
- ],
- "terms_url": "http://maps.nls.uk/townplans/lanark.html",
- "terms_text": "National Library of Scotland - Lanark 1858"
+ ]
},
{
- "name": "OS Town Plans, Linlithgow 1856 (NLS)",
+ "name": "OS OpenData Locator",
"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
- ],
+ "template": "http://tiles.itoworld.com/os_locator/{zoom}/{x}/{y}.png",
"polygon": [
[
[
- -3.61908334,
- 55.95549561
+ -9,
+ 49.8
],
[
- -3.62033259,
- 55.98538615
+ -9,
+ 61.1
],
[
- -3.57838447,
- 55.98593047
+ 1.9,
+ 61.1
],
[
- -3.57716753,
- 55.95603932
+ 1.9,
+ 49.8
+ ],
+ [
+ -9,
+ 49.8
]
]
],
- "terms_url": "http://maps.nls.uk/townplans/linlithgow.html",
- "terms_text": "National Library of Scotland - Linlithgow 1856"
+ "overlay": true
},
{
- "name": "OS Town Plans, Mayole 1856-1857 (NLS)",
+ "name": "OS OpenData StreetView",
"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",
+ "template": "http://os.openstreetmap.org/sv/{zoom}/{x}/{y}.png",
"scaleExtent": [
- 13,
- 20
+ 1,
+ 18
],
"polygon": [
[
[
- -4.69086378,
- 55.34340178
+ -5.8292886,
+ 50.0229734
],
[
- -4.6918884,
- 55.35849731
+ -5.8292886,
+ 50.254819
],
[
- -4.67089656,
- 55.35895813
+ -5.373356,
+ 50.254819
],
[
- -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": [
- [
+ -5.373356,
+ 50.3530588
+ ],
[
- -2.4859324,
- 56.69645192
+ -5.1756021,
+ 50.3530588
],
[
- -2.4862257,
- 56.71918799
+ -5.1756021,
+ 50.5925406
],
[
- -2.45405417,
- 56.71930941
+ -4.9970743,
+ 50.5925406
],
[
- -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": [
- [
+ -4.9970743,
+ 50.6935617
+ ],
[
- -3.07888558,
- 55.93371953
+ -4.7965738,
+ 50.6935617
],
[
- -3.07954151,
- 55.95729781
+ -4.7965738,
+ 50.7822112
],
[
- -3.03240684,
- 55.95770177
+ -4.6949503,
+ 50.7822112
],
[
- -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": [
- [
+ -4.6949503,
+ 50.9607371
+ ],
[
- -3.07017621,
- 55.92694102
+ -4.6043131,
+ 50.9607371
],
[
- -3.07078961,
- 55.94917624
+ -4.6043131,
+ 51.0692066
],
[
- -3.03988228,
- 55.94944099
+ -4.3792215,
+ 51.0692066
],
[
- -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": [
- [
+ -4.3792215,
+ 51.2521782
+ ],
[
- -3.88433907,
- 57.57899149
+ -3.9039346,
+ 51.2521782
],
[
- -3.88509905,
- 57.5936822
+ -3.9039346,
+ 51.2916998
],
[
- -3.85931017,
- 57.59406441
+ -3.7171671,
+ 51.2916998
],
[
- -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": [
- [
+ -3.7171671,
+ 51.2453014
+ ],
[
- -5.49548449,
- 56.39080407
+ -3.1486246,
+ 51.2453014
],
[
- -5.49836627,
- 56.42219039
+ -3.1486246,
+ 51.362067
],
[
- -5.45383984,
- 56.42343933
+ -3.7446329,
+ 51.362067
],
[
- -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.7446329,
+ 51.4340386
+ ],
[
- -3.20921287,
- 55.63635834
+ -3.8297769,
+ 51.4340386
],
[
- -3.20990288,
- 55.65873817
+ -3.8297769,
+ 51.5298246
],
[
- -3.17896372,
- 55.65903935
+ -4.0852091,
+ 51.5298246
],
[
- -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": [
- [
+ -4.0852091,
+ 51.4939284
+ ],
[
- -3.45302495,
- 56.37794226
+ -4.3792215,
+ 51.4939284
],
[
- -3.45416664,
- 56.40789908
+ -4.3792215,
+ 51.5427168
],
[
- -3.41187528,
- 56.40838777
+ -5.1444195,
+ 51.5427168
],
[
- -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": [
- [
+ -5.1444195,
+ 51.6296003
+ ],
[
- -1.80513747,
- 57.48046916
+ -5.7387103,
+ 51.6296003
],
[
- -1.80494005,
- 57.51755411
+ -5.7387103,
+ 51.774037
],
[
- -1.75135366,
- 57.51746003
+ -5.5095393,
+ 51.774037
],
[
- -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": [
- [
+ -5.5095393,
+ 51.9802596
+ ],
[
- -4.70063209,
- 55.91995983
+ -5.198799,
+ 51.9802596
],
[
- -4.70222026,
- 55.9427679
+ -5.198799,
+ 52.0973358
],
[
- -4.67084958,
- 55.94345237
+ -4.8880588,
+ 52.0973358
],
[
- -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": [
- [
+ -4.8880588,
+ 52.1831557
+ ],
[
- -3.12437919,
- 55.93846889
+ -4.4957492,
+ 52.1831557
],
[
- -3.1250234,
- 55.96068605
+ -4.4957492,
+ 52.2925739
],
[
- -3.09394827,
- 55.96096586
+ -4.3015365,
+ 52.2925739
],
[
- -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": [
- [
+ -4.3015365,
+ 52.3685318
+ ],
[
- -5.06449893,
- 55.82864114
+ -4.1811246,
+ 52.3685318
],
[
- -5.06569719,
- 55.84385927
+ -4.1811246,
+ 52.7933685
],
[
- -5.04413114,
- 55.84439519
+ -4.4413696,
+ 52.7933685
],
[
- -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": [
- [
+ -4.4413696,
+ 52.7369614
+ ],
[
- -2.85998582,
- 55.53499576
+ -4.8569847,
+ 52.7369614
],
[
- -2.86063259,
- 55.56459732
+ -4.8569847,
+ 52.9317255
],
[
- -2.82003242,
- 55.56487574
+ -4.7288044,
+ 52.9317255
],
[
- -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": [
- [
+ -4.7288044,
+ 53.5038599
+ ],
[
- -2.81342686,
- 56.32097352
+ -4.1578191,
+ 53.5038599
],
[
- -2.81405804,
- 56.3506222
+ -4.1578191,
+ 53.4113498
],
[
- -2.77243712,
- 56.35088865
+ -3.3110518,
+ 53.4113498
],
[
- -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": [
- [
+ -3.3110518,
+ 53.5038599
+ ],
[
- -2.81545583,
- 56.31861733
+ -3.2333667,
+ 53.5038599
],
[
- -2.81609919,
- 56.3487653
+ -3.2333667,
+ 54.0159169
],
[
- -2.77387785,
- 56.34903619
+ -3.3926211,
+ 54.0159169
],
[
- -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.3926211,
+ 54.1980953
+ ],
[
- -3.95768489,
- 56.10754239
+ -3.559644,
+ 54.1980953
],
[
- -3.95882978,
- 56.13007142
+ -3.559644,
+ 54.433732
],
[
- -3.92711024,
- 56.13057046
+ -3.7188984,
+ 54.433732
],
[
- -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": [
- [
+ -3.7188984,
+ 54.721897
+ ],
[
- -2.220167,
- 56.9565098
+ -4.3015365,
+ 54.721897
],
[
- -2.2202543,
- 56.97129283
+ -4.3015365,
+ 54.6140739
],
[
- -2.19924399,
- 56.9713281
+ -5.0473132,
+ 54.6140739
],
[
- -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.0473132,
+ 54.7532915
+ ],
[
- -5.04859743,
- 54.8822997
+ -5.2298731,
+ 54.7532915
],
[
- -5.0508954,
- 54.91268061
+ -5.2298731,
+ 55.2190799
],
[
- -5.0095373,
- 54.91371278
+ -5.6532567,
+ 55.2190799
],
[
- -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.6532567,
+ 55.250088
+ ],
[
- -5.04877289,
- 54.88228699
+ -5.8979647,
+ 55.250088
],
[
- -5.05107324,
- 54.9126976
+ -5.8979647,
+ 55.4822462
],
[
- -5.00947337,
- 54.91373582
+ -6.5933212,
+ 55.4822462
],
[
- -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
+ -6.5933212,
+ 56.3013441
],
[
- -5.04511026,
- 54.90999885
+ -7.1727691,
+ 56.3013441
],
[
- -5.0140499,
- 54.91077389
+ -7.1727691,
+ 56.5601822
],
[
- -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
+ -6.8171722,
+ 56.5601822
],
[
- -4.06954357,
- 55.67989707
+ -6.8171722,
+ 56.6991713
],
[
- -4.05917487,
- 55.6800715
+ -6.5315276,
+ 56.6991713
],
[
- -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
+ -6.5315276,
+ 56.9066964
],
[
- -3.11588837,
- 58.45101446
+ -6.811679,
+ 56.9066964
],
[
- -3.05949843,
- 58.45149284
+ -6.811679,
+ 57.3716613
],
[
- -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
+ -6.8721038,
+ 57.3716613
],
[
- -4.45327284,
- 54.87232603
+ -6.8721038,
+ 57.5518893
],
[
- -4.43254469,
- 54.87274317
+ -7.0973235,
+ 57.5518893
],
[
- -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
+ -7.0973235,
+ 57.2411085
],
[
- -4.45325423,
- 54.87236807
+ -7.1742278,
+ 57.2411085
],
[
- -4.43257837,
- 54.87278416
+ -7.1742278,
+ 56.9066964
],
[
- -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
+ -7.3719817,
+ 56.9066964
],
[
- 8.5665347,
- 53.9848257
+ -7.3719817,
+ 56.8075885
],
[
- 8.1339457,
- 54.709715
+ -7.5202972,
+ 56.8075885
],
[
- 8.317796,
- 55.0952362
+ -7.5202972,
+ 56.7142479
],
[
- 10.1887438,
- 54.7783834
+ -7.8306806,
+ 56.7142479
],
[
- 10.6321475,
- 54.4778841
+ -7.8306806,
+ 56.8994605
],
[
- 11.2702164,
- 54.6221504
+ -7.6494061,
+ 56.8994605
],
[
- 11.681176,
- 54.3709243
+ -7.6494061,
+ 57.4739617
],
[
- 12.0272473,
- 54.3898199
+ -7.8306806,
+ 57.4739617
],
[
- 13.3250145,
- 54.8531617
+ -7.8306806,
+ 57.7915584
],
[
- 13.9198245,
- 54.6972173
+ -7.4736249,
+ 57.7915584
],
[
- 14.2118221,
- 54.1308273
+ -7.4736249,
+ 58.086063
],
[
- 14.493005,
- 53.2665063
+ -7.1879804,
+ 58.086063
],
[
- 14.1577485,
- 52.8766495
+ -7.1879804,
+ 58.367197
],
[
- 14.7525584,
- 52.5819369
+ -6.8034589,
+ 58.367197
],
[
- 15.0986297,
- 51.0171541
+ -6.8034589,
+ 58.4155786
],
[
- 14.9364088,
- 50.8399279
+ -6.638664,
+ 58.4155786
],
[
- 14.730929,
- 50.7920977
+ -6.638664,
+ 58.4673277
],
[
- 14.4389313,
- 50.8808862
+ -6.5178143,
+ 58.4673277
],
[
- 12.9573138,
- 50.3939044
+ -6.5178143,
+ 58.5625632
],
[
- 12.51391,
- 50.3939044
+ -6.0536224,
+ 58.5625632
],
[
- 12.3084302,
- 50.1173237
+ -6.0536224,
+ 58.1568843
],
[
- 12.6112425,
- 49.9088337
+ -6.1470062,
+ 58.1568843
],
[
- 12.394948,
- 49.7344006
+ -6.1470062,
+ 58.1105865
],
[
- 12.7734634,
- 49.4047626
+ -6.2799798,
+ 58.1105865
],
[
- 14.1469337,
- 48.6031036
+ -6.2799798,
+ 57.7122664
],
[
- 14.6768553,
- 48.6531391
+ -6.1591302,
+ 57.7122664
],
[
- 15.0661855,
- 49.0445497
+ -6.1591302,
+ 57.6667563
],
[
- 16.2666202,
- 48.7459305
+ -5.9339104,
+ 57.6667563
],
[
- 16.4937294,
- 48.8741286
+ -5.9339104,
+ 57.8892524
],
[
- 16.904689,
- 48.7173975
+ -5.80643,
+ 57.8892524
],
[
- 16.9371332,
- 48.5315383
+ -5.80643,
+ 57.9621767
],
[
- 16.8384693,
- 48.3823161
+ -5.6141692,
+ 57.9621767
],
[
- 17.2017097,
- 48.010204
+ -5.6141692,
+ 58.0911236
],
[
- 17.1214145,
- 47.6997605
+ -5.490819,
+ 58.0911236
],
[
- 16.777292,
- 47.6585709
+ -5.490819,
+ 58.3733281
],
[
- 16.6090543,
- 47.7460598
+ -5.3199118,
+ 58.3733281
],
[
- 16.410228,
- 47.6637214
+ -5.3199118,
+ 58.75015
],
[
- 16.7352326,
- 47.6147714
+ -3.5719977,
+ 58.75015
],
[
- 16.5555242,
- 47.3589738
+ -3.5719977,
+ 59.2091788
],
[
- 16.4790525,
- 46.9768539
+ -3.1944501,
+ 59.2091788
],
[
- 16.0355168,
- 46.8096295
+ -3.1944501,
+ 59.4759216
],
[
- 16.0508112,
- 46.6366332
+ -2.243583,
+ 59.4759216
],
[
- 14.9572663,
- 46.6313822
+ -2.243583,
+ 59.1388749
],
[
- 14.574908,
- 46.3892866
+ -2.4611012,
+ 59.1388749
],
[
- 12.3954655,
- 46.6891149
+ -2.4611012,
+ 58.8185938
],
[
- 12.1507562,
- 47.0550608
+ -2.7407675,
+ 58.8185938
],
[
- 11.1183887,
- 46.9142058
+ -2.7407675,
+ 58.5804743
],
[
- 11.0342699,
- 46.7729797
+ -2.9116746,
+ 58.5804743
],
[
- 10.4836739,
- 46.8462544
+ -2.9116746,
+ 58.1157523
],
[
- 10.4607324,
- 46.5472973
+ -3.4865441,
+ 58.1157523
],
[
- 10.1013156,
- 46.5735879
+ -3.4865441,
+ 57.740386
],
[
- 10.2007287,
- 46.1831867
+ -1.7153245,
+ 57.740386
],
[
- 9.8948421,
- 46.3629068
+ -1.7153245,
+ 57.2225558
],
[
- 9.5966026,
- 46.2889758
+ -1.9794538,
+ 57.2225558
],
[
- 9.2983631,
- 46.505206
+ -1.9794538,
+ 56.8760742
],
[
- 9.2830687,
- 46.2572605
+ -2.1658979,
+ 56.8760742
],
[
- 9.0536537,
- 45.7953255
+ -2.1658979,
+ 56.6333186
],
[
- 8.4265861,
- 46.2466846
+ -2.3601106,
+ 56.6333186
],
[
- 8.4418804,
- 46.4736161
+ -2.3601106,
+ 56.0477521
],
[
- 7.8759901,
- 45.9284607
+ -1.9794538,
+ 56.0477521
],
[
- 7.0959791,
- 45.8645956
+ -1.9794538,
+ 55.8650949
],
[
- 6.7747981,
- 46.1620044
+ -1.4745008,
+ 55.8650949
],
[
- 6.8206811,
- 46.4051083
+ -1.4745008,
+ 55.2499926
],
[
- 6.5453831,
- 46.4578142
+ -1.3221997,
+ 55.2499926
],
[
- 6.3312624,
- 46.3840116
+ -1.3221997,
+ 54.8221737
],
[
- 6.3847926,
- 46.2466846
+ -1.0550014,
+ 54.8221737
],
[
- 5.8953739,
- 46.0878021
+ -1.0550014,
+ 54.6746628
],
[
- 6.1171418,
- 46.3681838
+ -0.6618765,
+ 54.6746628
],
[
- 6.0942003,
- 46.5998657
+ -0.6618765,
+ 54.5527463
],
[
- 6.4383228,
- 46.7782169
+ -0.3247617,
+ 54.5527463
],
[
- 6.4306756,
- 46.9298747
+ -0.3247617,
+ 54.2865195
],
[
- 7.0806847,
- 47.3460216
+ 0.0092841,
+ 54.2865195
],
[
- 6.8436226,
- 47.3719227
+ 0.0092841,
+ 53.7938518
],
[
- 6.9965659,
- 47.5012373
+ 0.2081962,
+ 53.7938518
],
[
- 7.1800979,
- 47.5064033
+ 0.2081962,
+ 53.5217726
],
[
- 7.2336281,
- 47.439206
+ 0.4163548,
+ 53.5217726
],
[
- 7.4553959,
- 47.4805683
+ 0.4163548,
+ 53.0298851
],
[
- 7.7842241,
- 48.645735
+ 1.4273388,
+ 53.0298851
],
[
- 8.1971711,
- 49.0282701
+ 1.4273388,
+ 52.92021
],
[
- 7.6006921,
- 49.0382974
+ 1.8333912,
+ 52.92021
],
[
- 7.4477487,
- 49.1634679
+ 1.8333912,
+ 52.042488
],
[
- 7.2030394,
- 49.1034255
+ 1.5235504,
+ 52.042488
],
[
- 6.6677378,
- 49.1634679
+ 1.5235504,
+ 51.8261335
],
[
- 6.6371491,
- 49.3331933
+ 1.2697049,
+ 51.8261335
],
[
- 6.3542039,
- 49.4576194
+ 1.2697049,
+ 51.6967453
],
[
- 6.5453831,
- 49.8043366
+ 1.116651,
+ 51.6967453
],
[
- 6.2471436,
- 49.873384
+ 1.116651,
+ 51.440346
],
[
- 6.0789059,
- 50.1534883
+ 1.5235504,
+ 51.440346
],
[
- 6.3618511,
- 50.3685934
+ 1.5235504,
+ 51.3331831
],
[
- 6.0865531,
- 50.7039632
+ 1.4507565,
+ 51.3331831
],
[
- 5.8800796,
- 51.0513752
+ 1.4507565,
+ 51.0207553
],
[
- 6.1247889,
- 51.1618085
+ 1.0699883,
+ 51.0207553
],
[
- 6.1936134,
- 51.491527
+ 1.0699883,
+ 50.9008416
],
[
- 5.9641984,
- 51.7526501
+ 0.7788126,
+ 50.9008416
],
[
- 6.0253758,
- 51.8897286
+ 0.7788126,
+ 50.729843
],
[
- 6.4536171,
- 51.8661241
+ -0.7255952,
+ 50.729843
],
[
- 6.8436226,
- 51.9557552
+ -0.7255952,
+ 50.7038437
],
[
- 6.6906793,
- 52.0499105
+ -1.0074383,
+ 50.7038437
],
[
- 7.0042131,
- 52.2282603
+ -1.0074383,
+ 50.5736307
],
[
- 7.0195074,
- 52.4525245
+ -2.3625252,
+ 50.5736307
],
[
- 6.6983264,
- 52.4665032
+ -2.3625252,
+ 50.4846421
],
[
- 6.6906793,
- 52.6524628
+ -2.4987805,
+ 50.4846421
],
[
- 7.0348017,
- 52.6385432
+ -2.4987805,
+ 50.5736307
],
[
- 7.0730376,
- 52.8330151
+ -3.4096378,
+ 50.5736307
],
[
- 7.2183337,
- 52.9852064
+ -3.4096378,
+ 50.2057837
],
[
- 7.1953922,
- 53.3428087
+ -3.6922446,
+ 50.2057837
],
[
- 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
+ -3.6922446,
+ 50.1347737
],
[
- 120.445995,
- 15.984
+ -5.005468,
+ 50.1347737
],
[
- 120.446134,
- 15.974459
+ -5.005468,
+ 49.9474456
],
[
- 120.476464,
- 15.974592
+ -5.2839506,
+ 49.9474456
],
[
- 120.594247,
- 15.946832
- ],
+ -5.2839506,
+ 50.0229734
+ ]
+ ],
+ [
[
- 120.598064,
- 16.090795
+ -6.4580707,
+ 49.8673563
],
[
- 120.596537,
- 16.197999
+ -6.4580707,
+ 49.9499935
],
[
- 120.368537,
- 16.218527
+ -6.3978807,
+ 49.9499935
],
[
- 120.347576,
- 16.042308
+ -6.3978807,
+ 50.0053797
],
[
- 120.336593,
- 15.985768
- ]
- ],
- [
- [
- 120.8268,
- 15.3658
+ -6.1799606,
+ 50.0053797
],
[
- 121.2684,
- 15.2602
+ -6.1799606,
+ 49.9168614
],
[
- 121.2699,
- 14.7025
+ -6.2540201,
+ 49.9168614
],
[
- 120.695,
- 14.8423
+ -6.2540201,
+ 49.8673563
]
- ]
- ]
- },
- {
- "name": "Slovakia EEA CORINE 2006",
- "type": "tms",
- "template": "http://www.freemap.sk/tms/clc/{zoom}/{x}/{y}.png",
- "polygon": [
+ ],
[
[
- 19.83682,
- 49.25529
+ -5.8343165,
+ 49.932156
],
[
- 19.80075,
- 49.42385
+ -5.8343165,
+ 49.9754641
],
[
- 19.60437,
- 49.48058
+ -5.7683254,
+ 49.9754641
],
[
- 19.49179,
- 49.63961
- ],
+ -5.7683254,
+ 49.932156
+ ]
+ ],
+ [
[
- 19.21831,
- 49.52604
+ -1.9483797,
+ 60.6885737
],
[
- 19.16778,
- 49.42521
+ -1.9483797,
+ 60.3058841
],
[
- 19.00308,
- 49.42236
+ -1.7543149,
+ 60.3058841
],
[
- 18.97611,
- 49.5308
+ -1.7543149,
+ 60.1284428
],
[
- 18.54685,
- 49.51425
+ -1.5754914,
+ 60.1284428
],
[
- 18.31432,
- 49.33818
+ -1.5754914,
+ 59.797917
],
[
- 18.15913,
- 49.2961
+ -1.0316959,
+ 59.797917
],
[
- 18.05564,
- 49.11134
+ -1.0316959,
+ 60.0354518
],
[
- 17.56396,
- 48.84938
+ -0.6626918,
+ 60.0354518
],
[
- 17.17929,
- 48.88816
+ -0.6626918,
+ 60.9103862
],
[
- 17.058,
- 48.81105
+ -1.1034395,
+ 60.9103862
],
[
- 16.90426,
- 48.61947
+ -1.1034395,
+ 60.8040022
],
[
- 16.79685,
- 48.38561
+ -1.3506319,
+ 60.8040022
],
[
- 17.06762,
- 48.01116
- ],
+ -1.3506319,
+ 60.6885737
+ ]
+ ],
+ [
[
- 17.32787,
- 47.97749
+ -2.203381,
+ 60.1968568
],
[
- 17.51699,
- 47.82535
+ -2.203381,
+ 60.0929443
],
[
- 17.74776,
- 47.73093
+ -1.9864011,
+ 60.0929443
],
[
- 18.29515,
- 47.72075
- ],
+ -1.9864011,
+ 60.1968568
+ ]
+ ],
+ [
[
- 18.67959,
- 47.75541
+ -1.7543149,
+ 59.5698289
],
[
- 18.89755,
- 47.81203
+ -1.7543149,
+ 59.4639383
],
[
- 18.79463,
- 47.88245
+ -1.5373349,
+ 59.4639383
],
[
- 18.84318,
- 48.04046
- ],
+ -1.5373349,
+ 59.5698289
+ ]
+ ],
+ [
[
- 19.46212,
- 48.05333
+ -4.5585981,
+ 59.1370518
],
[
- 19.62064,
- 48.22938
+ -4.5585981,
+ 58.9569099
],
[
- 19.89585,
- 48.09387
+ -4.2867004,
+ 58.9569099
],
[
- 20.33766,
- 48.2643
- ],
+ -4.2867004,
+ 59.1370518
+ ]
+ ],
+ [
[
- 20.55395,
- 48.52358
+ -6.2787732,
+ 59.2025744
],
[
- 20.82335,
- 48.55714
+ -6.2787732,
+ 59.0227769
],
[
- 21.10271,
- 48.47096
+ -5.6650612,
+ 59.0227769
],
[
- 21.45863,
- 48.55513
- ],
+ -5.6650612,
+ 59.2025744
+ ]
+ ],
+ [
[
- 21.74536,
- 48.31435
+ -8.7163482,
+ 57.9440556
],
[
- 22.15293,
- 48.37179
+ -8.7163482,
+ 57.7305936
],
[
- 22.61255,
- 49.08914
+ -8.3592926,
+ 57.7305936
],
[
- 22.09997,
- 49.23814
- ],
+ -8.3592926,
+ 57.9440556
+ ]
+ ],
+ [
[
- 21.9686,
- 49.36363
+ -7.6077005,
+ 50.4021026
],
[
- 21.6244,
- 49.46989
+ -7.6077005,
+ 50.2688657
],
[
- 21.06873,
- 49.46402
+ -7.3907205,
+ 50.2688657
],
[
- 20.94336,
- 49.31088
- ],
+ -7.3907205,
+ 50.4021026
+ ]
+ ],
+ [
[
- 20.73052,
- 49.44006
+ -7.7304303,
+ 58.3579902
],
[
- 20.22804,
- 49.41714
+ -7.7304303,
+ 58.248313
],
[
- 20.05234,
- 49.23052
+ -7.5134503,
+ 58.248313
],
[
- 19.83682,
- 49.25529
+ -7.5134503,
+ 58.3579902
]
]
- ],
- "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",
+ "name": "OS Scottish Popular historic",
"type": "tms",
- "template": "http://www.freemap.sk/tms/urbanatlas/{zoom}/{x}/{y}.png",
+ "template": "http://ooc.openstreetmap.org/npescotland/tiles/{zoom}/{x}/{y}.jpg",
+ "scaleExtent": [
+ 6,
+ 15
+ ],
"polygon": [
[
[
- 19.83682,
- 49.25529
+ -7.8,
+ 54.5
],
[
- 19.80075,
- 49.42385
+ -7.8,
+ 61.1
],
[
- 19.60437,
- 49.48058
+ -1.1,
+ 61.1
],
[
- 19.49179,
- 49.63961
+ -1.1,
+ 54.5
],
[
- 19.21831,
- 49.52604
- ],
+ -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": [
+ [
[
- 19.16778,
- 49.42521
+ -2.14039404,
+ 57.11218789
],
[
- 19.00308,
- 49.42236
+ -2.14064752,
+ 57.17894161
],
[
- 18.97611,
- 49.5308
+ -2.04501987,
+ 57.17901252
],
[
- 18.54685,
- 49.51425
- ],
+ -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": [
+ [
[
- 18.31432,
- 49.33818
+ -3.99291738,
+ 55.86408041
],
[
- 18.15913,
- 49.2961
+ -3.99338933,
+ 55.87329115
],
[
- 18.05564,
- 49.11134
+ -3.9691085,
+ 55.87368212
],
[
- 17.56396,
- 48.84938
- ],
- [
- 17.17929,
- 48.88816
- ],
+ -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": [
+ [
[
- 17.058,
- 48.81105
+ -4.58973571,
+ 55.97536707
],
[
- 16.90426,
- 48.61947
+ -4.59104461,
+ 55.99493153
],
[
- 16.79685,
- 48.38561
+ -4.55985072,
+ 55.99558348
],
[
- 17.06762,
- 48.01116
- ],
+ -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": [
+ [
[
- 17.32787,
- 47.97749
+ -3.81166061,
+ 56.09864363
],
[
- 17.51699,
- 47.82535
+ -3.81274448,
+ 56.12169929
],
[
- 17.74776,
- 47.73093
+ -3.7804609,
+ 56.12216898
],
[
- 18.29515,
- 47.72075
- ],
+ -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": [
+ [
[
- 18.67959,
- 47.75541
+ -3.27921439,
+ 54.98252155
],
[
- 18.89755,
- 47.81203
+ -3.27960062,
+ 54.9946601
],
[
- 18.79463,
- 47.88245
+ -3.24866331,
+ 54.99498165
],
[
- 18.84318,
- 48.04046
- ],
+ -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": [
+ [
[
- 19.46212,
- 48.05333
+ -2.60716469,
+ 56.53995105
],
[
- 19.62064,
- 48.22938
+ -2.60764981,
+ 56.57022426
],
[
- 19.89585,
- 48.09387
+ -2.56498708,
+ 56.57042549
],
[
- 20.33766,
- 48.2643
- ],
+ -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": [
+ [
[
- 20.55395,
- 48.52358
+ -4.66768105,
+ 55.43748864
],
[
- 20.82335,
- 48.55714
+ -4.67080057,
+ 55.48363961
],
[
- 21.10271,
- 48.47096
+ -4.60609844,
+ 55.48503484
],
[
- 21.45863,
- 48.55513
- ],
+ -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": [
+ [
[
- 21.74536,
- 48.31435
+ -2.02117487,
+ 55.75577627
],
[
- 22.15293,
- 48.37179
+ -2.02118763,
+ 55.77904118
],
[
- 22.61255,
- 49.08914
+ -1.98976956,
+ 55.77904265
],
[
- 22.09997,
- 49.23814
- ],
+ -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": [
+ [
[
- 21.9686,
- 49.36363
+ -2.67480248,
+ 56.71456775
],
[
- 21.6244,
- 49.46989
+ -2.67521172,
+ 56.73739937
],
[
- 21.06873,
- 49.46402
+ -2.64319679,
+ 56.73756872
],
[
- 20.94336,
- 49.31088
- ],
+ -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": [
+ [
[
- 20.73052,
- 49.44006
+ -3.24879624,
+ 56.04240046
],
[
- 20.22804,
- 49.41714
+ -3.2495182,
+ 56.06472996
],
[
- 20.05234,
- 49.23052
+ -3.21830572,
+ 56.06504207
],
[
- 19.83682,
- 49.25529
+ -3.21760179,
+ 56.0427123
]
]
],
- "terms_url": "http://www.eea.europa.eu/data-and-maps/data/urban-atlas",
- "terms_text": "EEA GMES Urban Atlas"
+ "terms_url": "http://maps.nls.uk/townplans/burntisland.html",
+ "terms_text": "National Library of Scotland - Burntisland 1894"
},
{
- "name": "Slovakia Historic Maps",
+ "name": "OS Town Plans, Campbelton 1865 (NLS)",
"type": "tms",
- "template": "http://tms.freemap.sk/historicke/{zoom}/{x}/{y}.png",
+ "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": [
- 0,
- 12
+ 13,
+ 20
],
"polygon": [
[
[
- 16.8196949,
- 47.4927236
- ],
- [
- 16.8196949,
- 49.5030322
+ -5.62345307,
+ 55.40255998
],
[
- 22.8388318,
- 49.5030322
+ -5.62631353,
+ 55.43375303
],
[
- 22.8388318,
- 47.4927236
+ -5.58276654,
+ 55.43503753
],
[
- 16.8196949,
- 47.4927236
+ -5.57994024,
+ 55.40384299
]
]
- ]
+ ],
+ "terms_url": "http://maps.nls.uk/townplans/campbelton.html",
+ "terms_text": "National Library of Scotland - Campbelton 1865"
},
{
- "name": "South Africa CD:NGI Aerial",
+ "name": "OS Town Plans, Coatbridge 1858 (NLS)",
"type": "tms",
- "template": "http://{switch:a,b,c}.aerial.openstreetmap.org.za/ngi-aerial/{zoom}/{x}/{y}.jpg",
+ "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": [
- 1,
- 22
+ 13,
+ 20
],
"polygon": [
[
[
- 17.8396817,
- -32.7983384
- ],
- [
- 17.8893509,
- -32.6972835
+ -4.05035921,
+ 55.84648689
],
[
- 18.00364,
- -32.6982187
+ -4.05157062,
+ 55.86947193
],
[
- 18.0991679,
- -32.7485251
+ -4.01953905,
+ 55.87000186
],
[
- 18.2898747,
- -32.5526645
- ],
+ -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": [
+ [
[
- 18.2930182,
- -32.0487089
+ -3.04765872,
+ 56.28653177
],
[
- 18.105455,
- -31.6454966
+ -3.04890965,
+ 56.332192
],
[
- 17.8529257,
- -31.3443951
+ -2.98498515,
+ 56.33271677
],
[
- 17.5480046,
- -30.902171
- ],
+ -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": [
+ [
[
- 17.4044506,
- -30.6374731
+ -3.0327697,
+ 56.30243657
],
[
- 17.2493704,
- -30.3991663
+ -3.03338443,
+ 56.32520139
],
[
- 16.9936977,
- -29.6543552
+ -3.00146629,
+ 56.32546356
],
[
- 16.7987996,
- -29.19437
- ],
+ -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": [
+ [
[
- 16.5494139,
- -28.8415949
+ -3.07862465,
+ 55.88900264
],
[
- 16.4498691,
- -28.691876
+ -3.0790381,
+ 55.90389729
],
[
- 16.4491046,
- -28.5515766
+ -3.05835611,
+ 55.90407681
],
[
- 16.6002551,
- -28.4825663
- ],
+ -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": [
+ [
[
- 16.7514057,
- -28.4486958
+ -3.08600192,
+ 55.87936087
],
[
- 16.7462192,
- -28.2458973
+ -3.08658588,
+ 55.90025926
],
[
- 16.8855148,
- -28.04729
+ -3.0436473,
+ 55.90063074
],
[
- 16.9929502,
- -28.0244005
- ],
+ -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": [
+ [
[
- 17.0529659,
- -28.0257086
+ -4.58559982,
+ 55.92742578
],
[
- 17.1007562,
- -28.0338839
+ -4.58714245,
+ 55.95056014
],
[
- 17.2011527,
- -28.0930546
+ -4.55463269,
+ 55.95123882
],
[
- 17.2026346,
- -28.2328424
- ],
+ -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": [
+ [
[
- 17.2474611,
- -28.2338215
+ -3.63928076,
+ 55.03715991
],
[
- 17.2507953,
- -28.198892
+ -3.64116352,
+ 55.08319002
],
[
- 17.3511919,
- -28.1975861
+ -3.57823183,
+ 55.08402202
],
[
- 17.3515624,
- -28.2442655
- ],
+ -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": [
+ [
[
- 17.4015754,
- -28.2452446
+ -3.63179081,
+ 55.04150111
],
[
- 17.4149122,
- -28.3489751
+ -3.63330662,
+ 55.07873429
],
[
- 17.4008345,
- -28.547997
+ -3.58259012,
+ 55.07940411
],
[
- 17.4526999,
- -28.5489733
- ],
+ -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": [
+ [
[
- 17.4512071,
- -28.6495106
+ -3.02584468,
+ 56.44879161
],
[
- 17.4983599,
- -28.6872054
+ -3.02656969,
+ 56.47566815
],
[
- 17.6028204,
- -28.6830048
+ -2.94710317,
+ 56.47629984
],
[
- 17.6499732,
- -28.6967928
- ],
+ -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": [
+ [
[
- 17.6525928,
- -28.7381457
+ -3.03399945,
+ 56.448497
],
[
- 17.801386,
- -28.7381457
+ -3.03497463,
+ 56.48435238
],
[
- 17.9994276,
- -28.7560602
+ -2.92352705,
+ 56.48523137
],
[
- 18.0002748,
- -28.7956172
- ],
+ -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": [
+ [
[
- 18.1574507,
- -28.8718055
+ -3.49045481,
+ 56.0605979
],
[
- 18.5063811,
- -28.8718055
+ -3.49116489,
+ 56.07898822
],
[
- 18.6153564,
- -28.8295875
+ -3.44374075,
+ 56.07955208
],
[
- 18.9087513,
- -28.8277516
- ],
+ -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": [
+ [
[
- 19.1046973,
- -28.9488548
+ -3.48284159,
+ 56.05198219
],
[
- 19.1969071,
- -28.9378513
+ -3.48399434,
+ 56.08198924
],
[
- 19.243012,
- -28.8516164
+ -3.44209721,
+ 56.08248587
],
[
- 19.2314858,
- -28.802963
- ],
+ -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": [
+ [
[
- 19.2587296,
- -28.7009928
+ -3.2361048,
+ 55.921366
],
[
- 19.4431493,
- -28.6973163
+ -3.23836397,
+ 55.99217223
],
[
- 19.5500289,
- -28.4958332
+ -3.14197035,
+ 55.99310288
],
[
- 19.6967264,
- -28.4939914
- ],
+ -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": [
+ [
[
- 19.698822,
- -28.4479358
+ -3.24740498,
+ 55.92116518
],
[
- 19.8507587,
- -28.4433291
+ -3.24989581,
+ 55.99850896
],
[
- 19.8497109,
- -28.4027818
+ -3.13061127,
+ 55.99966059
],
[
- 19.9953605,
- -28.399095
- ],
+ -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": [
+ [
[
- 19.9893671,
- -24.7497859
+ -3.26111081,
+ 55.89555387
],
[
- 20.2916682,
- -24.9192346
+ -3.26450423,
+ 55.9997912
],
[
- 20.4724562,
- -25.1501701
+ -3.11970824,
+ 56.00119128
],
[
- 20.6532441,
- -25.4529449
- ],
+ -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": [
+ [
[
- 20.733265,
- -25.6801957
+ -3.33665196,
+ 57.62879017
],
[
- 20.8281046,
- -25.8963498
+ -3.33776583,
+ 57.65907381
],
[
- 20.8429232,
- -26.215851
+ -3.29380859,
+ 57.65953111
],
[
- 20.6502804,
- -26.4840868
- ],
+ -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": [
+ [
[
- 20.6532441,
- -26.8204869
+ -3.79587441,
+ 55.99343101
],
[
- 21.0889134,
- -26.846933
+ -3.79697783,
+ 56.01720281
],
[
- 21.6727695,
- -26.8389998
+ -3.76648151,
+ 56.01764348
],
[
- 21.7765003,
- -26.6696268
- ],
+ -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": [
+ [
[
- 21.9721069,
- -26.6431395
+ -2.90326183,
+ 56.6289471
],
[
- 22.2803355,
- -26.3274702
+ -2.90378797,
+ 56.65095013
],
[
- 22.5707817,
- -26.1333967
+ -2.87228457,
+ 56.65117489
],
[
- 22.7752795,
- -25.6775246
- ],
+ -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": [
+ [
[
- 23.0005235,
- -25.2761948
+ -3.63516795,
+ 57.58887872
],
[
- 23.4658301,
- -25.2735148
+ -3.63647637,
+ 57.618002
],
[
- 23.883717,
- -25.597366
+ -3.57751453,
+ 57.61875171
],
[
- 24.2364017,
- -25.613402
- ],
+ -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": [
+ [
[
- 24.603905,
- -25.7896563
+ -2.82918609,
+ 55.59586303
],
[
- 25.110704,
- -25.7389432
+ -2.82981273,
+ 55.62554026
],
[
- 25.5078447,
- -25.6855376
+ -2.78895254,
+ 55.62580992
],
[
- 25.6441766,
- -25.4823781
- ],
+ -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": [
+ [
[
- 25.8419267,
- -24.7805437
+ -4.87424251,
+ 55.22679729
],
[
- 25.846641,
- -24.7538456
+ -4.87587895,
+ 55.24945946
],
[
- 26.3928487,
- -24.6332894
+ -4.84447382,
+ 55.25019598
],
[
- 26.4739066,
- -24.5653312
- ],
- [
- 26.5089966,
- -24.4842437
- ],
+ -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": [
+ [
[
- 26.5861946,
- -24.4075775
+ -4.31575491,
+ 55.82072009
],
[
- 26.7300635,
- -24.3014458
+ -4.319683,
+ 55.88667625
],
[
- 26.8567384,
- -24.2499463
+ -4.1771319,
+ 55.88928081
],
[
- 26.8574402,
- -24.1026901
- ],
+ -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": [
+ [
[
- 26.9215471,
- -23.8990957
+ -4.3465357,
+ 55.81456228
],
[
- 26.931831,
- -23.8461891
+ -4.35157646,
+ 55.89806268
],
[
- 26.9714827,
- -23.6994344
+ -4.17788765,
+ 55.9012587
],
[
- 27.0006074,
- -23.6367644
- ],
+ -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": [
+ [
[
- 27.0578041,
- -23.6052574
+ -4.78108857,
+ 55.92617865
],
[
- 27.1360547,
- -23.5203437
+ -4.78382957,
+ 55.96437481
],
[
- 27.3339623,
- -23.3973792
+ -4.7302257,
+ 55.96557475
],
[
- 27.5144057,
- -23.3593929
- ],
+ -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": [
+ [
[
- 27.5958145,
- -23.2085465
+ -2.78855542,
+ 55.9451862
],
[
- 27.8098634,
- -23.0994957
+ -2.78888196,
+ 55.96124194
],
[
- 27.8828506,
- -23.0620496
+ -2.76674325,
+ 55.9613817
],
[
- 27.9382928,
- -22.9496487
- ],
+ -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": [
+ [
[
- 28.0407556,
- -22.8255118
+ -2.80152293,
+ 55.93428734
],
[
- 28.2056786,
- -22.6552861
+ -2.80214693,
+ 55.96447189
],
[
- 28.3397223,
- -22.5639374
+ -2.76038069,
+ 55.9647367
],
[
- 28.4906093,
- -22.560697
- ],
+ -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": [
+ [
[
- 28.6108769,
- -22.5400248
+ -4.06721642,
+ 55.74877265
],
[
- 28.828175,
- -22.4550173
+ -4.06924047,
+ 55.78698508
],
[
- 28.9285324,
- -22.4232328
+ -4.01679233,
+ 55.78785698
],
[
- 28.9594116,
- -22.3090081
- ],
+ -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": [
+ [
[
- 29.0162574,
- -22.208335
+ -2.80130149,
+ 55.4102516
],
[
- 29.2324117,
- -22.1693453
+ -2.80176329,
+ 55.43304638
],
[
- 29.3531213,
- -22.1842926
+ -2.7708832,
+ 55.43324489
],
[
- 29.6548952,
- -22.1186426
- ],
+ -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": [
+ [
[
- 29.7777102,
- -22.1361956
+ -4.25481758,
+ 57.45916363
],
[
- 29.9292989,
- -22.1849425
+ -4.25752308,
+ 57.50302387
],
[
- 30.1166795,
- -22.2830348
+ -4.19713638,
+ 57.50409032
],
[
- 30.2563377,
- -22.2914767
- ],
+ -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": [
+ [
[
- 30.3033582,
- -22.3395204
+ -4.67540402,
+ 55.60649957
],
[
- 30.5061784,
- -22.3057617
+ -4.67643252,
+ 55.62159024
],
[
- 30.8374279,
- -22.284983
+ -4.65537888,
+ 55.62204812
],
[
- 31.0058599,
- -22.3077095
- ],
+ -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": [
+ [
[
- 31.1834152,
- -22.3232913
+ -2.56332521,
+ 55.47105448
],
[
- 31.2930586,
- -22.3674647
+ -2.56355503,
+ 55.48715562
],
[
- 31.5680579,
- -23.1903385
+ -2.54168193,
+ 55.48725438
],
[
- 31.5568311,
- -23.4430809
- ],
+ -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": [
+ [
[
- 31.6931122,
- -23.6175209
+ -2.44924544,
+ 55.58390848
],
[
- 31.7119696,
- -23.741136
+ -2.44949757,
+ 55.6059582
],
[
- 31.7774743,
- -23.8800628
+ -2.41902085,
+ 55.60606617
],
[
- 31.8886337,
- -23.9481098
- ],
+ -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": [
+ [
[
- 31.9144386,
- -24.1746736
+ -4.51746876,
+ 55.58950933
],
[
- 31.9948307,
- -24.3040878
+ -4.5194347,
+ 55.62017114
],
[
- 32.0166656,
- -24.4405988
+ -4.47675652,
+ 55.62104083
],
[
- 32.0077331,
- -24.6536578
- ],
+ -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": [
+ [
[
- 32.019643,
- -24.9140701
+ -3.17455285,
+ 56.09518942
],
[
- 32.035523,
- -25.0849767
+ -3.17554995,
+ 56.12790251
],
[
- 32.019643,
- -25.3821442
+ -3.12991402,
+ 56.12832843
],
[
- 31.9928457,
- -25.4493771
- ],
+ -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": [
+ [
[
- 31.9997931,
- -25.5165725
+ -3.17460426,
+ 56.09513375
],
[
- 32.0057481,
- -25.6078978
+ -3.17560428,
+ 56.12794116
],
[
- 32.0057481,
- -25.6624806
+ -3.12989512,
+ 56.12836777
],
[
- 31.9362735,
- -25.8403721
- ],
+ -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": [
+ [
[
- 31.9809357,
- -25.9546537
+ -4.06154334,
+ 54.82586314
],
[
- 31.8687838,
- -26.0037251
+ -4.0623081,
+ 54.84086061
],
[
- 31.4162062,
- -25.7277683
+ -4.0420219,
+ 54.84120364
],
[
- 31.3229117,
- -25.7438611
- ],
+ -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": [
+ [
[
- 31.2504595,
- -25.8296526
+ -4.06001868,
+ 54.82720122
],
[
- 31.1393001,
- -25.9162746
+ -4.06079036,
+ 54.84234455
],
[
- 31.1164727,
- -25.9912361
+ -4.04025067,
+ 54.84269158
],
[
- 30.9656135,
- -26.2665756
- ],
+ -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": [
+ [
[
- 30.8921689,
- -26.3279703
+ -4.16664222,
+ 55.93124287
],
[
- 30.8534616,
- -26.4035568
+ -4.16748402,
+ 55.94631265
],
[
- 30.8226943,
- -26.4488849
+ -4.14637318,
+ 55.94668235
],
[
- 30.8022583,
- -26.5240694
- ],
+ -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": [
+ [
[
- 30.8038369,
- -26.8082089
+ -3.01255744,
+ 56.65896044
],
[
- 30.9020939,
- -26.7807451
+ -3.01302683,
+ 56.67645382
],
[
- 30.9100338,
- -26.8489495
+ -2.98815879,
+ 56.67665366
],
[
- 30.9824859,
- -26.9082627
- ],
+ -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": [
+ [
[
- 30.976531,
- -27.0029222
+ -3.78642584,
+ 55.66308804
],
[
- 31.0034434,
- -27.0441587
+ -3.78710605,
+ 55.67800854
],
[
- 31.1543322,
- -27.1980416
+ -3.76632876,
+ 55.67830935
],
[
- 31.5015607,
- -27.311117
- ],
+ -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": [
+ [
[
- 31.9700183,
- -27.311117
+ -3.61908334,
+ 55.95549561
],
[
- 31.9700183,
- -27.120472
+ -3.62033259,
+ 55.98538615
],
[
- 31.9769658,
- -27.050664
+ -3.57838447,
+ 55.98593047
],
[
- 32.0002464,
- -26.7983892
- ],
+ -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": [
+ [
[
- 32.1069826,
- -26.7984645
+ -4.69086378,
+ 55.34340178
],
[
- 32.3114546,
- -26.8479493
+ -4.6918884,
+ 55.35849731
],
[
- 32.899986,
- -26.8516059
+ -4.67089656,
+ 55.35895813
],
[
- 32.886091,
- -26.9816971
- ],
+ -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": [
+ [
[
- 32.709427,
- -27.4785436
+ -2.4859324,
+ 56.69645192
],
[
- 32.6240724,
- -27.7775144
+ -2.4862257,
+ 56.71918799
],
[
- 32.5813951,
- -28.07479
+ -2.45405417,
+ 56.71930941
],
[
- 32.5387178,
- -28.2288046
- ],
+ -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": [
+ [
[
- 32.4275584,
- -28.5021568
+ -3.07888558,
+ 55.93371953
],
[
- 32.3640388,
- -28.5945699
+ -3.07954151,
+ 55.95729781
],
[
- 32.0702603,
- -28.8469827
+ -3.03240684,
+ 55.95770177
],
[
- 31.9878832,
- -28.9069497
- ],
+ -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": [
+ [
[
- 31.7764818,
- -28.969487
+ -3.07017621,
+ 55.92694102
],
[
- 31.4638459,
- -29.2859343
+ -3.07078961,
+ 55.94917624
],
[
- 31.359634,
- -29.3854348
+ -3.03988228,
+ 55.94944099
],
[
- 31.1680825,
- -29.6307408
- ],
+ -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": [
+ [
[
- 31.064863,
- -29.7893535
+ -3.88433907,
+ 57.57899149
],
[
- 31.0534493,
- -29.8470469
+ -3.88509905,
+ 57.5936822
],
[
- 31.0669933,
- -29.8640319
+ -3.85931017,
+ 57.59406441
],
[
- 31.0455459,
- -29.9502017
- ],
+ -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": [
+ [
[
- 30.9518556,
- -30.0033946
+ -5.49548449,
+ 56.39080407
],
[
- 30.8651833,
- -30.1024093
+ -5.49836627,
+ 56.42219039
],
[
- 30.7244725,
- -30.392502
+ -5.45383984,
+ 56.42343933
],
[
- 30.3556256,
- -30.9308873
- ],
+ -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": [
+ [
[
- 30.0972364,
- -31.2458274
+ -3.20921287,
+ 55.63635834
],
[
- 29.8673136,
- -31.4304296
+ -3.20990288,
+ 55.65873817
],
[
- 29.7409393,
- -31.5014699
+ -3.17896372,
+ 55.65903935
],
[
- 29.481312,
- -31.6978686
- ],
+ -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": [
+ [
[
- 28.8943171,
- -32.2898903
+ -3.45302495,
+ 56.37794226
],
[
- 28.5497137,
- -32.5894641
+ -3.45416664,
+ 56.40789908
],
[
- 28.1436499,
- -32.8320732
+ -3.41187528,
+ 56.40838777
],
[
- 28.0748735,
- -32.941689
- ],
+ -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": [
+ [
[
- 27.8450942,
- -33.082869
+ -1.80513747,
+ 57.48046916
],
[
- 27.3757956,
- -33.3860685
+ -1.80494005,
+ 57.51755411
],
[
- 26.8805407,
- -33.6458951
+ -1.75135366,
+ 57.51746003
],
[
- 26.5916871,
- -33.7480756
- ],
+ -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": [
+ [
[
- 26.4527308,
- -33.7935795
+ -4.70063209,
+ 55.91995983
],
[
- 26.206754,
- -33.7548943
+ -4.70222026,
+ 55.9427679
],
[
- 26.0077897,
- -33.7223961
+ -4.67084958,
+ 55.94345237
],
[
- 25.8055494,
- -33.7524272
- ],
+ -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": [
+ [
[
- 25.7511073,
- -33.8006512
+ -3.12437919,
+ 55.93846889
],
[
- 25.6529079,
- -33.8543597
+ -3.1250234,
+ 55.96068605
],
[
- 25.6529079,
- -33.9469768
+ -3.09394827,
+ 55.96096586
],
[
- 25.7195789,
- -34.0040115
- ],
+ -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": [
+ [
[
- 25.7202807,
- -34.0511235
+ -5.06449893,
+ 55.82864114
],
[
- 25.5508915,
- -34.063151
+ -5.06569719,
+ 55.84385927
],
[
- 25.3504571,
- -34.0502627
+ -5.04413114,
+ 55.84439519
],
[
- 25.2810609,
- -34.0020322
- ],
+ -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": [
+ [
[
- 25.0476316,
- -33.9994588
+ -2.85998582,
+ 55.53499576
],
[
- 24.954724,
- -34.0043594
+ -2.86063259,
+ 55.56459732
],
[
- 24.9496586,
- -34.1010363
+ -2.82003242,
+ 55.56487574
],
[
- 24.8770358,
- -34.1506456
- ],
+ -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": [
+ [
[
- 24.8762914,
- -34.2005281
+ -2.81342686,
+ 56.32097352
],
[
- 24.8532574,
- -34.2189562
+ -2.81405804,
+ 56.3506222
],
[
- 24.7645287,
- -34.2017946
+ -2.77243712,
+ 56.35088865
],
[
- 24.5001356,
- -34.2003254
- ],
+ -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": [
+ [
[
- 24.3486733,
- -34.1163824
+ -2.81545583,
+ 56.31861733
],
[
- 24.1988819,
- -34.1019039
+ -2.81609919,
+ 56.3487653
],
[
- 23.9963377,
- -34.0514443
+ -2.77387785,
+ 56.34903619
],
[
- 23.8017509,
- -34.0524332
- ],
+ -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": [
+ [
[
- 23.7493589,
- -34.0111855
+ -3.95768489,
+ 56.10754239
],
[
- 23.4973536,
- -34.009014
+ -3.95882978,
+ 56.13007142
],
[
- 23.4155191,
- -34.0434586
+ -3.92711024,
+ 56.13057046
],
[
- 23.4154284,
- -34.1140433
- ],
+ -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": [
+ [
[
- 22.9000853,
- -34.0993009
+ -2.220167,
+ 56.9565098
],
[
- 22.8412418,
- -34.0547911
+ -2.2202543,
+ 56.97129283
],
[
- 22.6470321,
- -34.0502627
+ -2.19924399,
+ 56.9713281
],
[
- 22.6459843,
- -34.0072768
- ],
+ -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": [
+ [
[
- 22.570016,
- -34.0064081
+ -5.04859743,
+ 54.8822997
],
[
- 22.5050499,
- -34.0645866
+ -5.0508954,
+ 54.91268061
],
[
- 22.2519968,
- -34.0645866
+ -5.0095373,
+ 54.91371278
],
[
- 22.2221334,
- -34.1014701
- ],
+ -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": [
+ [
[
- 22.1621197,
- -34.1057019
+ -5.04877289,
+ 54.88228699
],
[
- 22.1712431,
- -34.1521766
+ -5.05107324,
+ 54.9126976
],
[
- 22.1576913,
- -34.2180897
+ -5.00947337,
+ 54.91373582
],
[
- 22.0015632,
- -34.2172232
- ],
+ -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": [
+ [
[
- 21.9496952,
- -34.3220009
+ -5.04418424,
+ 54.89773858
],
[
- 21.8611528,
- -34.4007145
+ -5.04511026,
+ 54.90999885
],
[
- 21.5614708,
- -34.4020114
+ -5.0140499,
+ 54.91077389
],
[
- 21.5468011,
- -34.3661242
- ],
+ -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": [
+ [
[
- 21.501744,
- -34.3669892
+ -4.06914872,
+ 55.67242091
],
[
- 21.5006961,
- -34.4020114
+ -4.06954357,
+ 55.67989707
],
[
- 21.4194886,
- -34.4465247
+ -4.05917487,
+ 55.6800715
],
[
- 21.1978706,
- -34.4478208
- ],
+ -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": [
+ [
[
- 21.0988193,
- -34.3991325
+ -3.11470001,
+ 58.41344839
],
[
- 21.0033746,
- -34.3753872
+ -3.11588837,
+ 58.45101446
],
[
- 20.893192,
- -34.3997115
+ -3.05949843,
+ 58.45149284
],
[
- 20.8976647,
- -34.4854003
- ],
+ -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": [
+ [
[
- 20.7446802,
- -34.4828092
+ -4.45235587,
+ 54.8572296
],
[
- 20.5042011,
- -34.486264
+ -4.45327284,
+ 54.87232603
],
[
- 20.2527197,
- -34.701477
+ -4.43254469,
+ 54.87274317
],
[
- 20.0803502,
- -34.8361855
- ],
+ -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": [
+ [
[
- 19.9923317,
- -34.8379056
+ -4.45233361,
+ 54.85721131
],
[
- 19.899074,
- -34.8275845
+ -4.45325423,
+ 54.87236807
],
[
- 19.8938348,
- -34.7936018
+ -4.43257837,
+ 54.87278416
],
[
- 19.5972963,
- -34.7961833
+ -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
],
[
- 19.3929677,
- -34.642015
+ 8.5665347,
+ 53.9848257
],
[
- 19.2877095,
- -34.6404784
+ 8.1339457,
+ 54.709715
],
[
- 19.2861377,
- -34.5986563
+ 8.317796,
+ 55.0952362
],
[
- 19.3474363,
- -34.5244458
+ 10.1887438,
+ 54.7783834
],
[
- 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
+ 10.6321475,
+ 54.4778841
],
[
- 18.501748,
- -34.1015292
+ 11.2702164,
+ 54.6221504
],
[
- 18.4999545,
- -34.3616945
+ 11.681176,
+ 54.3709243
],
[
- 18.4477325,
- -34.3620007
+ 12.0272473,
+ 54.3898199
],
[
- 18.4479944,
- -34.3522691
+ 13.3250145,
+ 54.8531617
],
[
- 18.3974362,
- -34.3514041
+ 13.9198245,
+ 54.6972173
],
[
- 18.3971742,
- -34.3022959
+ 14.2118221,
+ 54.1308273
],
[
- 18.3565705,
- -34.3005647
+ 14.493005,
+ 53.2665063
],
[
- 18.3479258,
- -34.2020436
+ 14.1577485,
+ 52.8766495
],
[
- 18.2972095,
- -34.1950274
+ 14.7525584,
+ 52.5819369
],
[
- 18.2951139,
- -33.9937138
+ 15.0986297,
+ 51.0171541
],
[
- 18.3374474,
- -33.9914079
+ 14.9364088,
+ 50.8399279
],
[
- 18.3476638,
- -33.8492427
+ 14.730929,
+ 50.7920977
],
[
- 18.3479258,
- -33.781555
+ 14.4389313,
+ 50.8808862
],
[
- 18.4124718,
- -33.7448849
+ 12.9573138,
+ 50.3939044
],
[
- 18.3615477,
- -33.6501624
+ 12.51391,
+ 50.3939044
],
[
- 18.2992013,
- -33.585591
+ 12.3084302,
+ 50.1173237
],
[
- 18.2166839,
- -33.448872
+ 12.6112425,
+ 49.9088337
],
[
- 18.1389858,
- -33.3974083
+ 12.394948,
+ 49.7344006
],
[
- 17.9473472,
- -33.1602647
+ 12.7734634,
+ 49.4047626
],
[
- 17.8855247,
- -33.0575732
+ 14.1469337,
+ 48.6031036
],
[
- 17.8485884,
- -32.9668505
+ 14.6768553,
+ 48.6531391
],
[
- 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
+ 15.0661855,
+ 49.0445497
],
[
- 10.373383,
- 47.098175
+ 16.2666202,
+ 48.7459305
],
[
- 12.482758,
- 47.098175
+ 16.4937294,
+ 48.8741286
],
[
- 12.482758,
- 46.213553
+ 16.904689,
+ 48.7173975
],
[
- 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
+ 16.9371332,
+ 48.5315383
],
[
- 10.373383,
- 47.098175
+ 16.8384693,
+ 48.3823161
],
[
- 12.482758,
- 47.098175
+ 17.2017097,
+ 48.010204
],
[
- 12.482758,
- 46.213553
+ 17.1214145,
+ 47.6997605
],
[
- 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
+ 16.777292,
+ 47.6585709
],
[
- 8.6,
- 47.39
+ 16.6090543,
+ 47.7460598
],
[
- 8.77,
- 47.39
+ 16.410228,
+ 47.6637214
],
[
- 8.77,
- 47.31
+ 16.7352326,
+ 47.6147714
],
[
- 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
+ 16.5555242,
+ 47.3589738
],
[
- 12.0943104,
- 55.3842256
+ 16.4790525,
+ 46.9768539
],
[
- 12.1573875,
- 55.3833103
+ 16.0355168,
+ 46.8096295
],
[
- 12.1587287,
- 55.4013326
+ 16.0508112,
+ 46.6366332
],
[
- 12.1903468,
- 55.400558
+ 14.9572663,
+ 46.6313822
],
[
- 12.1931411,
- 55.4364665
+ 14.574908,
+ 46.3892866
],
[
- 12.2564251,
- 55.4347995
+ 12.3954655,
+ 46.6891149
],
[
- 12.2547073,
- 55.4168882
+ 12.1507562,
+ 47.0550608
],
[
- 12.3822489,
- 55.4134349
+ 11.1183887,
+ 46.9142058
],
[
- 12.3795942,
- 55.3954143
+ 11.0342699,
+ 46.7729797
],
[
- 12.4109213,
- 55.3946958
+ 10.4836739,
+ 46.8462544
],
[
- 12.409403,
- 55.3766417
+ 10.4607324,
+ 46.5472973
],
[
- 12.4407807,
- 55.375779
+ 10.1013156,
+ 46.5735879
],
[
- 12.4394142,
- 55.3578314
+ 10.2007287,
+ 46.1831867
],
[
- 12.4707413,
- 55.3569971
+ 9.8948421,
+ 46.3629068
],
[
- 12.4629475,
- 55.2672214
+ 9.5966026,
+ 46.2889758
],
[
- 12.4315633,
- 55.2681491
+ 9.2983631,
+ 46.505206
],
[
- 12.430045,
- 55.2502103
+ 9.2830687,
+ 46.2572605
],
[
- 12.3672011,
- 55.2519673
+ 9.0536537,
+ 45.7953255
],
[
- 12.3656858,
- 55.2340267
+ 8.4265861,
+ 46.2466846
],
[
- 12.2714604,
- 55.2366031
+ 8.4418804,
+ 46.4736161
],
[
- 12.2744467,
- 55.272476
+ 7.8759901,
+ 45.9284607
],
[
- 12.2115654,
- 55.2741475
+ 7.0959791,
+ 45.8645956
],
[
- 12.2130078,
- 55.2920322
+ 6.7747981,
+ 46.1620044
],
[
- 12.1815665,
- 55.2928638
+ 6.8206811,
+ 46.4051083
],
[
- 12.183141,
- 55.3107091
+ 6.5453831,
+ 46.4578142
],
[
- 12.2144897,
- 55.3100981
+ 6.3312624,
+ 46.3840116
],
[
- 12.2159927,
- 55.3279764
+ 6.3847926,
+ 46.2466846
],
[
- 12.1214458,
- 55.3303379
+ 5.8953739,
+ 46.0878021
],
[
- 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
+ 6.1171418,
+ 46.3681838
],
[
- -0.7595183,
- 51.0856254
+ 6.0942003,
+ 46.5998657
],
[
- -0.8014342,
- 51.1457917
+ 6.4383228,
+ 46.7782169
],
[
- -0.8398864,
- 51.1440686
+ 6.4306756,
+ 46.9298747
],
[
- -0.8357665,
- 51.1802397
+ 7.0806847,
+ 47.3460216
],
[
- -0.8529549,
- 51.2011266
+ 6.8436226,
+ 47.3719227
],
[
- -0.8522683,
- 51.2096231
+ 6.9965659,
+ 47.5012373
],
[
- -0.8495217,
- 51.217903
+ 7.1800979,
+ 47.5064033
],
[
- -0.8266907,
- 51.2403696
+ 7.2336281,
+ 47.439206
],
[
- -0.8120995,
- 51.2469248
+ 7.4553959,
+ 47.4805683
],
[
- -0.7736474,
- 51.2459577
+ 7.7842241,
+ 48.645735
],
[
- -0.7544213,
- 51.2381127
+ 8.1971711,
+ 49.0282701
],
[
- -0.754078,
- 51.233921
+ 7.6006921,
+ 49.0382974
],
[
- -0.7446366,
- 51.2333836
+ 7.4477487,
+ 49.1634679
],
[
- -0.7430693,
- 51.2847178
+ 7.2030394,
+ 49.1034255
],
[
- -0.751503,
- 51.3069524
+ 6.6677378,
+ 49.1634679
],
[
- -0.7664376,
- 51.3121032
+ 6.6371491,
+ 49.3331933
],
[
- -0.7820588,
- 51.3270157
+ 6.3542039,
+ 49.4576194
],
[
- -0.7815438,
- 51.3388135
+ 6.5453831,
+ 49.8043366
],
[
- -0.7374268,
- 51.3720456
+ 6.2471436,
+ 49.873384
],
[
- -0.7192307,
- 51.3769748
+ 6.0789059,
+ 50.1534883
],
[
- -0.6795769,
- 51.3847961
+ 6.3618511,
+ 50.3685934
],
[
- -0.6807786,
- 51.3901523
+ 6.0865531,
+ 50.7039632
],
[
- -0.6531411,
- 51.3917591
+ 5.8800796,
+ 51.0513752
],
[
- -0.6301385,
- 51.3905808
+ 6.1247889,
+ 51.1618085
],
[
- -0.6291085,
- 51.3970074
+ 6.1936134,
+ 51.491527
],
[
- -0.6234437,
- 51.3977572
+ 5.9641984,
+ 51.7526501
],
[
- -0.613144,
- 51.4295552
+ 6.0253758,
+ 51.8897286
],
[
- -0.6002471,
- 51.4459121
+ 6.4536171,
+ 51.8661241
],
[
- -0.5867081,
- 51.4445365
+ 6.8436226,
+ 51.9557552
],
[
- -0.5762368,
- 51.453202
+ 6.6906793,
+ 52.0499105
],
[
- -0.5626755,
- 51.4523462
+ 7.0042131,
+ 52.2282603
],
[
- -0.547741,
- 51.4469972
+ 7.0195074,
+ 52.4525245
],
[
- -0.5372697,
- 51.4448575
+ 6.6983264,
+ 52.4665032
],
[
- -0.537098,
- 51.4526671
+ 6.6906793,
+ 52.6524628
],
[
- -0.5439644,
- 51.4545926
+ 7.0348017,
+ 52.6385432
],
[
- -0.5405312,
- 51.4698865
+ 7.0730376,
+ 52.8330151
],
[
- -0.5309182,
- 51.4760881
+ 7.2183337,
+ 52.9852064
],
[
- -0.5091172,
- 51.4744843
+ 7.1953922,
+ 53.3428087
],
[
- -0.5086022,
- 51.4695657
- ],
+ 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://{switch:a,b,c}.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": [
+ [
[
- -0.4900628,
- 51.4682825
+ 120.336593,
+ 15.985768
],
[
- -0.4526406,
- 51.4606894
+ 120.445995,
+ 15.984
],
[
- -0.4486924,
- 51.4429316
+ 120.446134,
+ 15.974459
],
[
- -0.4414826,
- 51.4418616
+ 120.476464,
+ 15.974592
],
[
- -0.4418259,
- 51.4369394
+ 120.594247,
+ 15.946832
],
[
- -0.4112702,
- 51.4380095
+ 120.598064,
+ 16.090795
],
[
- -0.4014855,
- 51.4279498
+ 120.596537,
+ 16.197999
],
[
- -0.3807145,
- 51.4262372
+ 120.368537,
+ 16.218527
],
[
- -0.3805428,
- 51.4161749
+ 120.347576,
+ 16.042308
],
[
- -0.3491288,
- 51.4138195
- ],
+ 120.336593,
+ 15.985768
+ ]
+ ],
+ [
[
- -0.3274994,
- 51.4037544
+ 120.8268,
+ 15.3658
],
[
- -0.3039818,
- 51.3990424
+ 121.2684,
+ 15.2602
],
[
- -0.3019219,
- 51.3754747
+ 121.2699,
+ 14.7025
],
[
- -0.309475,
- 51.369688
- ],
+ 120.695,
+ 14.8423
+ ]
+ ]
+ ]
+ },
+ {
+ "name": "Slovakia EEA CORINE 2006",
+ "type": "tms",
+ "template": "http://www.freemap.sk/tms/clc/{zoom}/{x}/{y}.png",
+ "polygon": [
+ [
[
- -0.3111916,
- 51.3529669
+ 19.83682,
+ 49.25529
],
[
- -0.2955704,
- 51.3541462
+ 19.80075,
+ 49.42385
],
[
- -0.2923089,
- 51.3673303
+ 19.60437,
+ 49.48058
],
[
- -0.2850991,
- 51.3680805
+ 19.49179,
+ 49.63961
],
[
- -0.2787476,
- 51.3771891
+ 19.21831,
+ 49.52604
],
[
- -0.2655297,
- 51.3837247
+ 19.16778,
+ 49.42521
],
[
- -0.2411538,
- 51.3847961
+ 19.00308,
+ 49.42236
],
[
- -0.2123147,
- 51.3628288
+ 18.97611,
+ 49.5308
],
[
- -0.2107697,
- 51.3498578
+ 18.54685,
+ 49.51425
],
[
- -0.190857,
- 51.3502867
+ 18.31432,
+ 49.33818
],
[
- -0.1542931,
- 51.3338802
+ 18.15913,
+ 49.2961
],
[
- -0.1496583,
- 51.3057719
+ 18.05564,
+ 49.11134
],
[
- -0.1074296,
- 51.2966491
+ 17.56396,
+ 48.84938
],
[
- -0.0887185,
- 51.3099571
+ 17.17929,
+ 48.88816
],
[
- -0.0878602,
- 51.3220811
+ 17.058,
+ 48.81105
],
[
- -0.0652009,
- 51.3215448
+ 16.90426,
+ 48.61947
],
[
- -0.0641709,
- 51.3264793
+ 16.79685,
+ 48.38561
],
[
- -0.0519829,
- 51.3263721
+ 17.06762,
+ 48.01116
],
[
- -0.0528412,
- 51.334631
+ 17.32787,
+ 47.97749
],
[
- -0.0330779,
- 51.3430876
+ 17.51699,
+ 47.82535
],
[
- 0.0019187,
- 51.3376339
+ 17.74776,
+ 47.73093
],
[
- 0.0118751,
- 51.3281956
+ 18.29515,
+ 47.72075
],
[
- 0.013935,
- 51.2994398
+ 18.67959,
+ 47.75541
],
[
- 0.0202865,
- 51.2994398
+ 18.89755,
+ 47.81203
],
[
- 0.0240631,
- 51.3072743
+ 18.79463,
+ 47.88245
],
[
- 0.0331611,
- 51.3086694
+ 18.84318,
+ 48.04046
],
[
- 0.0455207,
- 51.30545
+ 19.46212,
+ 48.05333
],
[
- 0.0523872,
- 51.2877392
+ 19.62064,
+ 48.22938
],
[
- 0.0616569,
- 51.2577764
+ 19.89585,
+ 48.09387
],
[
- 0.0640602,
- 51.2415518
+ 20.33766,
+ 48.2643
],
[
- 0.0462074,
- 51.2126342
+ 20.55395,
+ 48.52358
],
[
- 0.0407142,
- 51.2109136
+ 20.82335,
+ 48.55714
],
[
- 0.0448341,
- 51.1989753
+ 21.10271,
+ 48.47096
],
[
- 0.0494689,
- 51.1997283
+ 21.45863,
+ 48.55513
],
[
- 0.0558204,
- 51.1944573
+ 21.74536,
+ 48.31435
],
[
- 0.0611419,
- 51.1790713
+ 22.15293,
+ 48.37179
],
[
- 0.0623435,
- 51.1542061
+ 22.61255,
+ 49.08914
],
[
- 0.0577087,
- 51.1417146
+ 22.09997,
+ 49.23814
],
[
- 0.0204582,
- 51.1365447
+ 21.9686,
+ 49.36363
],
[
- -0.0446015,
- 51.1336364
+ 21.6244,
+ 49.46989
],
[
- -0.1566964,
- 51.1352522
+ 21.06873,
+ 49.46402
],
[
- -0.1572114,
- 51.1290043
+ 20.94336,
+ 49.31088
],
[
- -0.2287942,
- 51.1183379
+ 20.73052,
+ 49.44006
],
[
- -0.2473336,
- 51.1183379
+ 20.22804,
+ 49.41714
],
[
- -0.2500802,
- 51.1211394
+ 20.05234,
+ 49.23052
],
[
- -0.299347,
- 51.1137042
- ],
+ 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": [
+ [
[
- -0.3221779,
- 51.1119799
+ 19.83682,
+ 49.25529
],
[
- -0.3223496,
- 51.1058367
+ 19.80075,
+ 49.42385
],
[
- -0.3596001,
- 51.1019563
+ 19.60437,
+ 49.48058
],
[
- -0.3589135,
- 51.1113333
+ 19.49179,
+ 49.63961
],
[
- -0.3863793,
- 51.1117644
+ 19.21831,
+ 49.52604
],
[
- -0.3869014,
- 51.1062516
+ 19.16778,
+ 49.42521
],
[
- -0.4281001,
- 51.0947174
+ 19.00308,
+ 49.42236
],
[
- -0.4856784,
- 51.0951554
+ 18.97611,
+ 49.5308
],
[
- -0.487135,
- 51.0872266
+ 18.54685,
+ 49.51425
],
[
- -0.5297404,
- 51.0865404
+ 18.31432,
+ 49.33818
],
[
- -0.5302259,
- 51.0789914
+ 18.15913,
+ 49.2961
],
[
- -0.61046,
- 51.076551
+ 18.05564,
+ 49.11134
],
[
- -0.6099745,
- 51.080669
+ 17.56396,
+ 48.84938
],
[
- -0.6577994,
- 51.0792202
+ 17.17929,
+ 48.88816
],
[
- -0.6582849,
- 51.0743394
+ 17.058,
+ 48.81105
],
[
- -0.6836539,
- 51.0707547
+ 16.90426,
+ 48.61947
],
[
- -0.6997979,
- 51.070831
+ 16.79685,
+ 48.38561
],
[
- -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
+ 17.06762,
+ 48.01116
],
[
- 1.2015377,
- 43.6329729
+ 17.32787,
+ 47.97749
],
[
- 1.2011107,
- 43.6554932
+ 17.51699,
+ 47.82535
],
[
- 1.2227985,
- 43.6557029
+ 17.74776,
+ 47.73093
],
[
- 1.2226231,
- 43.6653353
+ 18.29515,
+ 47.72075
],
[
- 1.2275341,
- 43.6653849
+ 18.67959,
+ 47.75541
],
[
- 1.2275417,
- 43.6656387
+ 18.89755,
+ 47.81203
],
[
- 1.2337568,
- 43.6656883
+ 18.79463,
+ 47.88245
],
[
- 1.2337644,
- 43.6650153
+ 18.84318,
+ 48.04046
],
[
- 1.2351218,
- 43.6650319
+ 19.46212,
+ 48.05333
],
[
- 1.2350913,
- 43.6670729
+ 19.62064,
+ 48.22938
],
[
- 1.2443566,
- 43.6671556
+ 19.89585,
+ 48.09387
],
[
- 1.2441584,
- 43.6743925
+ 20.33766,
+ 48.2643
],
[
- 1.2493973,
- 43.6744256
+ 20.55395,
+ 48.52358
],
[
- 1.2493973,
- 43.6746628
+ 20.82335,
+ 48.55714
],
[
- 1.2555666,
- 43.6747234
+ 21.10271,
+ 48.47096
],
[
- 1.2555742,
- 43.6744532
+ 21.45863,
+ 48.55513
],
[
- 1.2569545,
- 43.6744697
+ 21.74536,
+ 48.31435
],
[
- 1.2568782,
- 43.678529
+ 22.15293,
+ 48.37179
],
[
- 1.2874873,
- 43.6788257
+ 22.61255,
+ 49.08914
],
[
- 1.2870803,
- 43.7013229
+ 22.09997,
+ 49.23814
],
[
- 1.3088219,
- 43.7014632
+ 21.9686,
+ 49.36363
],
[
- 1.3086493,
- 43.7127673
+ 21.6244,
+ 49.46989
],
[
- 1.3303262,
- 43.7129544
+ 21.06873,
+ 49.46402
],
[
- 1.3300242,
- 43.7305221
+ 20.94336,
+ 49.31088
],
[
- 1.3367106,
- 43.7305845
+ 20.73052,
+ 49.44006
],
[
- 1.3367322,
- 43.7312235
+ 20.22804,
+ 49.41714
],
[
- 1.3734338,
- 43.7310456
+ 20.05234,
+ 49.23052
],
[
- 1.3735848,
- 43.7245772
- ],
+ 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": [
+ [
[
- 1.4604504,
- 43.7252947
+ 16.8196949,
+ 47.4927236
],
[
- 1.4607783,
- 43.7028034
+ 16.8196949,
+ 49.5030322
],
[
- 1.4824875,
- 43.7029516
+ 22.8388318,
+ 49.5030322
],
[
- 1.4829828,
- 43.6692071
+ 22.8388318,
+ 47.4927236
],
[
- 1.5046832,
- 43.6693616
- ],
+ 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": [
+ [
[
- 1.5048383,
- 43.6581174
+ 17.8396817,
+ -32.7983384
],
[
- 1.5265475,
- 43.6582656
+ 17.8893509,
+ -32.6972835
],
[
- 1.5266945,
- 43.6470298
+ 18.00364,
+ -32.6982187
],
[
- 1.548368,
- 43.6471633
+ 18.0991679,
+ -32.7485251
],
[
- 1.5485357,
- 43.6359385
+ 18.2898747,
+ -32.5526645
],
[
- 1.5702172,
- 43.636082
+ 18.2930182,
+ -32.0487089
],
[
- 1.5705123,
- 43.6135777
+ 18.105455,
+ -31.6454966
],
[
- 1.5488166,
- 43.6134276
+ 17.8529257,
+ -31.3443951
],
[
- 1.549097,
- 43.5909479
+ 17.5480046,
+ -30.902171
],
[
- 1.5707695,
- 43.5910694
+ 17.4044506,
+ -30.6374731
],
[
- 1.5709373,
- 43.5798341
+ 17.2493704,
+ -30.3991663
],
[
- 1.5793714,
- 43.5798894
+ 16.9936977,
+ -29.6543552
],
[
- 1.5794782,
- 43.5737682
+ 16.7987996,
+ -29.19437
],
[
- 1.5809119,
- 43.5737792
+ 16.5494139,
+ -28.8415949
],
[
- 1.5810859,
- 43.5573794
+ 16.4498691,
+ -28.691876
],
[
- 1.5712334,
- 43.5573131
+ 16.4491046,
+ -28.5515766
],
[
- 1.5716504,
- 43.5235497
+ 16.6002551,
+ -28.4825663
],
[
- 1.3984804,
- 43.5222618
+ 16.7514057,
+ -28.4486958
],
[
- 1.3986509,
- 43.5110113
+ 16.7462192,
+ -28.2458973
],
[
- 1.3120959,
- 43.5102543
+ 16.8855148,
+ -28.04729
],
[
- 1.3118968,
- 43.5215192
+ 16.9929502,
+ -28.0244005
],
[
- 1.2902569,
- 43.5213126
+ 17.0529659,
+ -28.0257086
],
[
- 1.2898637,
- 43.5438168
+ 17.1007562,
+ -28.0338839
],
[
- 1.311517,
- 43.5440133
+ 17.2011527,
+ -28.0930546
],
[
- 1.3113271,
- 43.5552596
+ 17.2026346,
+ -28.2328424
],
[
- 1.3036924,
- 43.5551924
+ 17.2474611,
+ -28.2338215
],
[
- 1.3036117,
- 43.5595099
+ 17.2507953,
+ -28.198892
],
[
- 1.2955449,
- 43.5594317
+ 17.3511919,
+ -28.1975861
],
[
- 1.2955449,
- 43.5595489
+ 17.3515624,
+ -28.2442655
],
[
- 1.2895595,
- 43.5594473
+ 17.4015754,
+ -28.2452446
],
[
- 1.2892899,
- 43.5775366
+ 17.4149122,
+ -28.3489751
],
[
- 1.2675698,
- 43.5773647
+ 17.4008345,
+ -28.547997
],
[
- 1.2673973,
- 43.5886141
+ 17.4526999,
+ -28.5489733
],
[
- 1.25355,
- 43.5885047
+ 17.4512071,
+ -28.6495106
],
[
- 1.2533774,
- 43.5956282
+ 17.4983599,
+ -28.6872054
],
[
- 1.2518029,
- 43.5956282
+ 17.6028204,
+ -28.6830048
],
[
- 1.2518029,
- 43.5949409
+ 17.6499732,
+ -28.6967928
],
[
- 1.2350437,
- 43.5947847
+ 17.6525928,
+ -28.7381457
],
[
- 1.2350437,
- 43.5945972
+ 17.801386,
+ -28.7381457
],
[
- 1.2239572,
- 43.5945972
+ 17.9994276,
+ -28.7560602
],
[
- 1.2239357,
- 43.5994708
+ 18.0002748,
+ -28.7956172
],
[
- 1.2139708,
- 43.599299
+ 18.1574507,
+ -28.8718055
],
[
- 1.2138845,
- 43.6046408
+ 18.5063811,
+ -28.8718055
],
[
- 1.2020647,
- 43.6044846
+ 18.6153564,
+ -28.8295875
],
[
- 1.2019464,
- 43.61048
+ 18.9087513,
+ -28.8277516
],
[
- 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
+ 19.1046973,
+ -28.9488548
],
[
- 1.1351836,
- 43.6870842
+ 19.1969071,
+ -28.9378513
],
[
- 1.1348907,
- 43.6983471
+ 19.243012,
+ -28.8516164
],
[
- 1.1782867,
- 43.6990338
+ 19.2314858,
+ -28.802963
],
[
- 1.1779903,
- 43.7102786
+ 19.2587296,
+ -28.7009928
],
[
- 1.1996591,
- 43.7106144
+ 19.4431493,
+ -28.6973163
],
[
- 1.1993387,
- 43.7218722
+ 19.5500289,
+ -28.4958332
],
[
- 1.2427356,
- 43.7225269
+ 19.6967264,
+ -28.4939914
],
[
- 1.2424336,
- 43.7337491
+ 19.698822,
+ -28.4479358
],
[
- 1.2641536,
- 43.734092
+ 19.8507587,
+ -28.4433291
],
[
- 1.2638301,
- 43.7453588
+ 19.8497109,
+ -28.4027818
],
[
- 1.2855285,
- 43.7456548
+ 19.9953605,
+ -28.399095
],
[
- 1.2852481,
- 43.756935
+ 19.9893671,
+ -24.7497859
],
[
- 1.306925,
- 43.757231
+ 20.2916682,
+ -24.9192346
],
[
- 1.3066446,
- 43.7684779
+ 20.4724562,
+ -25.1501701
],
[
- 1.3283431,
- 43.7687894
+ 20.6532441,
+ -25.4529449
],
[
- 1.3280842,
- 43.780034
+ 20.733265,
+ -25.6801957
],
[
- 1.4367275,
- 43.7815757
+ 20.8281046,
+ -25.8963498
],
[
- 1.4373098,
- 43.7591004
+ 20.8429232,
+ -26.215851
],
[
- 1.4590083,
- 43.7593653
+ 20.6502804,
+ -26.4840868
],
[
- 1.4593318,
- 43.7481479
+ 20.6532441,
+ -26.8204869
],
[
- 1.4810303,
- 43.7483972
+ 21.0889134,
+ -26.846933
],
[
- 1.4813322,
- 43.7371777
+ 21.6727695,
+ -26.8389998
],
[
- 1.5030307,
- 43.7374115
+ 21.7765003,
+ -26.6696268
],
[
- 1.5035915,
- 43.7149664
+ 21.9721069,
+ -26.6431395
],
[
- 1.5253115,
- 43.7151846
+ 22.2803355,
+ -26.3274702
],
[
- 1.5256135,
- 43.7040057
+ 22.5707817,
+ -26.1333967
],
[
- 1.5472688,
- 43.7042552
+ 22.7752795,
+ -25.6775246
],
[
- 1.5475708,
- 43.6930431
+ 23.0005235,
+ -25.2761948
],
[
- 1.5692045,
- 43.6932926
+ 23.4658301,
+ -25.2735148
],
[
- 1.5695712,
- 43.6820316
+ 23.883717,
+ -25.597366
],
[
- 1.5912049,
- 43.6822656
+ 24.2364017,
+ -25.613402
],
[
- 1.5917441,
- 43.6597998
+ 24.603905,
+ -25.7896563
],
[
- 1.613421,
- 43.6600339
+ 25.110704,
+ -25.7389432
],
[
- 1.613723,
- 43.6488291
+ 25.5078447,
+ -25.6855376
],
[
- 1.6353783,
- 43.6490788
+ 25.6441766,
+ -25.4823781
],
[
- 1.6384146,
- 43.5140731
+ 25.8419267,
+ -24.7805437
],
[
- 1.2921649,
- 43.5094658
+ 25.846641,
+ -24.7538456
],
[
- 1.2918629,
- 43.5206966
+ 26.3928487,
+ -24.6332894
],
[
- 1.2702076,
- 43.5203994
+ 26.4739066,
+ -24.5653312
],
[
- 1.2698841,
- 43.5316437
+ 26.5089966,
+ -24.4842437
],
[
- 1.2482288,
- 43.531331
+ 26.5861946,
+ -24.4075775
],
[
- 1.2476048,
- 43.5537788
+ 26.7300635,
+ -24.3014458
],
[
- 1.2259628,
- 43.5534914
+ 26.8567384,
+ -24.2499463
],
[
- 1.2256819,
- 43.564716
+ 26.8574402,
+ -24.1026901
],
[
- 1.2039835,
- 43.564419
+ 26.9215471,
+ -23.8990957
],
[
- 1.2033148,
- 43.5869049
+ 26.931831,
+ -23.8461891
],
[
- 1.1816164,
- 43.5865611
+ 26.9714827,
+ -23.6994344
],
[
- 1.1810237,
- 43.6090368
+ 27.0006074,
+ -23.6367644
],
[
- 1.1592821,
- 43.6086932
+ 27.0578041,
+ -23.6052574
],
[
- 1.1589585,
- 43.6199523
+ 27.1360547,
+ -23.5203437
],
[
- 1.1372601,
- 43.6196244
+ 27.3339623,
+ -23.3973792
],
[
- 1.1365933,
- 43.642094
+ 27.5144057,
+ -23.3593929
],
[
- 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
+ 27.5958145,
+ -23.2085465
],
[
- 0.54585,
- 47.4608163
+ 27.8098634,
+ -23.0994957
],
[
- 0.5392188,
- 47.4606983
+ 27.8828506,
+ -23.0620496
],
[
- 0.5393484,
- 47.456243
+ 27.9382928,
+ -22.9496487
],
[
- 0.5327959,
- 47.4561003
+ 28.0407556,
+ -22.8255118
],
[
- 0.5329011,
- 47.451565
+ 28.2056786,
+ -22.6552861
],
[
- 0.52619,
- 47.4514013
+ 28.3397223,
+ -22.5639374
],
[
- 0.5265854,
- 47.4424884
+ 28.4906093,
+ -22.560697
],
[
- 0.5000941,
- 47.4420739
+ 28.6108769,
+ -22.5400248
],
[
- 0.5002357,
- 47.4375835
+ 28.828175,
+ -22.4550173
],
[
- 0.4936014,
- 47.4374324
+ 28.9285324,
+ -22.4232328
],
[
- 0.4937,
- 47.4329285
+ 28.9594116,
+ -22.3090081
],
[
- 0.4606141,
- 47.4324593
+ 29.0162574,
+ -22.208335
],
[
- 0.4607248,
- 47.4279827
+ 29.2324117,
+ -22.1693453
],
[
- 0.4541016,
- 47.4278125
+ 29.3531213,
+ -22.1842926
],
[
- 0.454932,
- 47.4053921
+ 29.6548952,
+ -22.1186426
],
[
- 0.4615431,
- 47.4054476
+ 29.7777102,
+ -22.1361956
],
[
- 0.4619097,
- 47.3964924
+ 29.9292989,
+ -22.1849425
],
[
- 0.4684346,
- 47.3966005
+ 30.1166795,
+ -22.2830348
],
[
- 0.4691319,
- 47.3786415
+ 30.2563377,
+ -22.2914767
],
[
- 0.4757125,
- 47.3787609
+ 30.3033582,
+ -22.3395204
],
[
- 0.4762116,
- 47.3652018
+ 30.5061784,
+ -22.3057617
],
[
- 0.4828297,
- 47.3653499
+ 30.8374279,
+ -22.284983
],
[
- 0.4832223,
- 47.3518574
+ 31.0058599,
+ -22.3077095
],
[
- 0.5097927,
- 47.3522592
+ 31.1834152,
+ -22.3232913
],
[
- 0.5095688,
- 47.3567713
+ 31.2930586,
+ -22.3674647
],
[
- 0.5227698,
- 47.3569785
+ 31.5680579,
+ -23.1903385
],
[
- 0.5226429,
- 47.3614867
+ 31.5568311,
+ -23.4430809
],
[
- 0.5490721,
- 47.3618878
+ 31.6931122,
+ -23.6175209
],
[
- 0.5489087,
- 47.3663307
+ 31.7119696,
+ -23.741136
],
[
- 0.5555159,
- 47.3664985
+ 31.7774743,
+ -23.8800628
],
[
- 0.5559105,
- 47.3575522
+ 31.8886337,
+ -23.9481098
],
[
- 0.6152789,
- 47.358407
+ 31.9144386,
+ -24.1746736
],
[
- 0.6152963,
- 47.362893
+ 31.9948307,
+ -24.3040878
],
[
- 0.6285093,
- 47.3630936
+ 32.0166656,
+ -24.4405988
],
[
- 0.6288256,
- 47.353987
+ 32.0077331,
+ -24.6536578
],
[
- 0.6155012,
- 47.3538823
+ 32.019643,
+ -24.9140701
],
[
- 0.6157682,
- 47.3493424
+ 32.035523,
+ -25.0849767
],
[
- 0.6090956,
- 47.3492991
+ 32.019643,
+ -25.3821442
],
[
- 0.6094735,
- 47.3402962
+ 31.9928457,
+ -25.4493771
],
[
- 0.6160477,
- 47.3404448
+ 31.9997931,
+ -25.5165725
],
[
- 0.616083,
- 47.3369074
+ 32.0057481,
+ -25.6078978
],
[
- 0.77497,
- 47.3388218
+ 32.0057481,
+ -25.6624806
],
[
- 0.7745786,
- 47.351628
+ 31.9362735,
+ -25.8403721
],
[
- 0.7680363,
- 47.3515901
+ 31.9809357,
+ -25.9546537
],
[
- 0.767589,
- 47.3605298
+ 31.8687838,
+ -26.0037251
],
[
- 0.7742443,
- 47.3606238
+ 31.4162062,
+ -25.7277683
],
[
- 0.7733465,
- 47.3921266
+ 31.3229117,
+ -25.7438611
],
[
- 0.7667434,
- 47.3920195
+ 31.2504595,
+ -25.8296526
],
[
- 0.7664411,
- 47.4010837
+ 31.1393001,
+ -25.9162746
],
[
- 0.7730647,
- 47.4011115
+ 31.1164727,
+ -25.9912361
],
[
- 0.7728868,
- 47.4101297
+ 30.9656135,
+ -26.2665756
],
[
- 0.7661849,
- 47.4100226
+ 30.8921689,
+ -26.3279703
],
[
- 0.7660267,
- 47.4145044
+ 30.8534616,
+ -26.4035568
],
[
- 0.7527613,
- 47.4143038
+ 30.8226943,
+ -26.4488849
],
[
- 0.7529788,
- 47.4098086
+ 30.8022583,
+ -26.5240694
],
[
- 0.7462373,
- 47.4097016
+ 30.8038369,
+ -26.8082089
],
[
- 0.7459424,
- 47.4232208
+ 30.9020939,
+ -26.7807451
],
[
- 0.7392324,
- 47.4231451
+ 30.9100338,
+ -26.8489495
],
[
- 0.738869,
- 47.4366116
+ 30.9824859,
+ -26.9082627
],
[
- 0.7323267,
- 47.4365171
+ 30.976531,
+ -27.0029222
],
[
- 0.7321869,
- 47.4410556
+ 31.0034434,
+ -27.0441587
],
[
- 0.7255048,
- 47.44098
+ 31.1543322,
+ -27.1980416
],
[
- 0.7254209,
- 47.4453479
+ 31.5015607,
+ -27.311117
],
[
- 0.7318793,
- 47.4454803
+ 31.9700183,
+ -27.311117
],
[
- 0.7318514,
- 47.4501126
+ 31.9700183,
+ -27.120472
],
[
- 0.7384496,
- 47.450226
+ 31.9769658,
+ -27.050664
],
[
- 0.7383098,
- 47.454631
+ 32.0002464,
+ -26.7983892
],
[
- 0.7449359,
- 47.4547444
+ 32.1069826,
+ -26.7984645
],
[
- 0.7443209,
- 47.4771985
+ 32.3114546,
+ -26.8479493
],
[
- 0.7310685,
- 47.4769717
+ 32.899986,
+ -26.8516059
],
[
- 0.7309008,
- 47.4815445
+ 32.886091,
+ -26.9816971
],
[
- 0.7176205,
- 47.4812611
+ 32.709427,
+ -27.4785436
],
[
- 0.7177883,
- 47.4768394
+ 32.6240724,
+ -27.7775144
],
[
- 0.69777,
- 47.4764993
+ 32.5813951,
+ -28.07479
],
[
- 0.6980496,
- 47.4719827
+ 32.5387178,
+ -28.2288046
],
[
- 0.6914514,
- 47.4718882
+ 32.4275584,
+ -28.5021568
],
[
- 0.6917309,
- 47.4630241
+ 32.3640388,
+ -28.5945699
],
[
- 0.6851048,
- 47.4629295
+ 32.0702603,
+ -28.8469827
],
[
- 0.684937,
- 47.4673524
+ 31.9878832,
+ -28.9069497
],
[
- 0.678255,
- 47.4673335
+ 31.7764818,
+ -28.969487
],
[
- 0.6779754,
- 47.4762158
+ 31.4638459,
+ -29.2859343
],
[
- 0.6714051,
- 47.4761592
+ 31.359634,
+ -29.3854348
],
[
- 0.6710417,
- 47.4881952
+ 31.1680825,
+ -29.6307408
],
[
- 0.6577334,
- 47.4879685
+ 31.064863,
+ -29.7893535
],
[
- 0.6578173,
- 47.48504
+ 31.0534493,
+ -29.8470469
],
[
- 0.6511911,
- 47.4848322
+ 31.0669933,
+ -29.8640319
],
[
- 0.6514707,
- 47.4758568
+ 31.0455459,
+ -29.9502017
],
[
- 0.6448166,
- 47.4757245
+ 30.9518556,
+ -30.0033946
],
[
- 0.6449284,
- 47.4712646
+ 30.8651833,
+ -30.1024093
],
[
- 0.6117976,
- 47.4707543
+ 30.7244725,
+ -30.392502
],
[
- 0.6118815,
- 47.4663129
+ 30.3556256,
+ -30.9308873
],
[
- 0.6052833,
- 47.4661239
+ 30.0972364,
+ -31.2458274
],
[
- 0.6054231,
- 47.4616631
+ 29.8673136,
+ -31.4304296
],
[
- 0.5988808,
- 47.4615497
+ 29.7409393,
+ -31.5014699
],
[
- 0.5990206,
- 47.4570886
+ 29.481312,
+ -31.6978686
],
[
- 0.572488,
- 47.4566916
+ 28.8943171,
+ -32.2898903
],
[
- 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
+ 28.5497137,
+ -32.5894641
],
[
- 0.54585,
- 47.4608163
+ 28.1436499,
+ -32.8320732
],
[
- 0.5392188,
- 47.4606983
+ 28.0748735,
+ -32.941689
],
[
- 0.5393484,
- 47.456243
+ 27.8450942,
+ -33.082869
],
[
- 0.5327959,
- 47.4561003
+ 27.3757956,
+ -33.3860685
],
[
- 0.5329011,
- 47.451565
+ 26.8805407,
+ -33.6458951
],
[
- 0.52619,
- 47.4514013
+ 26.5916871,
+ -33.7480756
],
[
- 0.5265854,
- 47.4424884
+ 26.4527308,
+ -33.7935795
],
[
- 0.5000941,
- 47.4420739
+ 26.206754,
+ -33.7548943
],
[
- 0.5002357,
- 47.4375835
+ 26.0077897,
+ -33.7223961
],
[
- 0.4936014,
- 47.4374324
+ 25.8055494,
+ -33.7524272
],
[
- 0.4937,
- 47.4329285
+ 25.7511073,
+ -33.8006512
],
[
- 0.4606141,
- 47.4324593
+ 25.6529079,
+ -33.8543597
],
[
- 0.4607248,
- 47.4279827
+ 25.6529079,
+ -33.9469768
],
[
- 0.4541016,
- 47.4278125
+ 25.7195789,
+ -34.0040115
],
[
- 0.454932,
- 47.4053921
+ 25.7202807,
+ -34.0511235
],
[
- 0.4615431,
- 47.4054476
+ 25.5508915,
+ -34.063151
],
[
- 0.4619097,
- 47.3964924
+ 25.3504571,
+ -34.0502627
],
[
- 0.4684346,
- 47.3966005
+ 25.2810609,
+ -34.0020322
],
[
- 0.4691319,
- 47.3786415
+ 25.0476316,
+ -33.9994588
],
[
- 0.4757125,
- 47.3787609
+ 24.954724,
+ -34.0043594
],
[
- 0.4762116,
- 47.3652018
+ 24.9496586,
+ -34.1010363
],
[
- 0.4828297,
- 47.3653499
+ 24.8770358,
+ -34.1506456
],
[
- 0.4829611,
- 47.3608321
+ 24.8762914,
+ -34.2005281
],
[
- 0.4763543,
- 47.360743
+ 24.8532574,
+ -34.2189562
],
[
- 0.476654,
- 47.3517263
+ 24.7645287,
+ -34.2017946
],
[
- 0.4700497,
- 47.3516186
+ 24.5001356,
+ -34.2003254
],
[
- 0.4701971,
- 47.3471313
+ 24.3486733,
+ -34.1163824
],
[
- 0.4637503,
- 47.3470104
+ 24.1988819,
+ -34.1019039
],
[
- 0.4571425,
- 47.3424146
+ 23.9963377,
+ -34.0514443
],
[
- 0.4572922,
- 47.3379061
+ 23.8017509,
+ -34.0524332
],
[
- 0.4506741,
- 47.3378081
+ 23.7493589,
+ -34.0111855
],
[
- 0.4508379,
- 47.3333051
+ 23.4973536,
+ -34.009014
],
[
- 0.4442212,
- 47.3332032
+ 23.4155191,
+ -34.0434586
],
[
- 0.4443809,
- 47.328711
+ 23.4154284,
+ -34.1140433
],
[
- 0.4311392,
- 47.3284977
+ 22.9000853,
+ -34.0993009
],
[
- 0.4316262,
- 47.3150004
+ 22.8412418,
+ -34.0547911
],
[
- 0.4382432,
- 47.3151136
+ 22.6470321,
+ -34.0502627
],
[
- 0.4383815,
- 47.3106174
+ 22.6459843,
+ -34.0072768
],
[
- 0.4714487,
- 47.3111374
+ 22.570016,
+ -34.0064081
],
[
- 0.4713096,
- 47.3156565
+ 22.5050499,
+ -34.0645866
],
[
- 0.477888,
- 47.3157542
+ 22.2519968,
+ -34.0645866
],
[
- 0.4780733,
- 47.3112802
+ 22.2221334,
+ -34.1014701
],
[
- 0.4846826,
- 47.3113639
+ 22.1621197,
+ -34.1057019
],
[
- 0.4848576,
- 47.3068686
+ 22.1712431,
+ -34.1521766
],
[
- 0.4914359,
- 47.3069803
+ 22.1576913,
+ -34.2180897
],
[
- 0.491745,
- 47.2979733
+ 22.0015632,
+ -34.2172232
],
[
- 0.4851578,
- 47.2978722
+ 21.9496952,
+ -34.3220009
],
[
- 0.4854269,
- 47.2888744
+ 21.8611528,
+ -34.4007145
],
[
- 0.4788485,
- 47.2887697
+ 21.5614708,
+ -34.4020114
],
[
- 0.4791574,
- 47.2797818
+ 21.5468011,
+ -34.3661242
],
[
- 0.4857769,
- 47.2799005
+ 21.501744,
+ -34.3669892
],
[
- 0.4859107,
- 47.2753885
+ 21.5006961,
+ -34.4020114
],
[
- 0.492539,
- 47.2755029
+ 21.4194886,
+ -34.4465247
],
[
- 0.4926669,
- 47.2710127
+ 21.1978706,
+ -34.4478208
],
[
- 0.4992986,
- 47.2711066
+ 21.0988193,
+ -34.3991325
],
[
- 0.4994296,
- 47.2666116
+ 21.0033746,
+ -34.3753872
],
[
- 0.5192658,
- 47.2669245
+ 20.893192,
+ -34.3997115
],
[
- 0.5194225,
- 47.2624231
+ 20.8976647,
+ -34.4854003
],
[
- 0.5260186,
- 47.2625205
+ 20.7446802,
+ -34.4828092
],
[
- 0.5258735,
- 47.2670183
+ 20.5042011,
+ -34.486264
],
[
- 0.5456972,
- 47.2673383
+ 20.2527197,
+ -34.701477
],
[
- 0.5455537,
- 47.2718283
+ 20.0803502,
+ -34.8361855
],
[
- 0.5587737,
- 47.2720366
+ 19.9923317,
+ -34.8379056
],
[
- 0.5586259,
- 47.2765185
+ 19.899074,
+ -34.8275845
],
[
- 0.5652252,
- 47.2766278
+ 19.8938348,
+ -34.7936018
],
[
- 0.5650848,
- 47.2811206
+ 19.5972963,
+ -34.7961833
],
[
- 0.5716753,
- 47.2812285
+ 19.3929677,
+ -34.642015
],
[
- 0.5715223,
- 47.2857217
+ 19.2877095,
+ -34.6404784
],
[
- 0.5781436,
- 47.2858299
+ 19.2861377,
+ -34.5986563
],
[
- 0.5779914,
- 47.2903294
+ 19.3474363,
+ -34.5244458
],
[
- 0.5846023,
- 47.2904263
+ 19.3285256,
+ -34.4534372
],
[
- 0.5843076,
- 47.2994231
+ 19.098001,
+ -34.449981
],
[
- 0.597499,
- 47.2996094
+ 19.0725583,
+ -34.3802371
],
[
- 0.5976637,
- 47.2951375
+ 19.0023531,
+ -34.3525593
],
[
- 0.6571596,
- 47.2960036
+ 18.9520568,
+ -34.3949373
],
[
- 0.6572988,
- 47.2915091
+ 18.7975006,
+ -34.3936403
],
[
- 0.6705019,
- 47.2917186
+ 18.7984174,
+ -34.1016376
],
[
- 0.6703475,
- 47.2962082
+ 18.501748,
+ -34.1015292
],
[
- 0.6836175,
- 47.2963688
+ 18.4999545,
+ -34.3616945
],
[
- 0.6834322,
- 47.3008929
+ 18.4477325,
+ -34.3620007
],
[
- 0.690062,
- 47.3009558
+ 18.4479944,
+ -34.3522691
],
[
- 0.6899241,
- 47.3054703
+ 18.3974362,
+ -34.3514041
],
[
- 0.7362019,
- 47.3061157
+ 18.3971742,
+ -34.3022959
],
[
- 0.7360848,
- 47.3106063
+ 18.3565705,
+ -34.3005647
],
[
- 0.7559022,
- 47.3108935
+ 18.3479258,
+ -34.2020436
],
[
- 0.7557718,
- 47.315392
+ 18.2972095,
+ -34.1950274
],
[
- 0.7623755,
- 47.3154716
+ 18.2951139,
+ -33.9937138
],
[
- 0.7622314,
- 47.3199941
+ 18.3374474,
+ -33.9914079
],
[
- 0.7754911,
- 47.3201546
+ 18.3476638,
+ -33.8492427
],
[
- 0.77497,
- 47.3388218
+ 18.3479258,
+ -33.781555
],
[
- 0.7745786,
- 47.351628
+ 18.4124718,
+ -33.7448849
],
[
- 0.7680363,
- 47.3515901
+ 18.3615477,
+ -33.6501624
],
[
- 0.767589,
- 47.3605298
+ 18.2992013,
+ -33.585591
],
[
- 0.7742443,
- 47.3606238
+ 18.2166839,
+ -33.448872
],
[
- 0.7733465,
- 47.3921266
+ 18.1389858,
+ -33.3974083
],
[
- 0.7667434,
- 47.3920195
+ 17.9473472,
+ -33.1602647
],
[
- 0.7664411,
- 47.4010837
+ 17.8855247,
+ -33.0575732
],
[
- 0.7730647,
- 47.4011115
+ 17.8485884,
+ -32.9668505
],
[
- 0.7728868,
- 47.4101297
- ],
+ 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": [
+ [
[
- 0.7661849,
- 47.4100226
+ 10.373383,
+ 46.213553
],
[
- 0.7660267,
- 47.4145044
+ 10.373383,
+ 47.098175
],
[
- 0.7527613,
- 47.4143038
+ 12.482758,
+ 47.098175
],
[
- 0.7529788,
- 47.4098086
+ 12.482758,
+ 46.213553
],
[
- 0.7462373,
- 47.4097016
+ 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
],
[
- 0.7459424,
- 47.4232208
+ 10.373383,
+ 47.098175
],
[
- 0.7392324,
- 47.4231451
+ 12.482758,
+ 47.098175
],
[
- 0.738869,
- 47.4366116
+ 12.482758,
+ 46.213553
],
[
- 0.7323267,
- 47.4365171
+ 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
],
[
- 0.7321869,
- 47.4410556
+ 8.6,
+ 47.39
],
[
- 0.7255048,
- 47.44098
+ 8.77,
+ 47.39
],
[
- 0.7254209,
- 47.4453479
+ 8.77,
+ 47.31
],
[
- 0.7318793,
- 47.4454803
+ 8.6,
+ 47.31
+ ]
+ ]
+ ],
+ "terms_text": "Stadt Uster Vermessung Orthophoto 2008"
+ },
+ {
+ "name": "Stadt Zürich Luftbild 2011",
+ "type": "tms",
+ "template": "http://mapproxy.sosm.ch:8080/tiles/zh_luftbild2011/EPSG900913/{z}/{x}/{y}.png?origin=nw",
+ "polygon": [
+ [
+ [
+ 8.4441,
+ 47.3141
],
[
- 0.7318514,
- 47.4501126
+ 8.4441,
+ 47.4411
],
[
- 0.7384496,
- 47.450226
+ 8.6284,
+ 47.4411
],
[
- 0.7383098,
- 47.454631
+ 8.6284,
+ 47.3141
],
[
- 0.7449359,
- 47.4547444
+ 8.4441,
+ 47.3141
+ ]
+ ]
+ ],
+ "terms_text": "Stadt Zürich Luftbild 2011"
+ },
+ {
+ "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
],
[
- 0.7443209,
- 47.4771985
+ 12.0943104,
+ 55.3842256
],
[
- 0.7310685,
- 47.4769717
+ 12.1573875,
+ 55.3833103
],
[
- 0.7309008,
- 47.4815445
+ 12.1587287,
+ 55.4013326
],
[
- 0.7176205,
- 47.4812611
+ 12.1903468,
+ 55.400558
],
[
- 0.7177883,
- 47.4768394
+ 12.1931411,
+ 55.4364665
],
[
- 0.69777,
- 47.4764993
+ 12.2564251,
+ 55.4347995
],
[
- 0.6980496,
- 47.4719827
+ 12.2547073,
+ 55.4168882
],
[
- 0.6914514,
- 47.4718882
+ 12.3822489,
+ 55.4134349
],
[
- 0.6917309,
- 47.4630241
+ 12.3795942,
+ 55.3954143
],
[
- 0.6851048,
- 47.4629295
+ 12.4109213,
+ 55.3946958
],
[
- 0.684937,
- 47.4673524
+ 12.409403,
+ 55.3766417
],
[
- 0.678255,
- 47.4673335
+ 12.4407807,
+ 55.375779
],
[
- 0.6779754,
- 47.4762158
+ 12.4394142,
+ 55.3578314
],
[
- 0.6714051,
- 47.4761592
+ 12.4707413,
+ 55.3569971
],
[
- 0.6710417,
- 47.4881952
+ 12.4629475,
+ 55.2672214
],
[
- 0.6577334,
- 47.4879685
+ 12.4315633,
+ 55.2681491
],
[
- 0.6578173,
- 47.48504
+ 12.430045,
+ 55.2502103
],
[
- 0.6511911,
- 47.4848322
+ 12.3672011,
+ 55.2519673
],
[
- 0.6514707,
- 47.4758568
+ 12.3656858,
+ 55.2340267
],
[
- 0.6448166,
- 47.4757245
+ 12.2714604,
+ 55.2366031
],
[
- 0.6449284,
- 47.4712646
+ 12.2744467,
+ 55.272476
],
[
- 0.6117976,
- 47.4707543
+ 12.2115654,
+ 55.2741475
],
[
- 0.6118815,
- 47.4663129
+ 12.2130078,
+ 55.2920322
],
[
- 0.6052833,
- 47.4661239
+ 12.1815665,
+ 55.2928638
],
[
- 0.6054231,
- 47.4616631
+ 12.183141,
+ 55.3107091
],
[
- 0.5988808,
- 47.4615497
+ 12.2144897,
+ 55.3100981
],
[
- 0.5990206,
- 47.4570886
+ 12.2159927,
+ 55.3279764
],
[
- 0.572488,
- 47.4566916
+ 12.1214458,
+ 55.3303379
],
[
- 0.5721805,
- 47.4656513
+ 12.1229489,
+ 55.3483291
]
]
],
- "terms_url": "http://wiki.openstreetmap.org/wiki/Tours/Orthophoto",
- "terms_text": "Orthophoto Tour(s) Plus 2008"
+ "terms_text": "Stevns Kommune"
},
{
- "name": "USGS Large Scale Imagery",
+ "name": "Surrey Air Survey",
"type": "tms",
- "template": "http://{switch:a,b,c}.tile.openstreetmap.us/usgs_large_scale/{zoom}/{x}/{y}.jpg",
+ "template": "http://gravitystorm.dev.openstreetmap.org/surrey/{zoom}/{x}/{y}.png",
"scaleExtent": [
- 12,
- 20
+ 8,
+ 19
],
"polygon": [
[
[
- -123.2549305,
- 48.7529029
+ -0.752478,
+ 51.0821941
],
[
- -123.2549305,
- 48.5592263
+ -0.7595183,
+ 51.0856254
],
[
- -123.192224,
- 48.5592263
+ -0.8014342,
+ 51.1457917
],
[
- -123.192224,
- 48.4348366
+ -0.8398864,
+ 51.1440686
],
[
- -122.9419646,
- 48.4348366
+ -0.8357665,
+ 51.1802397
],
[
- -122.9419646,
- 48.3720812
+ -0.8529549,
+ 51.2011266
],
[
- -122.8806229,
- 48.3720812
+ -0.8522683,
+ 51.2096231
],
[
- -122.8806229,
- 48.3094763
+ -0.8495217,
+ 51.217903
],
[
- -122.8167566,
- 48.3094763
+ -0.8266907,
+ 51.2403696
],
[
- -122.8167566,
- 48.1904587
+ -0.8120995,
+ 51.2469248
],
[
- -123.0041133,
- 48.1904587
+ -0.7736474,
+ 51.2459577
],
[
- -123.0041133,
- 48.1275918
+ -0.7544213,
+ 51.2381127
],
[
- -123.058416,
- 48.1275918
+ -0.754078,
+ 51.233921
],
[
- -123.058416,
- 48.190514
+ -0.7446366,
+ 51.2333836
],
[
- -123.254113,
- 48.190514
+ -0.7430693,
+ 51.2847178
],
[
- -123.254113,
- 48.1274982
+ -0.751503,
+ 51.3069524
],
[
- -123.3706593,
- 48.1274982
+ -0.7664376,
+ 51.3121032
],
[
- -123.3706593,
- 48.1908403
+ -0.7820588,
+ 51.3270157
],
[
- -124.0582632,
- 48.1908403
+ -0.7815438,
+ 51.3388135
],
[
- -124.0582632,
- 48.253442
+ -0.7374268,
+ 51.3720456
],
[
- -124.1815163,
- 48.253442
+ -0.7192307,
+ 51.3769748
],
[
- -124.1815163,
- 48.3164666
+ -0.6795769,
+ 51.3847961
],
[
- -124.4319117,
- 48.3164666
+ -0.6807786,
+ 51.3901523
],
[
- -124.4319117,
- 48.3782613
+ -0.6531411,
+ 51.3917591
],
[
- -124.5564618,
- 48.3782613
+ -0.6301385,
+ 51.3905808
],
[
- -124.5564618,
- 48.4408305
+ -0.6291085,
+ 51.3970074
],
[
- -124.7555107,
- 48.4408305
+ -0.6234437,
+ 51.3977572
],
[
- -124.7555107,
- 48.1914986
+ -0.613144,
+ 51.4295552
],
[
- -124.8185282,
- 48.1914986
+ -0.6002471,
+ 51.4459121
],
[
- -124.8185282,
- 48.1228381
+ -0.5867081,
+ 51.4445365
],
[
- -124.7552951,
- 48.1228381
+ -0.5762368,
+ 51.453202
],
[
- -124.7552951,
- 47.5535253
+ -0.5626755,
+ 51.4523462
],
[
- -124.3812108,
- 47.5535253
+ -0.547741,
+ 51.4469972
],
[
- -124.3812108,
- 47.1218696
+ -0.5372697,
+ 51.4448575
],
[
- -124.1928897,
- 47.1218696
+ -0.537098,
+ 51.4526671
],
[
- -124.1928897,
- 43.7569431
+ -0.5439644,
+ 51.4545926
],
[
- -124.4443382,
- 43.7569431
+ -0.5405312,
+ 51.4698865
],
[
- -124.4443382,
- 43.1425556
+ -0.5309182,
+ 51.4760881
],
[
- -124.6398855,
- 43.1425556
+ -0.5091172,
+ 51.4744843
],
[
- -124.6398855,
- 42.6194503
+ -0.5086022,
+ 51.4695657
],
[
- -124.4438525,
- 42.6194503
+ -0.4900628,
+ 51.4682825
],
[
- -124.4438525,
- 39.8080662
+ -0.4526406,
+ 51.4606894
],
[
- -123.8815685,
- 39.8080662
+ -0.4486924,
+ 51.4429316
],
[
- -123.8815685,
- 39.1102825
+ -0.4414826,
+ 51.4418616
],
[
- -123.75805,
- 39.1102825
+ -0.4418259,
+ 51.4369394
],
[
- -123.75805,
- 38.4968799
+ -0.4112702,
+ 51.4380095
],
[
- -123.2702803,
- 38.4968799
+ -0.4014855,
+ 51.4279498
],
[
- -123.2702803,
- 37.9331905
+ -0.3807145,
+ 51.4262372
],
[
- -122.8148084,
- 37.9331905
+ -0.3805428,
+ 51.4161749
],
[
- -122.8148084,
- 37.8019606
+ -0.3491288,
+ 51.4138195
],
[
- -122.5664316,
- 37.8019606
+ -0.3274994,
+ 51.4037544
],
[
- -122.5664316,
- 36.9319611
+ -0.3039818,
+ 51.3990424
],
[
- -121.8784026,
- 36.9319611
+ -0.3019219,
+ 51.3754747
],
[
- -121.8784026,
- 36.6897596
+ -0.309475,
+ 51.369688
],
[
- -122.0034748,
- 36.6897596
+ -0.3111916,
+ 51.3529669
],
[
- -122.0034748,
- 36.4341056
+ -0.2955704,
+ 51.3541462
],
[
- -121.9414159,
- 36.4341056
+ -0.2923089,
+ 51.3673303
],
[
- -121.9414159,
- 35.9297636
+ -0.2850991,
+ 51.3680805
],
[
- -121.5040977,
- 35.9297636
+ -0.2787476,
+ 51.3771891
],
[
- -121.5040977,
- 35.8100273
+ -0.2655297,
+ 51.3837247
],
[
- -121.3790276,
- 35.8100273
+ -0.2411538,
+ 51.3847961
],
[
- -121.3790276,
- 35.4239164
+ -0.2123147,
+ 51.3628288
],
[
- -120.9426515,
- 35.4239164
+ -0.2107697,
+ 51.3498578
],
[
- -120.9426515,
- 35.1849683
+ -0.190857,
+ 51.3502867
],
[
- -120.8171978,
- 35.1849683
+ -0.1542931,
+ 51.3338802
],
[
- -120.8171978,
- 35.1219894
+ -0.1496583,
+ 51.3057719
],
[
- -120.6918447,
- 35.1219894
+ -0.1074296,
+ 51.2966491
],
[
- -120.6918447,
- 34.4966794
+ -0.0887185,
+ 51.3099571
],
[
- -120.5045898,
- 34.4966794
+ -0.0878602,
+ 51.3220811
],
[
- -120.5045898,
- 34.4339651
+ -0.0652009,
+ 51.3215448
],
[
- -120.0078775,
- 34.4339651
+ -0.0641709,
+ 51.3264793
],
[
- -120.0078775,
- 34.3682626
+ -0.0519829,
+ 51.3263721
],
[
- -119.5283517,
- 34.3682626
+ -0.0528412,
+ 51.334631
],
[
- -119.5283517,
- 34.0576434
+ -0.0330779,
+ 51.3430876
],
[
- -119.0060985,
- 34.0576434
+ 0.0019187,
+ 51.3376339
],
[
- -119.0060985,
- 33.9975267
+ 0.0118751,
+ 51.3281956
],
[
- -118.5046259,
- 33.9975267
+ 0.013935,
+ 51.2994398
],
[
- -118.5046259,
- 33.8694631
+ 0.0202865,
+ 51.2994398
],
[
- -118.4413209,
- 33.8694631
+ 0.0240631,
+ 51.3072743
],
[
- -118.4413209,
- 33.6865253
+ 0.0331611,
+ 51.3086694
],
[
- -118.066912,
- 33.6865253
+ 0.0455207,
+ 51.30545
],
[
- -118.066912,
- 33.3063832
+ 0.0523872,
+ 51.2877392
],
[
- -117.5030045,
- 33.3063832
+ 0.0616569,
+ 51.2577764
],
[
- -117.5030045,
- 33.0500337
+ 0.0640602,
+ 51.2415518
],
[
- -117.3188195,
- 33.0500337
+ 0.0462074,
+ 51.2126342
],
[
- -117.3188195,
- 32.6205888
+ 0.0407142,
+ 51.2109136
],
[
- -117.1917023,
- 32.6205888
+ 0.0448341,
+ 51.1989753
],
[
- -117.1917023,
- 32.4974566
+ 0.0494689,
+ 51.1997283
],
[
- -116.746496,
- 32.4974566
+ 0.0558204,
+ 51.1944573
],
[
- -116.746496,
- 32.5609161
+ 0.0611419,
+ 51.1790713
],
[
- -115.9970138,
- 32.5609161
+ 0.0623435,
+ 51.1542061
],
[
- -115.9970138,
- 32.6264942
+ 0.0577087,
+ 51.1417146
],
[
- -114.8808125,
- 32.6264942
+ 0.0204582,
+ 51.1365447
],
[
- -114.8808125,
- 32.4340796
+ -0.0446015,
+ 51.1336364
],
[
- -114.6294474,
- 32.4340796
+ -0.1566964,
+ 51.1352522
],
[
- -114.6294474,
- 32.3731636
+ -0.1572114,
+ 51.1290043
],
[
- -114.4447437,
- 32.3731636
+ -0.2287942,
+ 51.1183379
],
[
- -114.4447437,
- 32.3075418
+ -0.2473336,
+ 51.1183379
],
[
- -114.2557628,
- 32.3075418
+ -0.2500802,
+ 51.1211394
],
[
- -114.2557628,
- 32.2444561
+ -0.299347,
+ 51.1137042
],
[
- -114.0680274,
- 32.2444561
+ -0.3221779,
+ 51.1119799
],
[
- -114.0680274,
- 32.1829113
+ -0.3223496,
+ 51.1058367
],
[
- -113.8166499,
- 32.1829113
+ -0.3596001,
+ 51.1019563
],
[
- -113.8166499,
- 32.1207622
+ -0.3589135,
+ 51.1113333
],
[
- -113.6307421,
- 32.1207622
+ -0.3863793,
+ 51.1117644
],
[
- -113.6307421,
- 32.0565099
+ -0.3869014,
+ 51.1062516
],
[
- -113.4417495,
- 32.0565099
+ -0.4281001,
+ 51.0947174
],
[
- -113.4417495,
- 31.9984372
+ -0.4856784,
+ 51.0951554
],
[
- -113.2546027,
- 31.9984372
+ -0.487135,
+ 51.0872266
],
[
- -113.2546027,
- 31.9325434
+ -0.5297404,
+ 51.0865404
],
[
- -113.068072,
- 31.9325434
+ -0.5302259,
+ 51.0789914
],
[
- -113.068072,
- 31.8718062
+ -0.61046,
+ 51.076551
],
[
- -112.8161105,
- 31.8718062
+ -0.6099745,
+ 51.080669
],
[
- -112.8161105,
- 31.8104171
+ -0.6577994,
+ 51.0792202
],
[
- -112.6308756,
- 31.8104171
+ -0.6582849,
+ 51.0743394
],
[
- -112.6308756,
- 31.7464723
+ -0.6836539,
+ 51.0707547
],
[
- -112.4418918,
- 31.7464723
+ -0.6997979,
+ 51.070831
],
[
- -112.4418918,
- 31.6856001
- ],
+ -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": [
+ [
[
- -112.257192,
- 31.6856001
+ 1.1919978,
+ 43.6328791
],
[
- -112.257192,
- 31.6210352
+ 1.2015377,
+ 43.6329729
],
[
- -112.0033787,
- 31.6210352
+ 1.2011107,
+ 43.6554932
],
[
- -112.0033787,
- 31.559584
+ 1.2227985,
+ 43.6557029
],
[
- -111.815619,
- 31.559584
+ 1.2226231,
+ 43.6653353
],
[
- -111.815619,
- 31.4970238
+ 1.2275341,
+ 43.6653849
],
[
- -111.6278586,
- 31.4970238
+ 1.2275417,
+ 43.6656387
],
[
- -111.6278586,
- 31.4339867
+ 1.2337568,
+ 43.6656883
],
[
- -111.4418978,
- 31.4339867
+ 1.2337644,
+ 43.6650153
],
[
- -111.4418978,
- 31.3733859
+ 1.2351218,
+ 43.6650319
],
[
- -111.2559708,
- 31.3733859
+ 1.2350913,
+ 43.6670729
],
[
- -111.2559708,
- 31.3113225
+ 1.2443566,
+ 43.6671556
],
[
- -108.1845822,
- 31.3113225
+ 1.2441584,
+ 43.6743925
],
[
- -108.1845822,
- 31.7459502
+ 1.2493973,
+ 43.6744256
],
[
- -106.5065055,
- 31.7459502
+ 1.2493973,
+ 43.6746628
],
[
- -106.5065055,
- 31.6842308
+ 1.2555666,
+ 43.6747234
],
[
- -106.3797265,
- 31.6842308
+ 1.2555742,
+ 43.6744532
],
[
- -106.3797265,
- 31.621752
+ 1.2569545,
+ 43.6744697
],
[
- -106.317434,
- 31.621752
+ 1.2568782,
+ 43.678529
],
[
- -106.317434,
- 31.4968167
+ 1.2874873,
+ 43.6788257
],
[
- -106.2551769,
- 31.4968167
+ 1.2870803,
+ 43.7013229
],
[
- -106.2551769,
- 31.4344889
+ 1.3088219,
+ 43.7014632
],
[
- -106.1924698,
- 31.4344889
+ 1.3086493,
+ 43.7127673
],
[
- -106.1924698,
- 31.3721296
+ 1.3303262,
+ 43.7129544
],
[
- -106.0039212,
- 31.3721296
+ 1.3300242,
+ 43.7305221
],
[
- -106.0039212,
- 31.309328
+ 1.3367106,
+ 43.7305845
],
[
- -105.9416582,
- 31.309328
+ 1.3367322,
+ 43.7312235
],
[
- -105.9416582,
- 31.2457547
+ 1.3734338,
+ 43.7310456
],
[
- -105.8798174,
- 31.2457547
+ 1.3735848,
+ 43.7245772
],
[
- -105.8798174,
- 31.1836194
+ 1.4604504,
+ 43.7252947
],
[
- -105.8162349,
- 31.1836194
+ 1.4607783,
+ 43.7028034
],
[
- -105.8162349,
- 31.1207155
+ 1.4824875,
+ 43.7029516
],
[
- -105.6921198,
- 31.1207155
+ 1.4829828,
+ 43.6692071
],
[
- -105.6921198,
- 31.0584835
+ 1.5046832,
+ 43.6693616
],
[
- -105.6302881,
- 31.0584835
+ 1.5048383,
+ 43.6581174
],
[
- -105.6302881,
- 30.9328271
+ 1.5265475,
+ 43.6582656
],
[
- -105.5044418,
- 30.9328271
+ 1.5266945,
+ 43.6470298
],
[
- -105.5044418,
- 30.8715864
+ 1.548368,
+ 43.6471633
],
[
- -105.4412973,
- 30.8715864
+ 1.5485357,
+ 43.6359385
],
[
- -105.4412973,
- 30.808463
+ 1.5702172,
+ 43.636082
],
[
- -105.3781497,
- 30.808463
+ 1.5705123,
+ 43.6135777
],
[
- -105.3781497,
- 30.7471828
+ 1.5488166,
+ 43.6134276
],
[
- -105.1904658,
- 30.7471828
+ 1.549097,
+ 43.5909479
],
[
- -105.1904658,
- 30.6843231
+ 1.5707695,
+ 43.5910694
],
[
- -105.1286244,
- 30.6843231
+ 1.5709373,
+ 43.5798341
],
[
- -105.1286244,
- 30.6199737
+ 1.5793714,
+ 43.5798894
],
[
- -105.0036504,
- 30.6199737
+ 1.5794782,
+ 43.5737682
],
[
- -105.0036504,
- 30.5589058
+ 1.5809119,
+ 43.5737792
],
[
- -104.9417962,
- 30.5589058
+ 1.5810859,
+ 43.5573794
],
[
- -104.9417962,
- 30.4963236
+ 1.5712334,
+ 43.5573131
],
[
- -104.8782018,
- 30.4963236
+ 1.5716504,
+ 43.5235497
],
[
- -104.8782018,
- 30.3098261
+ 1.3984804,
+ 43.5222618
],
[
- -104.8155257,
- 30.3098261
+ 1.3986509,
+ 43.5110113
],
[
- -104.8155257,
- 30.2478305
+ 1.3120959,
+ 43.5102543
],
[
- -104.7536079,
- 30.2478305
+ 1.3118968,
+ 43.5215192
],
[
- -104.7536079,
- 29.9353916
+ 1.2902569,
+ 43.5213126
],
[
- -104.690949,
- 29.9353916
+ 1.2898637,
+ 43.5438168
],
[
- -104.690949,
- 29.8090156
+ 1.311517,
+ 43.5440133
],
[
- -104.6291301,
- 29.8090156
+ 1.3113271,
+ 43.5552596
],
[
- -104.6291301,
- 29.6843577
+ 1.3036924,
+ 43.5551924
],
[
- -104.5659869,
- 29.6843577
+ 1.3036117,
+ 43.5595099
],
[
- -104.5659869,
- 29.6223459
+ 1.2955449,
+ 43.5594317
],
[
- -104.5037188,
- 29.6223459
+ 1.2955449,
+ 43.5595489
],
[
- -104.5037188,
- 29.5595436
+ 1.2895595,
+ 43.5594473
],
[
- -104.4410072,
- 29.5595436
+ 1.2892899,
+ 43.5775366
],
[
- -104.4410072,
- 29.4974832
+ 1.2675698,
+ 43.5773647
],
[
- -104.2537551,
- 29.4974832
+ 1.2673973,
+ 43.5886141
],
[
- -104.2537551,
- 29.3716718
+ 1.25355,
+ 43.5885047
],
[
- -104.1291984,
- 29.3716718
+ 1.2533774,
+ 43.5956282
],
[
- -104.1291984,
- 29.3091621
+ 1.2518029,
+ 43.5956282
],
[
- -104.0688737,
- 29.3091621
+ 1.2518029,
+ 43.5949409
],
[
- -104.0688737,
- 29.2467276
+ 1.2350437,
+ 43.5947847
],
[
- -103.8187309,
- 29.2467276
+ 1.2350437,
+ 43.5945972
],
[
- -103.8187309,
- 29.1843076
+ 1.2239572,
+ 43.5945972
],
[
- -103.755736,
- 29.1843076
+ 1.2239357,
+ 43.5994708
],
[
- -103.755736,
- 29.1223174
+ 1.2139708,
+ 43.599299
],
[
- -103.5667542,
- 29.1223174
+ 1.2138845,
+ 43.6046408
],
[
- -103.5667542,
- 29.0598119
+ 1.2020647,
+ 43.6044846
],
[
- -103.5049819,
- 29.0598119
+ 1.2019464,
+ 43.61048
],
[
- -103.5049819,
- 28.9967506
- ],
+ 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": [
+ [
[
- -103.3165753,
- 28.9967506
+ 1.1135067,
+ 43.6867566
],
[
- -103.3165753,
- 28.9346923
+ 1.1351836,
+ 43.6870842
],
[
- -103.0597572,
- 28.9346923
+ 1.1348907,
+ 43.6983471
],
[
- -103.0597572,
- 29.0592965
+ 1.1782867,
+ 43.6990338
],
[
- -102.9979694,
- 29.0592965
+ 1.1779903,
+ 43.7102786
],
[
- -102.9979694,
- 29.1212855
+ 1.1996591,
+ 43.7106144
],
[
- -102.9331397,
- 29.1212855
+ 1.1993387,
+ 43.7218722
],
[
- -102.9331397,
- 29.1848575
+ 1.2427356,
+ 43.7225269
],
[
- -102.8095989,
- 29.1848575
+ 1.2424336,
+ 43.7337491
],
[
- -102.8095989,
- 29.2526154
+ 1.2641536,
+ 43.734092
],
[
- -102.8701345,
- 29.2526154
+ 1.2638301,
+ 43.7453588
],
[
- -102.8701345,
- 29.308096
+ 1.2855285,
+ 43.7456548
],
[
- -102.8096681,
- 29.308096
+ 1.2852481,
+ 43.756935
],
[
- -102.8096681,
- 29.3715484
+ 1.306925,
+ 43.757231
],
[
- -102.7475655,
- 29.3715484
+ 1.3066446,
+ 43.7684779
],
[
- -102.7475655,
- 29.5581899
+ 1.3283431,
+ 43.7687894
],
[
- -102.684554,
- 29.5581899
+ 1.3280842,
+ 43.780034
],
[
- -102.684554,
- 29.6847655
+ 1.4367275,
+ 43.7815757
],
[
- -102.4967764,
- 29.6847655
+ 1.4373098,
+ 43.7591004
],
[
- -102.4967764,
- 29.7457694
+ 1.4590083,
+ 43.7593653
],
[
- -102.3086647,
- 29.7457694
+ 1.4593318,
+ 43.7481479
],
[
- -102.3086647,
- 29.8086627
+ 1.4810303,
+ 43.7483972
],
[
- -102.1909323,
- 29.8086627
+ 1.4813322,
+ 43.7371777
],
[
- -102.1909323,
- 29.7460097
+ 1.5030307,
+ 43.7374115
],
[
- -101.5049914,
- 29.7460097
+ 1.5035915,
+ 43.7149664
],
[
- -101.5049914,
- 29.6846777
+ 1.5253115,
+ 43.7151846
],
[
- -101.3805796,
- 29.6846777
+ 1.5256135,
+ 43.7040057
],
[
- -101.3805796,
- 29.5594459
+ 1.5472688,
+ 43.7042552
],
[
- -101.3175057,
- 29.5594459
+ 1.5475708,
+ 43.6930431
],
[
- -101.3175057,
- 29.4958934
+ 1.5692045,
+ 43.6932926
],
[
- -101.1910075,
- 29.4958934
+ 1.5695712,
+ 43.6820316
],
[
- -101.1910075,
- 29.4326115
+ 1.5912049,
+ 43.6822656
],
[
- -101.067501,
- 29.4326115
+ 1.5917441,
+ 43.6597998
],
[
- -101.067501,
- 29.308808
+ 1.613421,
+ 43.6600339
],
[
- -100.9418897,
- 29.308808
+ 1.613723,
+ 43.6488291
],
[
- -100.9418897,
- 29.2456231
+ 1.6353783,
+ 43.6490788
],
[
- -100.8167271,
- 29.2456231
+ 1.6384146,
+ 43.5140731
],
[
- -100.8167271,
- 29.1190449
+ 1.2921649,
+ 43.5094658
],
[
- -100.7522672,
- 29.1190449
+ 1.2918629,
+ 43.5206966
],
[
- -100.7522672,
- 29.0578214
+ 1.2702076,
+ 43.5203994
],
[
- -100.6925358,
- 29.0578214
+ 1.2698841,
+ 43.5316437
],
[
- -100.6925358,
- 28.8720431
+ 1.2482288,
+ 43.531331
],
[
- -100.6290158,
- 28.8720431
+ 1.2476048,
+ 43.5537788
],
[
- -100.6290158,
- 28.8095363
+ 1.2259628,
+ 43.5534914
],
[
- -100.5679901,
- 28.8095363
+ 1.2256819,
+ 43.564716
],
[
- -100.5679901,
- 28.622554
+ 1.2039835,
+ 43.564419
],
[
- -100.5040411,
- 28.622554
+ 1.2033148,
+ 43.5869049
],
[
- -100.5040411,
- 28.5583804
+ 1.1816164,
+ 43.5865611
],
[
- -100.4421832,
- 28.5583804
+ 1.1810237,
+ 43.6090368
],
[
- -100.4421832,
- 28.4968266
+ 1.1592821,
+ 43.6086932
],
[
- -100.379434,
- 28.4968266
+ 1.1589585,
+ 43.6199523
],
[
- -100.379434,
- 28.3092865
+ 1.1372601,
+ 43.6196244
],
[
- -100.3171942,
- 28.3092865
+ 1.1365933,
+ 43.642094
],
[
- -100.3171942,
- 28.1835681
- ],
+ 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": [
+ [
[
- -100.254483,
- 28.1835681
+ 0.5457462,
+ 47.465264
],
[
- -100.254483,
- 28.1213885
+ 0.54585,
+ 47.4608163
],
[
- -100.1282282,
- 28.1213885
+ 0.5392188,
+ 47.4606983
],
[
- -100.1282282,
- 28.059215
+ 0.5393484,
+ 47.456243
],
[
- -100.0659537,
- 28.059215
+ 0.5327959,
+ 47.4561003
],
[
- -100.0659537,
- 27.9966087
+ 0.5329011,
+ 47.451565
],
[
- -100.0023855,
- 27.9966087
+ 0.52619,
+ 47.4514013
],
[
- -100.0023855,
- 27.9332152
+ 0.5265854,
+ 47.4424884
],
[
- -99.9426497,
- 27.9332152
+ 0.5000941,
+ 47.4420739
],
[
- -99.9426497,
- 27.7454658
+ 0.5002357,
+ 47.4375835
],
[
- -99.816851,
- 27.7454658
+ 0.4936014,
+ 47.4374324
],
[
- -99.816851,
- 27.6834301
+ 0.4937,
+ 47.4329285
],
[
- -99.7541346,
- 27.6834301
+ 0.4606141,
+ 47.4324593
],
[
- -99.7541346,
- 27.6221543
+ 0.4607248,
+ 47.4279827
],
[
- -99.6291629,
- 27.6221543
+ 0.4541016,
+ 47.4278125
],
[
- -99.6291629,
- 27.5588977
+ 0.454932,
+ 47.4053921
],
[
- -99.5672838,
- 27.5588977
+ 0.4615431,
+ 47.4054476
],
[
- -99.5672838,
- 27.4353752
+ 0.4619097,
+ 47.3964924
],
[
- -99.5041798,
- 27.4353752
+ 0.4684346,
+ 47.3966005
],
[
- -99.5041798,
- 27.3774021
+ 0.4691319,
+ 47.3786415
],
[
- -99.5671796,
- 27.3774021
+ 0.4757125,
+ 47.3787609
],
[
- -99.5671796,
- 27.2463726
+ 0.4762116,
+ 47.3652018
],
[
- -99.504975,
- 27.2463726
+ 0.4828297,
+ 47.3653499
],
[
- -99.504975,
- 26.9965649
+ 0.4832223,
+ 47.3518574
],
[
- -99.4427427,
- 26.9965649
+ 0.5097927,
+ 47.3522592
],
[
- -99.4427427,
- 26.872803
+ 0.5095688,
+ 47.3567713
],
[
- -99.3800633,
- 26.872803
+ 0.5227698,
+ 47.3569785
],
[
- -99.3800633,
- 26.8068179
+ 0.5226429,
+ 47.3614867
],
[
- -99.3190684,
- 26.8068179
+ 0.5490721,
+ 47.3618878
],
[
- -99.3190684,
- 26.7473614
+ 0.5489087,
+ 47.3663307
],
[
- -99.2537541,
- 26.7473614
+ 0.5555159,
+ 47.3664985
],
[
- -99.2537541,
- 26.6210068
+ 0.5559105,
+ 47.3575522
],
[
- -99.1910617,
- 26.6210068
+ 0.6152789,
+ 47.358407
],
[
- -99.1910617,
- 26.4956737
+ 0.6152963,
+ 47.362893
],
[
- -99.1300639,
- 26.4956737
+ 0.6285093,
+ 47.3630936
],
[
- -99.1300639,
- 26.3713808
+ 0.6288256,
+ 47.353987
],
[
- -99.0029473,
- 26.3713808
+ 0.6155012,
+ 47.3538823
],
[
- -99.0029473,
- 26.3093836
+ 0.6157682,
+ 47.3493424
],
[
- -98.816572,
- 26.3093836
+ 0.6090956,
+ 47.3492991
],
[
- -98.816572,
- 26.2457762
+ 0.6094735,
+ 47.3402962
],
[
- -98.6920082,
- 26.2457762
+ 0.6160477,
+ 47.3404448
],
[
- -98.6920082,
- 26.1837096
+ 0.616083,
+ 47.3369074
],
[
- -98.4440896,
- 26.1837096
+ 0.77497,
+ 47.3388218
],
[
- -98.4440896,
- 26.1217217
+ 0.7745786,
+ 47.351628
],
[
- -98.3823181,
- 26.1217217
+ 0.7680363,
+ 47.3515901
],
[
- -98.3823181,
- 26.0596488
+ 0.767589,
+ 47.3605298
],
[
- -98.2532707,
- 26.0596488
+ 0.7742443,
+ 47.3606238
],
[
- -98.2532707,
- 25.9986871
+ 0.7733465,
+ 47.3921266
],
[
- -98.0109084,
- 25.9986871
+ 0.7667434,
+ 47.3920195
],
[
- -98.0109084,
- 25.9932255
+ 0.7664411,
+ 47.4010837
],
[
- -97.6932319,
- 25.9932255
+ 0.7730647,
+ 47.4011115
],
[
- -97.6932319,
- 25.9334103
+ 0.7728868,
+ 47.4101297
],
[
- -97.6313904,
- 25.9334103
+ 0.7661849,
+ 47.4100226
],
[
- -97.6313904,
- 25.8695893
+ 0.7660267,
+ 47.4145044
],
[
- -97.5046779,
- 25.8695893
+ 0.7527613,
+ 47.4143038
],
[
- -97.5046779,
- 25.8073488
+ 0.7529788,
+ 47.4098086
],
[
- -97.3083401,
- 25.8073488
+ 0.7462373,
+ 47.4097016
],
[
- -97.3083401,
- 25.8731159
+ 0.7459424,
+ 47.4232208
],
[
- -97.2456326,
- 25.8731159
+ 0.7392324,
+ 47.4231451
],
[
- -97.2456326,
- 25.9353731
+ 0.738869,
+ 47.4366116
],
[
- -97.1138939,
- 25.9353731
+ 0.7323267,
+ 47.4365171
],
[
- -97.1138939,
- 27.6809179
+ 0.7321869,
+ 47.4410556
],
[
- -97.0571035,
- 27.6809179
+ 0.7255048,
+ 47.44098
],
[
- -97.0571035,
- 27.8108242
+ 0.7254209,
+ 47.4453479
],
[
- -95.5810766,
- 27.8108242
+ 0.7318793,
+ 47.4454803
],
[
- -95.5810766,
- 28.7468827
+ 0.7318514,
+ 47.4501126
],
[
- -94.271041,
- 28.7468827
+ 0.7384496,
+ 47.450226
],
[
- -94.271041,
- 29.5594076
+ 0.7383098,
+ 47.454631
],
[
- -92.5029947,
- 29.5594076
+ 0.7449359,
+ 47.4547444
],
[
- -92.5029947,
- 29.4974754
+ 0.7443209,
+ 47.4771985
],
[
- -91.8776216,
- 29.4974754
+ 0.7310685,
+ 47.4769717
],
[
- -91.8776216,
- 29.3727013
+ 0.7309008,
+ 47.4815445
],
[
- -91.378418,
- 29.3727013
+ 0.7176205,
+ 47.4812611
],
[
- -91.378418,
- 29.2468326
+ 0.7177883,
+ 47.4768394
],
[
- -91.3153953,
- 29.2468326
+ 0.69777,
+ 47.4764993
],
[
- -91.3153953,
- 29.1844301
+ 0.6980496,
+ 47.4719827
],
[
- -91.1294702,
- 29.1844301
+ 0.6914514,
+ 47.4718882
],
[
- -91.1294702,
- 29.1232559
+ 0.6917309,
+ 47.4630241
],
[
- -91.0052632,
- 29.1232559
+ 0.6851048,
+ 47.4629295
],
[
- -91.0052632,
- 28.9968437
+ 0.684937,
+ 47.4673524
],
[
- -89.4500159,
- 28.9968437
+ 0.678255,
+ 47.4673335
],
[
- -89.4500159,
- 28.8677422
+ 0.6779754,
+ 47.4762158
],
[
- -88.8104309,
- 28.8677422
+ 0.6714051,
+ 47.4761592
],
[
- -88.8104309,
- 30.1841864
+ 0.6710417,
+ 47.4881952
],
[
- -85.8791527,
- 30.1841864
+ 0.6577334,
+ 47.4879685
],
[
- -85.8791527,
- 29.5455038
+ 0.6578173,
+ 47.48504
],
[
- -84.8368083,
- 29.5455038
+ 0.6511911,
+ 47.4848322
],
[
- -84.8368083,
- 29.6225158
+ 0.6514707,
+ 47.4758568
],
[
- -84.7482786,
- 29.6225158
+ 0.6448166,
+ 47.4757245
],
[
- -84.7482786,
- 29.683624
+ 0.6449284,
+ 47.4712646
],
[
- -84.685894,
- 29.683624
+ 0.6117976,
+ 47.4707543
],
[
- -84.685894,
- 29.7468386
+ 0.6118815,
+ 47.4663129
],
[
- -83.6296975,
- 29.7468386
+ 0.6052833,
+ 47.4661239
],
[
- -83.6296975,
- 29.4324361
+ 0.6054231,
+ 47.4616631
],
[
- -83.3174937,
- 29.4324361
+ 0.5988808,
+ 47.4615497
],
[
- -83.3174937,
- 29.0579442
+ 0.5990206,
+ 47.4570886
],
[
- -82.879659,
- 29.0579442
+ 0.572488,
+ 47.4566916
],
[
- -82.879659,
- 27.7453529
+ 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
],
[
- -82.8182822,
- 27.7453529
+ 0.54585,
+ 47.4608163
],
[
- -82.8182822,
- 26.9290868
+ 0.5392188,
+ 47.4606983
],
[
- -82.3796782,
- 26.9290868
+ 0.5393484,
+ 47.456243
],
[
- -82.3796782,
- 26.3694183
+ 0.5327959,
+ 47.4561003
],
[
- -81.8777106,
- 26.3694183
+ 0.5329011,
+ 47.451565
],
[
- -81.8777106,
- 25.805971
+ 0.52619,
+ 47.4514013
],
[
- -81.5036862,
- 25.805971
+ 0.5265854,
+ 47.4424884
],
[
- -81.5036862,
- 25.7474753
+ 0.5000941,
+ 47.4420739
],
[
- -81.4405462,
- 25.7474753
+ 0.5002357,
+ 47.4375835
],
[
- -81.4405462,
- 25.6851489
+ 0.4936014,
+ 47.4374324
],
[
- -81.3155883,
- 25.6851489
+ 0.4937,
+ 47.4329285
],
[
- -81.3155883,
- 25.5600985
+ 0.4606141,
+ 47.4324593
],
[
- -81.2538534,
- 25.5600985
+ 0.4607248,
+ 47.4279827
],
[
- -81.2538534,
- 25.4342361
+ 0.4541016,
+ 47.4278125
],
[
- -81.1902012,
- 25.4342361
+ 0.454932,
+ 47.4053921
],
[
- -81.1902012,
- 25.1234341
+ 0.4615431,
+ 47.4054476
],
[
- -81.1288133,
- 25.1234341
+ 0.4619097,
+ 47.3964924
],
[
- -81.1288133,
- 25.0619389
- ],
- [
- -81.0649231,
- 25.0619389
+ 0.4684346,
+ 47.3966005
],
[
- -81.0649231,
- 24.8157807
+ 0.4691319,
+ 47.3786415
],
[
- -81.6289469,
- 24.8157807
+ 0.4757125,
+ 47.3787609
],
[
- -81.6289469,
- 24.7538367
+ 0.4762116,
+ 47.3652018
],
[
- -81.6907173,
- 24.7538367
+ 0.4828297,
+ 47.3653499
],
[
- -81.6907173,
- 24.6899374
+ 0.4829611,
+ 47.3608321
],
[
- -81.8173189,
- 24.6899374
+ 0.4763543,
+ 47.360743
],
[
- -81.8173189,
- 24.6279161
+ 0.476654,
+ 47.3517263
],
[
- -82.1910041,
- 24.6279161
+ 0.4700497,
+ 47.3516186
],
[
- -82.1910041,
- 24.496294
+ 0.4701971,
+ 47.3471313
],
[
- -81.6216596,
- 24.496294
+ 0.4637503,
+ 47.3470104
],
[
- -81.6216596,
- 24.559484
+ 0.4571425,
+ 47.3424146
],
[
- -81.372006,
- 24.559484
+ 0.4572922,
+ 47.3379061
],
[
- -81.372006,
- 24.6220687
+ 0.4506741,
+ 47.3378081
],
[
- -81.0593278,
- 24.6220687
+ 0.4508379,
+ 47.3333051
],
[
- -81.0593278,
- 24.684826
+ 0.4442212,
+ 47.3332032
],
[
- -80.9347147,
- 24.684826
+ 0.4443809,
+ 47.328711
],
[
- -80.9347147,
- 24.7474828
+ 0.4311392,
+ 47.3284977
],
[
- -80.7471081,
- 24.7474828
+ 0.4316262,
+ 47.3150004
],
[
- -80.7471081,
- 24.8100618
+ 0.4382432,
+ 47.3151136
],
[
- -80.3629898,
- 24.8100618
+ 0.4383815,
+ 47.3106174
],
[
- -80.3629898,
- 25.1175858
+ 0.4714487,
+ 47.3111374
],
[
- -80.122344,
- 25.1175858
+ 0.4713096,
+ 47.3156565
],
[
- -80.122344,
- 25.7472357
+ 0.477888,
+ 47.3157542
],
[
- -80.0588458,
- 25.7472357
+ 0.4780733,
+ 47.3112802
],
[
- -80.0588458,
- 26.3708251
+ 0.4846826,
+ 47.3113639
],
[
- -79.995837,
- 26.3708251
+ 0.4848576,
+ 47.3068686
],
[
- -79.995837,
- 26.9398003
+ 0.4914359,
+ 47.3069803
],
[
- -80.0587265,
- 26.9398003
+ 0.491745,
+ 47.2979733
],
[
- -80.0587265,
- 27.1277466
+ 0.4851578,
+ 47.2978722
],
[
- -80.1226251,
- 27.1277466
+ 0.4854269,
+ 47.2888744
],
[
- -80.1226251,
- 27.2534279
+ 0.4788485,
+ 47.2887697
],
[
- -80.1846956,
- 27.2534279
+ 0.4791574,
+ 47.2797818
],
[
- -80.1846956,
- 27.3781229
+ 0.4857769,
+ 47.2799005
],
[
- -80.246175,
- 27.3781229
+ 0.4859107,
+ 47.2753885
],
[
- -80.246175,
- 27.5658729
+ 0.492539,
+ 47.2755029
],
[
- -80.3094768,
- 27.5658729
+ 0.4926669,
+ 47.2710127
],
[
- -80.3094768,
- 27.7530311
+ 0.4992986,
+ 47.2711066
],
[
- -80.3721485,
- 27.7530311
+ 0.4994296,
+ 47.2666116
],
[
- -80.3721485,
- 27.8774451
+ 0.5192658,
+ 47.2669245
],
[
- -80.4351457,
- 27.8774451
+ 0.5194225,
+ 47.2624231
],
[
- -80.4351457,
- 28.0033366
+ 0.5260186,
+ 47.2625205
],
[
- -80.4966078,
- 28.0033366
+ 0.5258735,
+ 47.2670183
],
[
- -80.4966078,
- 28.1277326
+ 0.5456972,
+ 47.2673383
],
[
- -80.5587159,
- 28.1277326
+ 0.5455537,
+ 47.2718283
],
[
- -80.5587159,
- 28.3723509
+ 0.5587737,
+ 47.2720366
],
[
- -80.4966335,
- 28.3723509
+ 0.5586259,
+ 47.2765185
],
[
- -80.4966335,
- 29.5160326
+ 0.5652252,
+ 47.2766278
],
[
- -81.1213644,
- 29.5160326
+ 0.5650848,
+ 47.2811206
],
[
- -81.1213644,
- 31.6846966
+ 0.5716753,
+ 47.2812285
],
[
- -80.6018723,
- 31.6846966
+ 0.5715223,
+ 47.2857217
],
[
- -80.6018723,
- 32.2475309
+ 0.5781436,
+ 47.2858299
],
[
- -79.4921024,
- 32.2475309
+ 0.5779914,
+ 47.2903294
],
[
- -79.4921024,
- 32.9970261
+ 0.5846023,
+ 47.2904263
],
[
- -79.1116488,
- 32.9970261
+ 0.5843076,
+ 47.2994231
],
[
- -79.1116488,
- 33.3729457
+ 0.597499,
+ 47.2996094
],
[
- -78.6153621,
- 33.3729457
+ 0.5976637,
+ 47.2951375
],
[
- -78.6153621,
- 33.8097638
+ 0.6571596,
+ 47.2960036
],
[
- -77.9316963,
- 33.8097638
+ 0.6572988,
+ 47.2915091
],
[
- -77.9316963,
- 33.8718243
+ 0.6705019,
+ 47.2917186
],
[
- -77.8692252,
- 33.8718243
+ 0.6703475,
+ 47.2962082
],
[
- -77.8692252,
- 34.0552454
+ 0.6836175,
+ 47.2963688
],
[
- -77.6826392,
- 34.0552454
+ 0.6834322,
+ 47.3008929
],
[
- -77.6826392,
- 34.2974598
+ 0.690062,
+ 47.3009558
],
[
- -77.2453509,
- 34.2974598
+ 0.6899241,
+ 47.3054703
],
[
- -77.2453509,
- 34.5598585
+ 0.7362019,
+ 47.3061157
],
[
- -76.4973277,
- 34.5598585
+ 0.7360848,
+ 47.3106063
],
[
- -76.4973277,
- 34.622796
+ 0.7559022,
+ 47.3108935
],
[
- -76.4337602,
- 34.622796
+ 0.7557718,
+ 47.315392
],
[
- -76.4337602,
- 34.6849285
+ 0.7623755,
+ 47.3154716
],
[
- -76.373212,
- 34.6849285
+ 0.7622314,
+ 47.3199941
],
[
- -76.373212,
- 34.7467674
+ 0.7754911,
+ 47.3201546
],
[
- -76.3059364,
- 34.7467674
+ 0.77497,
+ 47.3388218
],
[
- -76.3059364,
- 34.808551
+ 0.7745786,
+ 47.351628
],
[
- -76.2468017,
- 34.808551
+ 0.7680363,
+ 47.3515901
],
[
- -76.2468017,
- 34.8728418
+ 0.767589,
+ 47.3605298
],
[
- -76.1825922,
- 34.8728418
+ 0.7742443,
+ 47.3606238
],
[
- -76.1825922,
- 34.9335332
+ 0.7733465,
+ 47.3921266
],
[
- -76.120814,
- 34.9335332
+ 0.7667434,
+ 47.3920195
],
[
- -76.120814,
- 34.9952359
+ 0.7664411,
+ 47.4010837
],
[
- -75.9979015,
- 34.9952359
+ 0.7730647,
+ 47.4011115
],
[
- -75.9979015,
- 35.0578182
+ 0.7728868,
+ 47.4101297
],
[
- -75.870338,
- 35.0578182
+ 0.7661849,
+ 47.4100226
],
[
- -75.870338,
- 35.1219097
+ 0.7660267,
+ 47.4145044
],
[
- -75.7462194,
- 35.1219097
+ 0.7527613,
+ 47.4143038
],
[
- -75.7462194,
- 35.1818911
+ 0.7529788,
+ 47.4098086
],
[
- -75.4929694,
- 35.1818911
+ 0.7462373,
+ 47.4097016
],
[
- -75.4929694,
- 35.3082988
+ 0.7459424,
+ 47.4232208
],
[
- -75.4325662,
- 35.3082988
+ 0.7392324,
+ 47.4231451
],
[
- -75.4325662,
- 35.7542495
+ 0.738869,
+ 47.4366116
],
[
- -75.4969907,
- 35.7542495
+ 0.7323267,
+ 47.4365171
],
[
- -75.4969907,
- 37.8105602
+ 0.7321869,
+ 47.4410556
],
[
- -75.3082972,
- 37.8105602
+ 0.7255048,
+ 47.44098
],
[
- -75.3082972,
- 37.8720088
+ 0.7254209,
+ 47.4453479
],
[
- -75.245601,
- 37.8720088
+ 0.7318793,
+ 47.4454803
],
[
- -75.245601,
- 37.9954849
+ 0.7318514,
+ 47.4501126
],
[
- -75.1828751,
- 37.9954849
+ 0.7384496,
+ 47.450226
],
[
- -75.1828751,
- 38.0585079
+ 0.7383098,
+ 47.454631
],
[
- -75.1184793,
- 38.0585079
+ 0.7449359,
+ 47.4547444
],
[
- -75.1184793,
- 38.2469091
+ 0.7443209,
+ 47.4771985
],
[
- -75.0592098,
- 38.2469091
+ 0.7310685,
+ 47.4769717
],
[
- -75.0592098,
- 38.3704316
+ 0.7309008,
+ 47.4815445
],
[
- -74.9948111,
- 38.3704316
+ 0.7176205,
+ 47.4812611
],
[
- -74.9948111,
- 38.8718417
+ 0.7177883,
+ 47.4768394
],
[
- -74.4878252,
- 38.8718417
+ 0.69777,
+ 47.4764993
],
[
- -74.4878252,
- 39.3089428
+ 0.6980496,
+ 47.4719827
],
[
- -74.1766317,
- 39.3089428
+ 0.6914514,
+ 47.4718882
],
[
- -74.1766317,
- 39.6224653
+ 0.6917309,
+ 47.4630241
],
[
- -74.0567045,
- 39.6224653
+ 0.6851048,
+ 47.4629295
],
[
- -74.0567045,
- 39.933178
+ 0.684937,
+ 47.4673524
],
[
- -73.9959035,
- 39.933178
+ 0.678255,
+ 47.4673335
],
[
- -73.9959035,
- 40.1854852
+ 0.6779754,
+ 47.4762158
],
[
- -73.9341593,
- 40.1854852
+ 0.6714051,
+ 47.4761592
],
[
- -73.9341593,
- 40.4959486
+ 0.6710417,
+ 47.4881952
],
[
- -73.8723024,
- 40.4959486
+ 0.6577334,
+ 47.4879685
],
[
- -73.8723024,
- 40.5527135
+ 0.6578173,
+ 47.48504
],
[
- -71.8074506,
- 40.5527135
+ 0.6511911,
+ 47.4848322
],
[
- -71.8074506,
- 41.3088005
+ 0.6514707,
+ 47.4758568
],
[
- -70.882512,
- 41.3088005
+ 0.6448166,
+ 47.4757245
],
[
- -70.882512,
- 41.184978
+ 0.6449284,
+ 47.4712646
],
[
- -70.7461947,
- 41.184978
+ 0.6117976,
+ 47.4707543
],
[
- -70.7461947,
- 41.3091865
+ 0.6118815,
+ 47.4663129
],
[
- -70.4337553,
- 41.3091865
+ 0.6052833,
+ 47.4661239
],
[
- -70.4337553,
- 41.4963885
+ 0.6054231,
+ 47.4616631
],
[
- -69.9334281,
- 41.4963885
+ 0.5988808,
+ 47.4615497
],
[
- -69.9334281,
- 41.6230802
+ 0.5990206,
+ 47.4570886
],
[
- -69.869857,
- 41.6230802
+ 0.572488,
+ 47.4566916
],
[
- -69.869857,
- 41.8776895
+ 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
],
[
- -69.935791,
- 41.8776895
+ -123.2549305,
+ 48.5592263
],
[
- -69.935791,
- 42.0032342
+ -123.192224,
+ 48.5592263
],
[
- -69.9975823,
- 42.0032342
+ -123.192224,
+ 48.4348366
],
[
- -69.9975823,
- 42.0650191
+ -122.9419646,
+ 48.4348366
],
[
- -70.0606103,
- 42.0650191
+ -122.9419646,
+ 48.3720812
],
[
- -70.0606103,
- 42.1294348
+ -122.8806229,
+ 48.3720812
],
[
- -70.5572884,
- 42.1294348
+ -122.8806229,
+ 48.3094763
],
[
- -70.5572884,
- 43.2487079
+ -122.8167566,
+ 48.3094763
],
[
- -70.4974097,
- 43.2487079
+ -122.8167566,
+ 48.1904587
],
[
- -70.4974097,
- 43.3092194
+ -123.0041133,
+ 48.1904587
],
[
- -70.3704249,
- 43.3092194
+ -123.0041133,
+ 48.1275918
],
[
- -70.3704249,
- 43.371963
+ -123.058416,
+ 48.1275918
],
[
- -70.3085701,
- 43.371963
+ -123.058416,
+ 48.190514
],
[
- -70.3085701,
- 43.4969879
+ -123.254113,
+ 48.190514
],
[
- -70.183921,
- 43.4969879
+ -123.254113,
+ 48.1274982
],
[
- -70.183921,
- 43.6223531
+ -123.3706593,
+ 48.1274982
],
[
- -70.057583,
- 43.6223531
+ -123.3706593,
+ 48.1908403
],
[
- -70.057583,
- 43.6850173
+ -124.0582632,
+ 48.1908403
],
[
- -69.7455247,
- 43.6850173
+ -124.0582632,
+ 48.253442
],
[
- -69.7455247,
- 43.7476571
+ -124.1815163,
+ 48.253442
],
[
- -69.2472845,
- 43.7476571
+ -124.1815163,
+ 48.3164666
],
[
- -69.2472845,
- 43.8107035
+ -124.4319117,
+ 48.3164666
],
[
- -69.0560701,
- 43.8107035
+ -124.4319117,
+ 48.3782613
],
[
- -69.0560701,
- 43.8717247
+ -124.5564618,
+ 48.3782613
],
[
- -68.9950522,
- 43.8717247
+ -124.5564618,
+ 48.4408305
],
[
- -68.9950522,
- 43.9982022
+ -124.7555107,
+ 48.4408305
],
[
- -68.4963672,
- 43.9982022
+ -124.7555107,
+ 48.1914986
],
[
- -68.4963672,
- 44.0597368
+ -124.8185282,
+ 48.1914986
],
[
- -68.3081038,
- 44.0597368
+ -124.8185282,
+ 48.1228381
],
[
- -68.3081038,
- 44.122137
+ -124.7552951,
+ 48.1228381
],
[
- -68.1851802,
- 44.122137
+ -124.7552951,
+ 47.5535253
],
[
- -68.1851802,
- 44.3081382
+ -124.3812108,
+ 47.5535253
],
[
- -67.9956019,
- 44.3081382
+ -124.3812108,
+ 47.1218696
],
[
- -67.9956019,
- 44.3727489
+ -124.1928897,
+ 47.1218696
],
[
- -67.8103041,
- 44.3727489
+ -124.1928897,
+ 43.7569431
],
[
- -67.8103041,
- 44.435178
+ -124.4443382,
+ 43.7569431
],
[
- -67.4965289,
- 44.435178
+ -124.4443382,
+ 43.1425556
],
[
- -67.4965289,
- 44.4968776
+ -124.6398855,
+ 43.1425556
],
[
- -67.37102,
- 44.4968776
+ -124.6398855,
+ 42.6194503
],
[
- -67.37102,
- 44.5600642
+ -124.4438525,
+ 42.6194503
],
[
- -67.1848753,
- 44.5600642
+ -124.4438525,
+ 39.8080662
],
[
- -67.1848753,
- 44.6213345
+ -123.8815685,
+ 39.8080662
],
[
- -67.1221208,
- 44.6213345
+ -123.8815685,
+ 39.1102825
],
[
- -67.1221208,
- 44.6867918
+ -123.75805,
+ 39.1102825
],
[
- -67.059365,
- 44.6867918
+ -123.75805,
+ 38.4968799
],
[
- -67.059365,
- 44.7473657
+ -123.2702803,
+ 38.4968799
],
[
- -66.9311098,
- 44.7473657
+ -123.2702803,
+ 37.9331905
],
[
- -66.9311098,
- 44.9406566
+ -122.8148084,
+ 37.9331905
],
[
- -66.994683,
- 44.9406566
+ -122.8148084,
+ 37.8019606
],
[
- -66.994683,
- 45.0024514
+ -122.5664316,
+ 37.8019606
],
[
- -67.0595847,
- 45.0024514
+ -122.5664316,
+ 36.9319611
],
[
- -67.0595847,
- 45.1273377
+ -121.8784026,
+ 36.9319611
],
[
- -67.1201974,
- 45.1273377
+ -121.8784026,
+ 36.6897596
],
[
- -67.1201974,
- 45.1910115
+ -122.0034748,
+ 36.6897596
],
[
- -67.2469811,
- 45.1910115
+ -122.0034748,
+ 36.4341056
],
[
- -67.2469811,
- 45.253442
+ -121.9414159,
+ 36.4341056
],
[
- -67.3177546,
- 45.253442
+ -121.9414159,
+ 35.9297636
],
[
- -67.3177546,
- 45.1898369
+ -121.5040977,
+ 35.9297636
],
[
- -67.370749,
- 45.1898369
+ -121.5040977,
+ 35.8100273
],
[
- -67.370749,
- 45.2534001
+ -121.3790276,
+ 35.8100273
],
[
- -67.4326888,
- 45.2534001
+ -121.3790276,
+ 35.4239164
],
[
- -67.4326888,
- 45.3083409
+ -120.9426515,
+ 35.4239164
],
[
- -67.3708571,
- 45.3083409
+ -120.9426515,
+ 35.1849683
],
[
- -67.3708571,
- 45.4396986
+ -120.8171978,
+ 35.1849683
],
[
- -67.4305573,
- 45.4396986
+ -120.8171978,
+ 35.1219894
],
[
- -67.4305573,
- 45.4950095
+ -120.6918447,
+ 35.1219894
],
[
- -67.37099,
- 45.4950095
+ -120.6918447,
+ 34.4966794
],
[
- -67.37099,
- 45.6264543
+ -120.5045898,
+ 34.4966794
],
[
- -67.6214982,
- 45.6264543
+ -120.5045898,
+ 34.4339651
],
[
- -67.6214982,
- 45.6896133
+ -120.0078775,
+ 34.4339651
],
[
- -67.683828,
- 45.6896133
+ -120.0078775,
+ 34.3682626
],
[
- -67.683828,
- 45.753259
+ -119.5283517,
+ 34.3682626
],
[
- -67.7462097,
- 45.753259
+ -119.5283517,
+ 34.0576434
],
[
- -67.7462097,
- 47.1268165
+ -119.0060985,
+ 34.0576434
],
[
- -67.8700141,
- 47.1268165
+ -119.0060985,
+ 33.9975267
],
[
- -67.8700141,
- 47.1900278
+ -118.5046259,
+ 33.9975267
],
[
- -67.9323803,
- 47.1900278
+ -118.5046259,
+ 33.8694631
],
[
- -67.9323803,
- 47.2539678
+ -118.4413209,
+ 33.8694631
],
[
- -67.9959387,
- 47.2539678
+ -118.4413209,
+ 33.6865253
],
[
- -67.9959387,
- 47.3149737
+ -118.066912,
+ 33.6865253
],
[
- -68.1206676,
- 47.3149737
+ -118.066912,
+ 33.3063832
],
[
- -68.1206676,
- 47.3780823
+ -117.5030045,
+ 33.3063832
],
[
- -68.4423175,
- 47.3780823
+ -117.5030045,
+ 33.0500337
],
[
- -68.4423175,
- 47.3166082
+ -117.3188195,
+ 33.0500337
],
[
- -68.6314305,
- 47.3166082
+ -117.3188195,
+ 32.6205888
],
[
- -68.6314305,
- 47.2544676
+ -117.1917023,
+ 32.6205888
],
[
- -68.9978037,
- 47.2544676
+ -117.1917023,
+ 32.4974566
],
[
- -68.9978037,
- 47.439895
+ -116.746496,
+ 32.4974566
],
[
- -69.0607223,
- 47.439895
+ -116.746496,
+ 32.5609161
],
[
- -69.0607223,
- 47.5047558
+ -115.9970138,
+ 32.5609161
],
[
- -69.2538122,
- 47.5047558
+ -115.9970138,
+ 32.6264942
],
[
- -69.2538122,
- 47.4398084
+ -114.8808125,
+ 32.6264942
],
[
- -69.3179284,
- 47.4398084
+ -114.8808125,
+ 32.4340796
],
[
- -69.3179284,
- 47.378601
+ -114.6294474,
+ 32.4340796
],
[
- -69.4438546,
- 47.378601
+ -114.6294474,
+ 32.3731636
],
[
- -69.4438546,
- 47.3156274
+ -114.4447437,
+ 32.3731636
],
[
- -69.5038204,
- 47.3156274
+ -114.4447437,
+ 32.3075418
],
[
- -69.5038204,
- 47.2525839
+ -114.2557628,
+ 32.3075418
],
[
- -69.5667838,
- 47.2525839
+ -114.2557628,
+ 32.2444561
],
[
- -69.5667838,
- 47.1910884
+ -114.0680274,
+ 32.2444561
],
[
- -69.6303478,
- 47.1910884
+ -114.0680274,
+ 32.1829113
],
[
- -69.6303478,
- 47.128701
+ -113.8166499,
+ 32.1829113
],
[
- -69.6933103,
- 47.128701
+ -113.8166499,
+ 32.1207622
],
[
- -69.6933103,
- 47.0654307
+ -113.6307421,
+ 32.1207622
],
[
- -69.7557063,
- 47.0654307
+ -113.6307421,
+ 32.0565099
],
[
- -69.7557063,
- 47.0042751
+ -113.4417495,
+ 32.0565099
],
[
- -69.8180391,
- 47.0042751
+ -113.4417495,
+ 31.9984372
],
[
- -69.8180391,
- 46.9415344
+ -113.2546027,
+ 31.9984372
],
[
- -69.8804023,
- 46.9415344
+ -113.2546027,
+ 31.9325434
],
[
- -69.8804023,
- 46.8792519
+ -113.068072,
+ 31.9325434
],
[
- -69.9421674,
- 46.8792519
+ -113.068072,
+ 31.8718062
],
[
- -69.9421674,
- 46.8177399
+ -112.8161105,
+ 31.8718062
],
[
- -70.0063088,
- 46.8177399
+ -112.8161105,
+ 31.8104171
],
[
- -70.0063088,
- 46.6920295
+ -112.6308756,
+ 31.8104171
],
[
- -70.0704265,
- 46.6920295
+ -112.6308756,
+ 31.7464723
],
[
- -70.0704265,
- 46.4425926
+ -112.4418918,
+ 31.7464723
],
[
- -70.1945902,
- 46.4425926
+ -112.4418918,
+ 31.6856001
],
[
- -70.1945902,
- 46.3785887
+ -112.257192,
+ 31.6856001
],
[
- -70.2562047,
- 46.3785887
+ -112.257192,
+ 31.6210352
],
[
- -70.2562047,
- 46.3152628
+ -112.0033787,
+ 31.6210352
],
[
- -70.3203651,
- 46.3152628
+ -112.0033787,
+ 31.559584
],
[
- -70.3203651,
- 46.0651209
+ -111.815619,
+ 31.559584
],
[
- -70.3814988,
- 46.0651209
+ -111.815619,
+ 31.4970238
],
[
- -70.3814988,
- 45.93552
+ -111.6278586,
+ 31.4970238
],
[
- -70.3201618,
- 45.93552
+ -111.6278586,
+ 31.4339867
],
[
- -70.3201618,
- 45.879479
+ -111.4418978,
+ 31.4339867
],
[
- -70.4493131,
- 45.879479
+ -111.4418978,
+ 31.3733859
],
[
- -70.4493131,
- 45.7538713
+ -111.2559708,
+ 31.3733859
],
[
- -70.5070021,
- 45.7538713
+ -111.2559708,
+ 31.3113225
],
[
- -70.5070021,
- 45.6916912
+ -108.1845822,
+ 31.3113225
],
[
- -70.6316642,
- 45.6916912
+ -108.1845822,
+ 31.7459502
],
[
- -70.6316642,
- 45.6291619
+ -106.5065055,
+ 31.7459502
],
[
- -70.7575538,
- 45.6291619
+ -106.5065055,
+ 31.6842308
],
[
- -70.7575538,
- 45.4414685
+ -106.3797265,
+ 31.6842308
],
[
- -70.8809878,
- 45.4414685
+ -106.3797265,
+ 31.621752
],
[
- -70.8809878,
- 45.3780612
+ -106.317434,
+ 31.621752
],
[
- -71.13328,
- 45.3780612
+ -106.317434,
+ 31.4968167
],
[
- -71.13328,
- 45.3151452
+ -106.2551769,
+ 31.4968167
],
[
- -71.3830282,
- 45.3151452
+ -106.2551769,
+ 31.4344889
],
[
- -71.3830282,
- 45.253416
+ -106.1924698,
+ 31.4344889
],
[
- -71.5076448,
- 45.253416
+ -106.1924698,
+ 31.3721296
],
[
- -71.5076448,
- 45.0655726
+ -106.0039212,
+ 31.3721296
],
[
- -73.9418929,
- 45.0655726
+ -106.0039212,
+ 31.309328
],
[
- -73.9418929,
- 45.0031242
+ -105.9416582,
+ 31.309328
],
[
- -74.7469725,
- 45.0031242
+ -105.9416582,
+ 31.2457547
],
[
- -74.7469725,
- 45.0649003
+ -105.8798174,
+ 31.2457547
],
[
- -74.8800964,
- 45.0649003
+ -105.8798174,
+ 31.1836194
],
[
- -74.8800964,
- 45.0029023
+ -105.8162349,
+ 31.1836194
],
[
- -75.0662455,
- 45.0029023
+ -105.8162349,
+ 31.1207155
],
[
- -75.0662455,
- 44.9415167
+ -105.6921198,
+ 31.1207155
],
[
- -75.2539363,
- 44.9415167
+ -105.6921198,
+ 31.0584835
],
[
- -75.2539363,
- 44.8776043
+ -105.6302881,
+ 31.0584835
],
[
- -75.3789648,
- 44.8776043
+ -105.6302881,
+ 30.9328271
],
[
- -75.3789648,
- 44.8153462
+ -105.5044418,
+ 30.9328271
],
[
- -75.4431283,
- 44.8153462
+ -105.5044418,
+ 30.8715864
],
[
- -75.4431283,
- 44.7536053
+ -105.4412973,
+ 30.8715864
],
[
- -75.5666566,
- 44.7536053
+ -105.4412973,
+ 30.808463
],
[
- -75.5666566,
- 44.6909879
+ -105.3781497,
+ 30.808463
],
[
- -75.6290205,
- 44.6909879
+ -105.3781497,
+ 30.7471828
],
[
- -75.6290205,
- 44.6284958
+ -105.1904658,
+ 30.7471828
],
[
- -75.7540484,
- 44.6284958
+ -105.1904658,
+ 30.6843231
],
[
- -75.7540484,
- 44.566385
+ -105.1286244,
+ 30.6843231
],
[
- -75.817312,
- 44.566385
+ -105.1286244,
+ 30.6199737
],
[
- -75.817312,
- 44.5028932
+ -105.0036504,
+ 30.6199737
],
[
- -75.8799549,
- 44.5028932
+ -105.0036504,
+ 30.5589058
],
[
- -75.8799549,
- 44.3784946
+ -104.9417962,
+ 30.5589058
],
[
- -76.1300319,
- 44.3784946
+ -104.9417962,
+ 30.4963236
],
[
- -76.1300319,
- 44.3159227
+ -104.8782018,
+ 30.4963236
],
[
- -76.1926961,
- 44.3159227
+ -104.8782018,
+ 30.3098261
],
[
- -76.1926961,
- 44.2534378
+ -104.8155257,
+ 30.3098261
],
[
- -76.3182619,
- 44.2534378
+ -104.8155257,
+ 30.2478305
],
[
- -76.3182619,
- 44.1916726
+ -104.7536079,
+ 30.2478305
],
[
- -76.3792975,
- 44.1916726
+ -104.7536079,
+ 29.9353916
],
[
- -76.3792975,
- 44.0653733
+ -104.690949,
+ 29.9353916
],
[
- -76.4427584,
- 44.0653733
+ -104.690949,
+ 29.8090156
],
[
- -76.4427584,
- 43.9963825
+ -104.6291301,
+ 29.8090156
],
[
- -76.317027,
- 43.9963825
+ -104.6291301,
+ 29.6843577
],
[
- -76.317027,
- 43.9414581
+ -104.5659869,
+ 29.6843577
],
[
- -76.5076611,
- 43.9414581
+ -104.5659869,
+ 29.6223459
],
[
- -76.5076611,
- 43.8723335
+ -104.5037188,
+ 29.6223459
],
[
- -76.3829974,
- 43.8723335
+ -104.5037188,
+ 29.5595436
],
[
- -76.3829974,
- 43.8091872
+ -104.4410072,
+ 29.5595436
],
[
- -76.2534102,
- 43.8091872
+ -104.4410072,
+ 29.4974832
],
[
- -76.2534102,
- 43.5665222
+ -104.2537551,
+ 29.4974832
],
[
- -76.5064833,
- 43.5665222
+ -104.2537551,
+ 29.3716718
],
[
- -76.5064833,
- 43.5033881
+ -104.1291984,
+ 29.3716718
],
[
- -76.6331208,
- 43.5033881
+ -104.1291984,
+ 29.3091621
],
[
- -76.6331208,
- 43.4432252
+ -104.0688737,
+ 29.3091621
],
[
- -76.6951085,
- 43.4432252
+ -104.0688737,
+ 29.2467276
],
[
- -76.6951085,
- 43.3786858
+ -103.8187309,
+ 29.2467276
],
[
- -76.8177798,
- 43.3786858
+ -103.8187309,
+ 29.1843076
],
[
- -76.8177798,
- 43.318066
+ -103.755736,
+ 29.1843076
],
[
- -77.682,
- 43.318066
+ -103.755736,
+ 29.1223174
],
[
- -77.682,
- 43.3789376
+ -103.5667542,
+ 29.1223174
],
[
- -78.0565883,
- 43.3789376
+ -103.5667542,
+ 29.0598119
],
[
- -78.0565883,
- 43.4396918
+ -103.5049819,
+ 29.0598119
],
[
- -78.4389748,
- 43.4396918
+ -103.5049819,
+ 28.9967506
],
[
- -78.4389748,
- 43.3794382
+ -103.3165753,
+ 28.9967506
],
[
- -78.8803396,
- 43.3794382
+ -103.3165753,
+ 28.9346923
],
[
- -78.8803396,
- 43.3149724
+ -103.0597572,
+ 28.9346923
],
[
- -79.1298858,
- 43.3149724
+ -103.0597572,
+ 29.0592965
],
[
- -79.1298858,
- 43.2429286
+ -102.9979694,
+ 29.0592965
],
[
- -79.0669615,
- 43.2429286
+ -102.9979694,
+ 29.1212855
],
[
- -79.0669615,
- 43.1299931
+ -102.9331397,
+ 29.1212855
],
[
- -79.1298858,
- 43.1299931
+ -102.9331397,
+ 29.1848575
],
[
- -79.1298858,
- 43.0577305
+ -102.8095989,
+ 29.1848575
],
[
- -79.071264,
- 43.0577305
+ -102.8095989,
+ 29.2526154
],
[
- -79.071264,
- 42.9294906
+ -102.8701345,
+ 29.2526154
],
[
- -78.943264,
- 42.9294906
+ -102.8701345,
+ 29.308096
],
[
- -78.943264,
- 42.7542165
+ -102.8096681,
+ 29.308096
],
[
- -79.069439,
- 42.7542165
+ -102.8096681,
+ 29.3715484
],
[
- -79.069439,
- 42.6941622
+ -102.7475655,
+ 29.3715484
],
[
- -79.133439,
- 42.6941622
+ -102.7475655,
+ 29.5581899
],
[
- -79.133439,
- 42.6296973
+ -102.684554,
+ 29.5581899
],
[
- -79.1947499,
- 42.6296973
+ -102.684554,
+ 29.6847655
],
[
- -79.1947499,
- 42.5663538
+ -102.4967764,
+ 29.6847655
],
[
- -79.3786827,
- 42.5663538
+ -102.4967764,
+ 29.7457694
],
[
- -79.3786827,
- 42.5033425
+ -102.3086647,
+ 29.7457694
],
[
- -79.4442961,
- 42.5033425
+ -102.3086647,
+ 29.8086627
],
[
- -79.4442961,
- 42.4410614
+ -102.1909323,
+ 29.8086627
],
[
- -79.5679936,
- 42.4410614
+ -102.1909323,
+ 29.7460097
],
[
- -79.5679936,
- 42.3775264
+ -101.5049914,
+ 29.7460097
],
[
- -79.6906154,
- 42.3775264
+ -101.5049914,
+ 29.6846777
],
[
- -79.6906154,
- 42.3171086
+ -101.3805796,
+ 29.6846777
],
[
- -79.8164642,
- 42.3171086
+ -101.3805796,
+ 29.5594459
],
[
- -79.8164642,
- 42.2534481
+ -101.3175057,
+ 29.5594459
],
[
- -80.0052373,
- 42.2534481
+ -101.3175057,
+ 29.4958934
],
[
- -80.0052373,
- 42.1909188
+ -101.1910075,
+ 29.4958934
],
[
- -80.1916829,
- 42.1909188
+ -101.1910075,
+ 29.4326115
],
[
- -80.1916829,
- 42.1272555
+ -101.067501,
+ 29.4326115
],
[
- -80.3167992,
- 42.1272555
+ -101.067501,
+ 29.308808
],
[
- -80.3167992,
- 42.0669857
+ -100.9418897,
+ 29.308808
],
[
- -80.5063234,
- 42.0669857
+ -100.9418897,
+ 29.2456231
],
[
- -80.5063234,
- 42.0034331
+ -100.8167271,
+ 29.2456231
],
[
- -80.6930471,
- 42.0034331
+ -100.8167271,
+ 29.1190449
],
[
- -80.6930471,
- 41.9415141
+ -100.7522672,
+ 29.1190449
],
[
- -80.9440403,
- 41.9415141
+ -100.7522672,
+ 29.0578214
],
[
- -80.9440403,
- 41.8781193
+ -100.6925358,
+ 29.0578214
],
[
- -81.1942729,
- 41.8781193
+ -100.6925358,
+ 28.8720431
],
[
- -81.1942729,
- 41.8166455
+ -100.6290158,
+ 28.8720431
],
[
- -81.3190089,
- 41.8166455
+ -100.6290158,
+ 28.8095363
],
[
- -81.3190089,
- 41.7545453
+ -100.5679901,
+ 28.8095363
],
[
- -81.4418435,
- 41.7545453
+ -100.5679901,
+ 28.622554
],
[
- -81.4418435,
- 41.690965
+ -100.5040411,
+ 28.622554
],
[
- -81.5053523,
- 41.690965
+ -100.5040411,
+ 28.5583804
],
[
- -81.5053523,
- 41.6301643
+ -100.4421832,
+ 28.5583804
],
[
- -82.7470081,
- 41.6301643
+ -100.4421832,
+ 28.4968266
],
[
- -82.7470081,
- 41.7536942
+ -100.379434,
+ 28.4968266
],
[
- -82.8839135,
- 41.7536942
+ -100.379434,
+ 28.3092865
],
[
- -82.8839135,
- 41.5656075
+ -100.3171942,
+ 28.3092865
],
[
- -82.9957195,
- 41.5656075
+ -100.3171942,
+ 28.1835681
],
[
- -82.9957195,
- 41.6270375
+ -100.254483,
+ 28.1835681
],
[
- -83.1257796,
- 41.6270375
+ -100.254483,
+ 28.1213885
],
[
- -83.1257796,
- 41.6878411
+ -100.1282282,
+ 28.1213885
],
[
- -83.2474733,
- 41.6878411
+ -100.1282282,
+ 28.059215
],
[
- -83.2474733,
- 41.7536942
+ -100.0659537,
+ 28.059215
],
[
- -83.3737305,
- 41.7536942
+ -100.0659537,
+ 27.9966087
],
[
- -83.3737305,
- 41.809276
+ -100.0023855,
+ 27.9966087
],
[
- -83.3106019,
- 41.809276
+ -100.0023855,
+ 27.9332152
],
[
- -83.3106019,
- 41.8716064
+ -99.9426497,
+ 27.9332152
],
[
- -83.2474733,
- 41.8716064
+ -99.9426497,
+ 27.7454658
],
[
- -83.2474733,
- 41.9361393
+ -99.816851,
+ 27.7454658
],
[
- -83.1843447,
- 41.9361393
+ -99.816851,
+ 27.6834301
],
[
- -83.1843447,
- 41.9960851
+ -99.7541346,
+ 27.6834301
],
[
- -83.1207681,
- 41.9960851
+ -99.7541346,
+ 27.6221543
],
[
- -83.1207681,
- 42.2464812
+ -99.6291629,
+ 27.6221543
],
[
- -83.0589194,
- 42.2464812
+ -99.6291629,
+ 27.5588977
],
[
- -83.0589194,
- 42.3089555
+ -99.5672838,
+ 27.5588977
],
[
- -82.8685328,
- 42.3089555
+ -99.5672838,
+ 27.4353752
],
[
- -82.8685328,
- 42.3717652
+ -99.5041798,
+ 27.4353752
],
[
- -82.8072219,
- 42.3717652
+ -99.5041798,
+ 27.3774021
],
[
- -82.8072219,
- 42.558553
+ -99.5671796,
+ 27.3774021
],
[
- -82.7553745,
- 42.558553
+ -99.5671796,
+ 27.2463726
],
[
- -82.7553745,
- 42.4954945
+ -99.504975,
+ 27.2463726
],
[
- -82.5599041,
- 42.4954945
+ -99.504975,
+ 26.9965649
],
[
- -82.5599041,
- 42.558553
+ -99.4427427,
+ 26.9965649
],
[
- -82.4967755,
- 42.558553
+ -99.4427427,
+ 26.872803
],
[
- -82.4967755,
- 42.6833607
+ -99.3800633,
+ 26.872803
],
[
- -82.4328863,
- 42.6833607
+ -99.3800633,
+ 26.8068179
],
[
- -82.4328863,
- 42.9342196
+ -99.3190684,
+ 26.8068179
],
[
- -82.3700552,
- 42.9342196
+ -99.3190684,
+ 26.7473614
],
[
- -82.3700552,
- 43.0648071
+ -99.2537541,
+ 26.7473614
],
[
- -82.4328863,
- 43.0648071
+ -99.2537541,
+ 26.6210068
],
[
- -82.4328863,
- 43.1917566
+ -99.1910617,
+ 26.6210068
],
[
- -82.4947464,
- 43.1917566
+ -99.1910617,
+ 26.4956737
],
[
- -82.4947464,
- 43.5034627
+ -99.1300639,
+ 26.4956737
],
[
- -82.557133,
- 43.5034627
+ -99.1300639,
+ 26.3713808
],
[
- -82.557133,
- 43.8160901
+ -99.0029473,
+ 26.3713808
],
[
- -82.6197884,
- 43.8160901
+ -99.0029473,
+ 26.3093836
],
[
- -82.6197884,
- 43.9422098
+ -98.816572,
+ 26.3093836
],
[
- -82.6839499,
- 43.9422098
+ -98.816572,
+ 26.2457762
],
[
- -82.6839499,
- 44.0022641
+ -98.6920082,
+ 26.2457762
],
[
- -82.7465346,
- 44.0022641
+ -98.6920082,
+ 26.1837096
],
[
- -82.7465346,
- 44.0670545
+ -98.4440896,
+ 26.1837096
],
[
- -82.8708696,
- 44.0670545
+ -98.4440896,
+ 26.1217217
],
[
- -82.8708696,
- 44.1291935
+ -98.3823181,
+ 26.1217217
],
[
- -83.008517,
- 44.1291935
+ -98.3823181,
+ 26.0596488
],
[
- -83.008517,
- 44.0664786
+ -98.2532707,
+ 26.0596488
],
[
- -83.1336086,
- 44.0664786
+ -98.2532707,
+ 25.9986871
],
[
- -83.1336086,
- 44.0053949
+ -98.0109084,
+ 25.9986871
],
[
- -83.2414522,
- 44.0053949
+ -98.0109084,
+ 25.9932255
],
[
- -83.2414522,
- 44.9962034
+ -97.6932319,
+ 25.9932255
],
[
- -83.1806112,
- 44.9962034
+ -97.6932319,
+ 25.9334103
],
[
- -83.1806112,
- 45.067302
+ -97.6313904,
+ 25.9334103
],
[
- -83.2455172,
- 45.067302
+ -97.6313904,
+ 25.8695893
],
[
- -83.2455172,
- 45.1287382
+ -97.5046779,
+ 25.8695893
],
[
- -83.3065878,
- 45.1287382
+ -97.5046779,
+ 25.8073488
],
[
- -83.3065878,
- 45.2551509
+ -97.3083401,
+ 25.8073488
],
[
- -83.3706087,
- 45.2551509
+ -97.3083401,
+ 25.8731159
],
[
- -83.3706087,
- 45.3165923
+ -97.2456326,
+ 25.8731159
],
[
- -83.4325644,
- 45.3165923
+ -97.2456326,
+ 25.9353731
],
[
- -83.4325644,
- 45.3792105
+ -97.1138939,
+ 25.9353731
],
[
- -83.6178415,
- 45.3792105
+ -97.1138939,
+ 27.6809179
],
[
- -83.6178415,
- 45.4419665
+ -97.0571035,
+ 27.6809179
],
[
- -83.8084291,
- 45.4419665
+ -97.0571035,
+ 27.8108242
],
[
- -83.8084291,
- 45.5036189
+ -95.5810766,
+ 27.8108242
],
[
- -84.0550718,
- 45.5036189
+ -95.5810766,
+ 28.7468827
],
[
- -84.0550718,
- 45.5647907
+ -94.271041,
+ 28.7468827
],
[
- -84.1235181,
- 45.5647907
+ -94.271041,
+ 29.5594076
],
[
- -84.1235181,
- 45.6287845
+ -92.5029947,
+ 29.5594076
],
[
- -84.1807534,
- 45.6287845
+ -92.5029947,
+ 29.4974754
],
[
- -84.1807534,
- 45.6914688
+ -91.8776216,
+ 29.4974754
],
[
- -84.3111554,
- 45.6914688
+ -91.8776216,
+ 29.3727013
],
[
- -84.3111554,
- 45.9337076
+ -91.378418,
+ 29.3727013
],
[
- -83.8209974,
- 45.9337076
+ -91.378418,
+ 29.2468326
],
[
- -83.8209974,
- 45.8725113
+ -91.3153953,
+ 29.2468326
],
[
- -83.4968086,
- 45.8725113
+ -91.3153953,
+ 29.1844301
],
[
- -83.4968086,
- 45.9337076
+ -91.1294702,
+ 29.1844301
],
[
- -83.4338066,
- 45.9337076
+ -91.1294702,
+ 29.1232559
],
[
- -83.4338066,
- 46.0016863
+ -91.0052632,
+ 29.1232559
],
[
- -83.4962697,
- 46.0016863
+ -91.0052632,
+ 28.9968437
],
[
- -83.4962697,
- 46.0668178
+ -89.4500159,
+ 28.9968437
],
[
- -83.5599956,
- 46.0668178
+ -89.4500159,
+ 28.8677422
],
[
- -83.5599956,
- 46.1261576
+ -88.8104309,
+ 28.8677422
],
[
- -83.9954558,
- 46.1261576
+ -88.8104309,
+ 30.1841864
],
[
- -83.9954558,
- 46.1931747
+ -85.8791527,
+ 30.1841864
],
[
- -84.0591816,
- 46.1931747
+ -85.8791527,
+ 29.5455038
],
[
- -84.0591816,
- 46.3814972
+ -84.8368083,
+ 29.5455038
],
[
- -84.1152614,
- 46.3814972
+ -84.8368083,
+ 29.6225158
],
[
- -84.1152614,
- 46.4953584
+ -84.7482786,
+ 29.6225158
],
[
- -84.0591816,
- 46.4953584
+ -84.7482786,
+ 29.683624
],
[
- -84.0591816,
- 46.5682653
+ -84.685894,
+ 29.683624
],
[
- -84.2579545,
- 46.5682653
+ -84.685894,
+ 29.7468386
],
[
- -84.2579545,
- 46.5051232
+ -83.6296975,
+ 29.7468386
],
[
- -84.3071879,
- 46.5051232
+ -83.6296975,
+ 29.4324361
],
[
- -84.3071879,
- 46.5682653
+ -83.3174937,
+ 29.4324361
],
[
- -84.4415364,
- 46.5682653
+ -83.3174937,
+ 29.0579442
],
[
- -84.4415364,
- 46.504525
+ -82.879659,
+ 29.0579442
],
[
- -84.9965729,
- 46.504525
+ -82.879659,
+ 27.7453529
],
[
- -84.9965729,
- 46.6842882
+ -82.8182822,
+ 27.7453529
],
[
- -84.9298158,
- 46.6842882
+ -82.8182822,
+ 26.9290868
],
[
- -84.9298158,
- 46.818077
+ -82.3796782,
+ 26.9290868
],
[
- -85.3165894,
- 46.818077
+ -82.3796782,
+ 26.3694183
],
[
- -85.3165894,
- 46.7535825
+ -81.8777106,
+ 26.3694183
],
[
- -87.5562645,
- 46.7535825
+ -81.8777106,
+ 25.805971
],
[
- -87.5562645,
- 47.4407371
+ -81.5036862,
+ 25.805971
],
[
- -87.6825361,
- 47.4407371
+ -81.5036862,
+ 25.7474753
],
[
- -87.6825361,
- 47.5035554
+ -81.4405462,
+ 25.7474753
],
[
- -88.2560738,
- 47.5035554
+ -81.4405462,
+ 25.6851489
],
[
- -88.2560738,
- 47.4433716
+ -81.3155883,
+ 25.6851489
],
[
- -88.4417419,
- 47.4433716
+ -81.3155883,
+ 25.5600985
],
[
- -88.4417419,
- 47.3789949
+ -81.2538534,
+ 25.5600985
],
[
- -88.50683,
- 47.3789949
+ -81.2538534,
+ 25.4342361
],
[
- -88.50683,
- 47.3153881
+ -81.1902012,
+ 25.4342361
],
[
- -88.6312821,
- 47.3153881
+ -81.1902012,
+ 25.1234341
],
[
- -88.6312821,
- 47.2539782
+ -81.1288133,
+ 25.1234341
],
[
- -88.7569636,
- 47.2539782
+ -81.1288133,
+ 25.0619389
],
[
- -88.7569636,
- 47.1934682
+ -81.0649231,
+ 25.0619389
],
[
- -88.8838253,
- 47.1934682
+ -81.0649231,
+ 24.8157807
],
[
- -88.8838253,
- 47.1284735
+ -81.6289469,
+ 24.8157807
],
[
- -88.9434208,
- 47.1284735
+ -81.6289469,
+ 24.7538367
],
[
- -88.9434208,
- 47.0662127
+ -81.6907173,
+ 24.7538367
],
[
- -89.0708726,
- 47.0662127
+ -81.6907173,
+ 24.6899374
],
[
- -89.0708726,
- 47.0026826
+ -81.8173189,
+ 24.6899374
],
[
- -89.2565553,
- 47.0026826
+ -81.8173189,
+ 24.6279161
],
[
- -89.2565553,
- 46.9410806
+ -82.1910041,
+ 24.6279161
],
[
- -90.3677669,
- 46.9410806
+ -82.1910041,
+ 24.496294
],
[
- -90.3677669,
- 47.6844827
+ -81.6216596,
+ 24.496294
],
[
- -90.3069978,
- 47.6844827
+ -81.6216596,
+ 24.559484
],
[
- -90.3069978,
- 47.7460174
+ -81.372006,
+ 24.559484
],
[
- -89.994859,
- 47.7460174
+ -81.372006,
+ 24.6220687
],
[
- -89.994859,
- 47.8082719
+ -81.0593278,
+ 24.6220687
],
[
- -89.8048615,
- 47.8082719
+ -81.0593278,
+ 24.684826
],
[
- -89.8048615,
- 47.8700562
+ -80.9347147,
+ 24.684826
],
[
- -89.6797699,
- 47.8700562
+ -80.9347147,
+ 24.7474828
],
[
- -89.6797699,
- 47.9339637
+ -80.7471081,
+ 24.7474828
],
[
- -89.4933757,
- 47.9339637
+ -80.7471081,
+ 24.8100618
],
[
- -89.4933757,
- 47.9957956
+ -80.3629898,
+ 24.8100618
],
[
- -89.4284697,
- 47.9957956
+ -80.3629898,
+ 25.1175858
],
[
- -89.4284697,
- 48.0656377
+ -80.122344,
+ 25.1175858
],
[
- -89.9932739,
- 48.0656377
+ -80.122344,
+ 25.7472357
],
[
- -89.9932739,
- 48.1282966
+ -80.0588458,
+ 25.7472357
],
[
- -90.7455933,
- 48.1282966
+ -80.0588458,
+ 26.3708251
],
[
- -90.7455933,
- 48.1893056
+ -79.995837,
+ 26.3708251
],
[
- -90.8087291,
- 48.1893056
+ -79.995837,
+ 26.9398003
],
[
- -90.8087291,
- 48.2522065
+ -80.0587265,
+ 26.9398003
],
[
- -91.067763,
- 48.2522065
+ -80.0587265,
+ 27.1277466
],
[
- -91.067763,
- 48.1916658
+ -80.1226251,
+ 27.1277466
],
[
- -91.1946247,
- 48.1916658
+ -80.1226251,
+ 27.2534279
],
[
- -91.1946247,
- 48.1279027
+ -80.1846956,
+ 27.2534279
],
[
- -91.6814196,
- 48.1279027
+ -80.1846956,
+ 27.3781229
],
[
- -91.6814196,
- 48.2525994
+ -80.246175,
+ 27.3781229
],
[
- -91.9321927,
- 48.2525994
+ -80.246175,
+ 27.5658729
],
[
- -91.9321927,
- 48.3142454
+ -80.3094768,
+ 27.5658729
],
[
- -91.9929683,
- 48.3142454
+ -80.3094768,
+ 27.7530311
],
[
- -91.9929683,
- 48.3780845
+ -80.3721485,
+ 27.7530311
],
[
- -92.3189383,
- 48.3780845
+ -80.3721485,
+ 27.8774451
],
[
- -92.3189383,
- 48.2529081
+ -80.4351457,
+ 27.8774451
],
[
- -92.3732233,
- 48.2529081
+ -80.4351457,
+ 28.0033366
],
[
- -92.3732233,
- 48.3153385
+ -80.4966078,
+ 28.0033366
],
[
- -92.4322288,
- 48.3153385
+ -80.4966078,
+ 28.1277326
],
[
- -92.4322288,
- 48.4411448
+ -80.5587159,
+ 28.1277326
],
[
- -92.4977248,
- 48.4411448
+ -80.5587159,
+ 28.3723509
],
[
- -92.4977248,
- 48.501781
+ -80.4966335,
+ 28.3723509
],
[
- -92.5679413,
- 48.501781
+ -80.4966335,
+ 29.5160326
],
[
- -92.5679413,
- 48.439579
+ -81.1213644,
+ 29.5160326
],
[
- -92.6210462,
- 48.439579
+ -81.1213644,
+ 31.6846966
],
[
- -92.6210462,
- 48.5650783
+ -80.6018723,
+ 31.6846966
],
[
- -92.8086835,
- 48.5650783
+ -80.6018723,
+ 32.2475309
],
[
- -92.8086835,
- 48.6286865
+ -79.4921024,
+ 32.2475309
],
[
- -92.8086835,
- 48.6267365
+ -79.4921024,
+ 32.9970261
],
[
- -92.933185,
- 48.6267365
+ -79.1116488,
+ 32.9970261
],
[
- -92.933185,
- 48.6922145
+ -79.1116488,
+ 33.3729457
],
[
- -93.0051716,
- 48.6922145
+ -78.6153621,
+ 33.3729457
],
[
- -93.0051716,
- 48.6282965
+ -78.6153621,
+ 33.8097638
],
[
- -93.1225924,
- 48.6282965
+ -77.9316963,
+ 33.8097638
],
[
- -93.1225924,
- 48.6922145
+ -77.9316963,
+ 33.8718243
],
[
- -93.3190806,
- 48.6922145
+ -77.8692252,
+ 33.8718243
],
[
- -93.3190806,
- 48.6267365
+ -77.8692252,
+ 34.0552454
],
[
- -93.5049477,
- 48.6267365
+ -77.6826392,
+ 34.0552454
],
[
- -93.5049477,
- 48.5635164
+ -77.6826392,
+ 34.2974598
],
[
- -93.7474601,
- 48.5635164
+ -77.2453509,
+ 34.2974598
],
[
- -93.7474601,
- 48.6267365
+ -77.2453509,
+ 34.5598585
],
[
- -93.8135461,
- 48.6267365
+ -76.4973277,
+ 34.5598585
],
[
- -93.8135461,
- 48.6898775
+ -76.4973277,
+ 34.622796
],
[
- -94.2453121,
- 48.6898775
+ -76.4337602,
+ 34.622796
],
[
- -94.2453121,
- 48.7554327
+ -76.4337602,
+ 34.6849285
],
[
- -94.6183171,
- 48.7554327
+ -76.373212,
+ 34.6849285
],
[
- -94.6183171,
- 48.941036
+ -76.373212,
+ 34.7467674
],
[
- -94.6809018,
- 48.941036
+ -76.3059364,
+ 34.7467674
],
[
- -94.6809018,
- 49.0029737
+ -76.3059364,
+ 34.808551
],
[
- -94.7441532,
- 49.0029737
+ -76.2468017,
+ 34.808551
],
[
- -94.7441532,
- 49.2536079
+ -76.2468017,
+ 34.8728418
],
[
- -94.8084069,
- 49.2536079
+ -76.1825922,
+ 34.8728418
],
[
- -94.8084069,
- 49.3784134
+ -76.1825922,
+ 34.9335332
],
[
- -95.1192391,
- 49.3784134
+ -76.120814,
+ 34.9335332
],
[
- -95.1192391,
- 49.4425264
+ -76.120814,
+ 34.9952359
],
[
- -95.1934341,
- 49.4425264
+ -75.9979015,
+ 34.9952359
],
[
- -95.1934341,
- 49.0035292
+ -75.9979015,
+ 35.0578182
],
[
- -96.87069,
- 49.0035292
+ -75.870338,
+ 35.0578182
],
[
- -96.87069,
- 49.0656063
+ -75.870338,
+ 35.1219097
],
[
- -99.0049312,
- 49.0656063
+ -75.7462194,
+ 35.1219097
],
[
- -99.0049312,
- 49.0050714
+ -75.7462194,
+ 35.1818911
],
[
- -109.3699257,
- 49.0050714
+ -75.4929694,
+ 35.1818911
],
[
- -109.3699257,
- 49.0668231
+ -75.4929694,
+ 35.3082988
],
[
- -109.5058746,
- 49.0668231
+ -75.4325662,
+ 35.3082988
],
[
- -109.5058746,
- 49.0050714
+ -75.4325662,
+ 35.7542495
],
[
- -114.1830014,
- 49.0050714
+ -75.4969907,
+ 35.7542495
],
[
- -114.1830014,
- 49.0687317
+ -75.4969907,
+ 37.8105602
],
[
- -114.7578709,
- 49.0687317
+ -75.3082972,
+ 37.8105602
],
[
- -114.7578709,
- 49.0050714
+ -75.3082972,
+ 37.8720088
],
[
- -115.433731,
- 49.0050714
+ -75.245601,
+ 37.8720088
],
[
- -115.433731,
- 49.0671412
+ -75.245601,
+ 37.9954849
],
[
- -116.5062706,
- 49.0671412
+ -75.1828751,
+ 37.9954849
],
[
- -116.5062706,
- 49.0050714
+ -75.1828751,
+ 38.0585079
],
[
- -117.3089504,
- 49.0050714
+ -75.1184793,
+ 38.0585079
],
[
- -117.3089504,
- 49.0659803
+ -75.1184793,
+ 38.2469091
],
[
- -119.882945,
- 49.0659803
+ -75.0592098,
+ 38.2469091
],
[
- -119.882945,
- 49.0050714
+ -75.0592098,
+ 38.3704316
],
[
- -120.1208555,
- 49.0050714
+ -74.9948111,
+ 38.3704316
],
[
- -120.1208555,
- 49.0678367
+ -74.9948111,
+ 38.8718417
],
[
- -121.4451636,
- 49.0678367
+ -74.4878252,
+ 38.8718417
],
[
- -121.4451636,
- 49.0050714
+ -74.4878252,
+ 39.3089428
],
[
- -121.9311808,
- 49.0050714
+ -74.1766317,
+ 39.3089428
],
[
- -121.9311808,
- 49.0656099
+ -74.1766317,
+ 39.6224653
],
[
- -122.817484,
- 49.0656099
+ -74.0567045,
+ 39.6224653
],
[
- -122.817484,
- 49.0029143
+ -74.0567045,
+ 39.933178
],
[
- -122.8795155,
- 49.0029143
+ -73.9959035,
+ 39.933178
],
[
- -122.8795155,
- 48.9347018
+ -73.9959035,
+ 40.1854852
],
[
- -122.8174629,
- 48.9347018
+ -73.9341593,
+ 40.1854852
],
[
- -122.8174629,
- 48.8101998
+ -73.9341593,
+ 40.4959486
],
[
- -122.7538859,
- 48.8101998
+ -73.8723024,
+ 40.4959486
],
[
- -122.7538859,
- 48.7533758
+ -73.8723024,
+ 40.5527135
],
[
- -122.8712937,
- 48.7533758
+ -71.8074506,
+ 40.5527135
],
[
- -122.8712937,
- 48.8153948
+ -71.8074506,
+ 41.3088005
],
[
- -123.0055391,
- 48.8153948
+ -70.882512,
+ 41.3088005
],
[
- -123.0055391,
- 48.7529529
+ -70.882512,
+ 41.184978
],
[
- -123.1296926,
- 48.7529529
+ -70.7461947,
+ 41.184978
],
[
- -123.1296926,
- 48.6902201
+ -70.7461947,
+ 41.3091865
],
[
- -123.1838197,
- 48.6902201
+ -70.4337553,
+ 41.3091865
],
[
- -123.1838197,
- 48.7529029
- ]
- ],
- [
- [
- -122.9341743,
- 37.7521547
+ -70.4337553,
+ 41.4963885
],
[
- -122.9347457,
- 37.6842013
+ -69.9334281,
+ 41.4963885
],
[
- -123.0679013,
- 37.6849023
+ -69.9334281,
+ 41.6230802
],
[
- -123.0673747,
- 37.7475251
+ -69.869857,
+ 41.6230802
],
[
- -123.1292603,
- 37.7478506
+ -69.869857,
+ 41.8776895
],
[
- -123.1286894,
- 37.815685
+ -69.935791,
+ 41.8776895
],
[
- -123.0590687,
- 37.8153192
+ -69.935791,
+ 42.0032342
],
[
- -123.0595947,
- 37.7528143
- ]
- ],
- [
- [
- -71.6299464,
- 41.2540893
+ -69.9975823,
+ 42.0032342
],
[
- -71.4966465,
- 41.2541393
+ -69.9975823,
+ 42.0650191
],
[
- -71.4965596,
- 41.122965
+ -70.0606103,
+ 42.0650191
],
[
- -71.6298594,
- 41.1229149
- ]
- ],
- [
+ -70.0606103,
+ 42.1294348
+ ],
[
- -70.3184265,
- 41.3775196
+ -70.5572884,
+ 42.1294348
],
[
- -70.3183384,
- 41.2448243
+ -70.5572884,
+ 43.2487079
],
[
- -70.1906612,
- 41.2448722
+ -70.4974097,
+ 43.2487079
],
[
- -70.1906239,
- 41.1886019
+ -70.4974097,
+ 43.3092194
],
[
- -69.9336025,
- 41.1886984
+ -70.3704249,
+ 43.3092194
],
[
- -69.933729,
- 41.3791941
+ -70.3704249,
+ 43.371963
],
[
- -69.9950664,
- 41.3791712
+ -70.3085701,
+ 43.371963
],
[
- -69.995109,
- 41.443159
+ -70.3085701,
+ 43.4969879
],
[
- -70.0707828,
- 41.4431307
+ -70.183921,
+ 43.4969879
],
[
- -70.0706972,
- 41.3144915
+ -70.183921,
+ 43.6223531
],
[
- -70.2461667,
- 41.3144258
+ -70.057583,
+ 43.6223531
],
[
- -70.2462087,
- 41.3775467
- ]
- ],
- [
- [
- -68.9403374,
- 43.9404062
+ -70.057583,
+ 43.6850173
],
[
- -68.6856948,
- 43.9404977
+ -69.7455247,
+ 43.6850173
],
[
- -68.6856475,
- 43.8721797
+ -69.7455247,
+ 43.7476571
],
[
- -68.7465405,
- 43.8721577
+ -69.2472845,
+ 43.7476571
],
[
- -68.7464976,
- 43.8102529
+ -69.2472845,
+ 43.8107035
],
[
- -68.8090782,
- 43.8102304
+ -69.0560701,
+ 43.8107035
],
[
- -68.8090343,
- 43.746728
+ -69.0560701,
+ 43.8717247
],
[
- -68.8773094,
- 43.7467034
+ -68.9950522,
+ 43.8717247
],
[
- -68.8773544,
- 43.8117826
+ -68.9950522,
+ 43.9982022
],
[
- -68.9402483,
- 43.8117599
- ]
- ],
- [
- [
- -123.1291466,
- 49.0645144
+ -68.4963672,
+ 43.9982022
],
[
- -122.9954224,
- 49.0645144
+ -68.4963672,
+ 44.0597368
],
[
- -122.9954224,
- 48.9343243
+ -68.3081038,
+ 44.0597368
],
[
- -123.1291466,
- 48.9343243
- ]
- ],
- [
- [
- -82.9407144,
- 24.7535913
+ -68.3081038,
+ 44.122137
],
[
- -82.8719398,
- 24.7535913
+ -68.1851802,
+ 44.122137
],
[
- -82.8719398,
- 24.6905653
+ -68.1851802,
+ 44.3081382
],
[
- -82.7446233,
- 24.6905653
+ -67.9956019,
+ 44.3081382
],
[
- -82.7446233,
- 24.6214593
+ -67.9956019,
+ 44.3727489
],
[
- -82.8088038,
- 24.6214593
+ -67.8103041,
+ 44.3727489
],
[
- -82.8088038,
- 24.5594908
+ -67.8103041,
+ 44.435178
],
[
- -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
+ -67.4965289,
+ 44.435178
],
[
- -125.989419,
- 47.9948396
+ -67.4965289,
+ 44.4968776
],
[
- -123.9929739,
- 47.9955062
+ -67.37102,
+ 44.4968776
],
[
- -123.9922429,
- 47.0059202
+ -67.37102,
+ 44.5600642
],
[
- -125.988688,
- 47.0052409
+ -67.1848753,
+ 44.5600642
],
[
- -125.9879604,
- 46.0015618
+ -67.1848753,
+ 44.6213345
],
[
- -123.9939396,
- 46.0022529
+ -67.1221208,
+ 44.6213345
],
[
- -123.9925238,
- 43.9961708
+ -67.1221208,
+ 44.6867918
],
[
- -124.9931832,
- 43.9958116
+ -67.059365,
+ 44.6867918
],
[
- -124.9918175,
- 41.9942149
+ -67.059365,
+ 44.7473657
],
[
- -125.9851789,
- 41.9938465
+ -66.9311098,
+ 44.7473657
],
[
- -125.9838655,
- 40.0076111
+ -66.9311098,
+ 44.9406566
],
[
- -123.9833285,
- 40.0083757
+ -66.994683,
+ 44.9406566
],
[
- -123.9814115,
- 37.002615
+ -66.994683,
+ 45.0024514
],
[
- -122.21903,
- 37.0033173
+ -67.0595847,
+ 45.0024514
],
[
- -122.2184144,
- 36.011671
+ -67.0595847,
+ 45.1273377
],
[
- -122.020087,
- 36.011751
+ -67.1201974,
+ 45.1273377
],
[
- -122.0188591,
- 33.9961766
+ -67.1201974,
+ 45.1910115
],
[
- -119.9787757,
- 33.9970206
+ -67.2469811,
+ 45.1910115
],
[
- -119.9775867,
- 31.9987658
+ -67.2469811,
+ 45.253442
],
[
- -114.0122833,
- 32.00129
+ -67.3177546,
+ 45.253442
],
[
- -114.0116894,
- 30.9862401
+ -67.3177546,
+ 45.1898369
],
[
- -105.998294,
- 30.9896679
+ -67.370749,
+ 45.1898369
],
[
- -105.9971419,
- 28.9901065
+ -67.370749,
+ 45.2534001
],
[
- -102.0210506,
- 28.9918418
+ -67.4326888,
+ 45.2534001
],
[
- -102.0204916,
- 28.00733
+ -67.4326888,
+ 45.3083409
],
[
- -100.0062436,
- 28.0082173
+ -67.3708571,
+ 45.3083409
],
[
- -100.0051143,
- 25.991909
+ -67.3708571,
+ 45.4396986
],
[
- -98.0109067,
- 25.9928035
+ -67.4305573,
+ 45.4396986
],
[
- -98.0103613,
- 25.0063461
+ -67.4305573,
+ 45.4950095
],
[
- -97.0161086,
- 25.0067957
+ -67.37099,
+ 45.4950095
],
[
- -97.016654,
- 25.9932494
+ -67.37099,
+ 45.6264543
],
[
- -95.9824825,
- 25.9937132
+ -67.6214982,
+ 45.6264543
],
[
- -95.9835999,
- 27.9891175
+ -67.6214982,
+ 45.6896133
],
[
- -94.0200898,
- 27.9899826
+ -67.683828,
+ 45.6896133
],
[
- -94.0206586,
- 28.9918129
+ -67.683828,
+ 45.753259
],
[
- -88.0156706,
- 28.9944338
+ -67.7462097,
+ 45.753259
],
[
- -88.0162494,
- 30.0038862
+ -67.7462097,
+ 47.1268165
],
[
- -86.0277506,
- 30.0047454
+ -67.8700141,
+ 47.1268165
],
[
- -86.0271719,
- 28.9953016
+ -67.8700141,
+ 47.1900278
],
[
- -84.0187909,
- 28.9961781
+ -67.9323803,
+ 47.1900278
],
[
- -84.017095,
- 25.9817708
+ -67.9323803,
+ 47.2539678
],
[
- -81.9971976,
- 25.9826768
+ -67.9959387,
+ 47.2539678
],
[
- -81.9966618,
- 25.0134917
+ -67.9959387,
+ 47.3149737
],
[
- -84.0165592,
- 25.0125783
+ -68.1206676,
+ 47.3149737
],
[
- -84.0160068,
- 24.0052745
+ -68.1206676,
+ 47.3780823
],
[
- -80.0199985,
- 24.007096
+ -68.4423175,
+ 47.3780823
],
[
- -80.0245309,
- 32.0161282
+ -68.4423175,
+ 47.3166082
],
[
- -78.0066484,
- 32.0169819
+ -68.6314305,
+ 47.3166082
],
[
- -78.0072238,
- 32.9894278
+ -68.6314305,
+ 47.2544676
],
[
- -77.8807233,
- 32.9894807
+ -68.9978037,
+ 47.2544676
],
[
- -77.8813253,
- 33.9955918
+ -68.9978037,
+ 47.439895
],
[
- -76.0115411,
- 33.9963653
+ -69.0607223,
+ 47.439895
],
[
- -76.0121459,
- 34.9952552
+ -69.0607223,
+ 47.5047558
],
[
- -74.0068449,
- 34.9960749
+ -69.2538122,
+ 47.5047558
],
[
- -74.0099997,
- 40.0084254
+ -69.2538122,
+ 47.4398084
],
[
- -72.0013745,
- 40.0091931
+ -69.3179284,
+ 47.4398084
],
[
- -72.002019,
- 40.9912464
+ -69.3179284,
+ 47.378601
],
[
- -69.8797398,
- 40.9920457
+ -69.4438546,
+ 47.378601
],
[
- -69.8804173,
- 42.00893
+ -69.4438546,
+ 47.3156274
],
[
- -69.9927682,
- 42.0088883
+ -69.5038204,
+ 47.3156274
],
[
- -69.9934462,
- 43.0105166
+ -69.5038204,
+ 47.2525839
],
[
- -67.9845366,
- 43.0112496
+ -69.5667838,
+ 47.2525839
],
[
- -67.985224,
- 44.0103812
+ -69.5667838,
+ 47.1910884
],
[
- -65.9892568,
- 44.0110975
+ -69.6303478,
+ 47.1910884
],
[
- -65.9921237,
- 47.9993584
+ -69.6303478,
+ 47.128701
],
[
- -70.006442,
- 47.9980181
+ -69.6933103,
+ 47.128701
],
[
- -70.005708,
- 47.0042007
+ -69.6933103,
+ 47.0654307
],
[
- -72.023686,
- 47.003514
+ -69.7557063,
+ 47.0654307
],
[
- -72.0222508,
- 45.0059846
+ -69.7557063,
+ 47.0042751
],
[
- -78.0146667,
- 45.0038705
+ -69.8180391,
+ 47.0042751
],
[
- -78.0139662,
- 44.0026998
+ -69.8180391,
+ 46.9415344
],
[
- -80.029686,
- 44.0019763
+ -69.8804023,
+ 46.9415344
],
[
- -80.0290052,
- 43.0122994
+ -69.8804023,
+ 46.8792519
],
[
- -81.995479,
- 43.011582
+ -69.9421674,
+ 46.8792519
],
[
- -81.9982986,
- 47.0042713
+ -69.9421674,
+ 46.8177399
],
[
- -87.505706,
- 47.0023972
+ -70.0063088,
+ 46.8177399
],
[
- -87.5064535,
- 48.0142702
+ -70.0063088,
+ 46.6920295
],
[
- -88.0260889,
- 48.0140968
+ -70.0704265,
+ 46.6920295
],
[
- -88.026838,
- 49.0086686
+ -70.0704265,
+ 46.4425926
],
[
- -93.9981078,
- 49.0067142
+ -70.1945902,
+ 46.4425926
],
[
- -93.9988778,
- 50.0086456
+ -70.1945902,
+ 46.3785887
],
[
- -96.0138899,
- 50.0079995
+ -70.2562047,
+ 46.3785887
],
[
- -96.0131199,
- 49.0060547
- ]
- ],
- [
- [
- -160.5787616,
- 22.5062947
+ -70.2562047,
+ 46.3152628
],
[
- -160.5782192,
- 21.4984647
+ -70.3203651,
+ 46.3152628
],
[
- -159.0030121,
- 21.499196
+ -70.3203651,
+ 46.0651209
],
[
- -159.0027422,
- 20.9951068
+ -70.3814988,
+ 46.0651209
],
[
- -157.5083185,
- 20.995803
+ -70.3814988,
+ 45.93552
],
[
- -157.5080519,
- 20.4960241
+ -70.3201618,
+ 45.93552
],
[
- -155.966889,
- 20.4967444
+ -70.3201618,
+ 45.879479
],
[
- -155.9674267,
- 21.5028287
+ -70.4493131,
+ 45.879479
],
[
- -157.5044717,
- 21.5021151
+ -70.4493131,
+ 45.7538713
],
[
- -157.5047384,
- 21.9984962
+ -70.5070021,
+ 45.7538713
],
[
- -159.0090946,
- 21.9978002
+ -70.5070021,
+ 45.6916912
],
[
- -159.0093692,
- 22.5070181
- ]
- ],
- [
- [
- -168.006102,
- 68.9941463
+ -70.6316642,
+ 45.6916912
],
[
- -168.0047628,
- 68.0107853
+ -70.6316642,
+ 45.6291619
],
[
- -165.4842481,
- 68.0112562
+ -70.7575538,
+ 45.6291619
],
[
- -165.4829337,
- 67.0037303
+ -70.7575538,
+ 45.4414685
],
[
- -168.0034485,
- 67.0032389
+ -70.8809878,
+ 45.4414685
],
[
- -168.002195,
- 66.0017503
+ -70.8809878,
+ 45.3780612
],
[
- -169.0087448,
- 66.001546
+ -71.13328,
+ 45.3780612
],
[
- -169.0075381,
- 64.9987675
+ -71.13328,
+ 45.3151452
],
[
- -168.0009882,
- 64.9989798
+ -71.3830282,
+ 45.3151452
],
[
- -167.9998282,
- 63.9982374
+ -71.3830282,
+ 45.253416
],
[
- -164.9871288,
- 63.9988964
+ -71.5076448,
+ 45.253416
],
[
- -164.9860062,
- 62.9950845
+ -71.5076448,
+ 45.0655726
],
[
- -167.9987057,
- 62.9944019
+ -73.9418929,
+ 45.0655726
],
[
- -167.9946035,
- 59.0153692
+ -73.9418929,
+ 45.0031242
],
[
- -162.5027857,
- 59.0167799
+ -74.7469725,
+ 45.0031242
],
[
- -162.5018149,
- 58.0005815
+ -74.7469725,
+ 45.0649003
],
[
- -160.0159024,
- 58.0012389
+ -74.8800964,
+ 45.0649003
],
[
- -160.0149725,
- 57.000035
+ -74.8800964,
+ 45.0029023
],
[
- -160.5054788,
- 56.9999017
+ -75.0662455,
+ 45.0029023
],
[
- -160.5045719,
- 55.9968161
+ -75.0662455,
+ 44.9415167
],
[
- -164.012195,
- 55.9958373
+ -75.2539363,
+ 44.9415167
],
[
- -164.0113186,
- 55.00107
+ -75.2539363,
+ 44.8776043
],
[
- -165.994782,
- 55.0005023
+ -75.3789648,
+ 44.8776043
],
[
- -165.9941266,
- 54.2400584
+ -75.3789648,
+ 44.8153462
],
[
- -168.0002944,
- 54.2394734
+ -75.4431283,
+ 44.8153462
],
[
- -168.0000986,
- 54.0094921
+ -75.4431283,
+ 44.7536053
],
[
- -170.0156134,
- 54.0089011
+ -75.5666566,
+ 44.7536053
],
[
- -170.0147683,
- 53.0016446
+ -75.5666566,
+ 44.6909879
],
[
- -171.9993636,
- 53.0010487
+ -75.6290205,
+ 44.6909879
],
[
- -171.9989488,
- 52.4977745
+ -75.6290205,
+ 44.6284958
],
[
- -176.0083239,
- 52.4965566
+ -75.7540484,
+ 44.6284958
],
[
- -176.0081186,
- 52.2452555
+ -75.7540484,
+ 44.566385
],
[
- -178.000097,
- 52.2446469
+ -75.817312,
+ 44.566385
],
[
- -177.9992996,
- 51.2554252
+ -75.817312,
+ 44.5028932
],
[
- -176.0073212,
- 51.2560472
+ -75.8799549,
+ 44.5028932
],
[
- -176.0075146,
- 51.4980163
+ -75.8799549,
+ 44.3784946
],
[
- -171.9981395,
- 51.4992617
+ -76.1300319,
+ 44.3784946
],
[
- -171.9985419,
- 51.9985373
+ -76.1300319,
+ 44.3159227
],
[
- -167.9984317,
- 51.9997661
+ -76.1926961,
+ 44.3159227
],
[
- -167.9994645,
- 53.2560877
+ -76.1926961,
+ 44.2534378
],
[
- -165.9932968,
- 53.2566866
+ -76.3182619,
+ 44.2534378
],
[
- -165.9939308,
- 54.0100804
+ -76.3182619,
+ 44.1916726
],
[
- -159.0067205,
- 54.0121291
+ -76.3792975,
+ 44.1916726
],
[
- -159.0075717,
- 55.002502
+ -76.3792975,
+ 44.0653733
],
[
- -158.0190709,
- 55.0027849
+ -76.4427584,
+ 44.0653733
],
[
- -158.0199473,
- 55.9975094
+ -76.4427584,
+ 43.9963825
],
[
- -151.9963213,
- 55.9991902
+ -76.317027,
+ 43.9963825
],
[
- -151.9981536,
- 57.9986536
+ -76.317027,
+ 43.9414581
],
[
- -151.500341,
- 57.9987853
+ -76.5076611,
+ 43.9414581
],
[
- -151.5012894,
- 58.9919816
+ -76.5076611,
+ 43.8723335
],
[
- -138.5159989,
- 58.9953194
+ -76.3829974,
+ 43.8723335
],
[
- -138.5150471,
- 57.9986434
+ -76.3829974,
+ 43.8091872
],
[
- -136.6872422,
- 57.9991267
+ -76.2534102,
+ 43.8091872
],
[
- -136.6863158,
- 57.0016688
+ -76.2534102,
+ 43.5665222
],
[
- -135.9973698,
- 57.001856
+ -76.5064833,
+ 43.5665222
],
[
- -135.9964667,
- 56.0030544
+ -76.5064833,
+ 43.5033881
],
[
- -134.6717732,
- 56.003424
+ -76.6331208,
+ 43.5033881
],
[
- -134.6708865,
- 54.9969623
+ -76.6331208,
+ 43.4432252
],
[
- -133.9956734,
- 54.9971556
+ -76.6951085,
+ 43.4432252
],
[
- -133.9948193,
- 54.0031685
+ -76.6951085,
+ 43.3786858
],
[
- -130.0044418,
- 54.0043387
+ -76.8177798,
+ 43.3786858
],
[
- -130.0070826,
- 57.0000507
+ -76.8177798,
+ 43.318066
],
[
- -131.975877,
- 56.9995156
+ -77.682,
+ 43.318066
],
[
- -131.9787378,
- 59.9933094
+ -77.682,
+ 43.3789376
],
[
- -138.0071813,
- 59.991805
+ -78.0565883,
+ 43.3789376
],
[
- -138.0082158,
- 61.0125755
+ -78.0565883,
+ 43.4396918
],
[
- -140.9874011,
- 61.0118551
+ -78.4389748,
+ 43.4396918
],
[
- -140.99984,
- 71.0039309
+ -78.4389748,
+ 43.3794382
],
[
- -154.5023956,
- 71.0017377
+ -78.8803396,
+ 43.3794382
],
[
- -154.5039632,
- 71.9983391
+ -78.8803396,
+ 43.3149724
],
[
- -157.499048,
- 71.9978773
+ -79.1298858,
+ 43.3149724
],
[
- -157.4974758,
- 70.9982877
+ -79.1298858,
+ 43.2429286
],
[
- -163.0233611,
- 70.9973899
+ -79.0669615,
+ 43.2429286
],
[
- -163.0218273,
- 69.9707435
+ -79.0669615,
+ 43.1299931
],
[
- -164.9730896,
- 69.97041
+ -79.1298858,
+ 43.1299931
],
[
- -164.9717003,
- 68.994689
- ]
- ],
- [
- [
- -168.5133204,
- 62.8689586
+ -79.1298858,
+ 43.0577305
],
[
- -168.5144423,
- 63.8765677
+ -79.071264,
+ 43.0577305
],
[
- -172.0202755,
- 63.8757975
+ -79.071264,
+ 42.9294906
],
[
- -172.0191536,
- 62.8681608
- ]
- ],
- [
- [
- -170.9947111,
- 59.9954089
+ -78.943264,
+ 42.9294906
],
[
- -170.995726,
- 60.9969787
+ -78.943264,
+ 42.7542165
],
[
- -174.0045311,
- 60.9962508
+ -79.069439,
+ 42.7542165
],
[
- -174.0035162,
- 59.9946581
- ]
- ],
- [
- [
- -156.0717261,
- 20.2854602
+ -79.069439,
+ 42.6941622
],
[
- -154.7940471,
- 20.2860582
+ -79.133439,
+ 42.6941622
],
[
- -154.7933145,
- 18.9029464
+ -79.133439,
+ 42.6296973
],
[
- -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": [
- [
+ -79.1947499,
+ 42.6296973
+ ],
[
- 8.3743941,
- 54.9551655
+ -79.1947499,
+ 42.5663538
],
[
- 8.3683809,
- 55.4042149
+ -79.3786827,
+ 42.5663538
],
[
- 8.2103997,
- 55.4039795
+ -79.3786827,
+ 42.5033425
],
[
- 8.2087314,
- 55.4937345
+ -79.4442961,
+ 42.5033425
],
[
- 8.0502655,
- 55.4924731
+ -79.4442961,
+ 42.4410614
],
[
- 8.0185123,
- 56.7501399
+ -79.5679936,
+ 42.4410614
],
[
- 8.1819161,
- 56.7509948
+ -79.5679936,
+ 42.3775264
],
[
- 8.1763274,
- 57.0208898
+ -79.6906154,
+ 42.3775264
],
[
- 8.3413329,
- 57.0219872
+ -79.6906154,
+ 42.3171086
],
[
- 8.3392467,
- 57.1119574
+ -79.8164642,
+ 42.3171086
],
[
- 8.5054433,
- 57.1123212
+ -79.8164642,
+ 42.2534481
],
[
- 8.5033923,
- 57.2020499
+ -80.0052373,
+ 42.2534481
],
[
- 9.3316304,
- 57.2027636
+ -80.0052373,
+ 42.1909188
],
[
- 9.3319079,
- 57.2924835
+ -80.1916829,
+ 42.1909188
],
[
- 9.4978864,
- 57.2919578
+ -80.1916829,
+ 42.1272555
],
[
- 9.4988593,
- 57.3820608
+ -80.3167992,
+ 42.1272555
],
[
- 9.6649749,
- 57.3811615
+ -80.3167992,
+ 42.0669857
],
[
- 9.6687295,
- 57.5605591
+ -80.5063234,
+ 42.0669857
],
[
- 9.8351961,
- 57.5596265
+ -80.5063234,
+ 42.0034331
],
[
- 9.8374896,
- 57.6493322
+ -80.6930471,
+ 42.0034331
],
[
- 10.1725726,
- 57.6462818
+ -80.6930471,
+ 41.9415141
],
[
- 10.1754245,
- 57.7367768
+ -80.9440403,
+ 41.9415141
],
[
- 10.5118282,
- 57.7330269
+ -80.9440403,
+ 41.8781193
],
[
- 10.5152095,
- 57.8228945
+ -81.1942729,
+ 41.8781193
],
[
- 10.6834853,
- 57.8207722
+ -81.1942729,
+ 41.8166455
],
[
- 10.6751613,
- 57.6412021
+ -81.3190089,
+ 41.8166455
],
[
- 10.5077045,
- 57.6433097
+ -81.3190089,
+ 41.7545453
],
[
- 10.5039992,
- 57.5535088
+ -81.4418435,
+ 41.7545453
],
[
- 10.671038,
- 57.5514113
+ -81.4418435,
+ 41.690965
],
[
- 10.6507805,
- 57.1024538
+ -81.5053523,
+ 41.690965
],
[
- 10.4857673,
- 57.1045138
+ -81.5053523,
+ 41.6301643
],
[
- 10.4786236,
- 56.9249051
+ -82.7470081,
+ 41.6301643
],
[
- 10.3143981,
- 56.9267573
+ -82.7470081,
+ 41.7536942
],
[
- 10.3112341,
- 56.8369269
+ -82.8839135,
+ 41.7536942
],
[
- 10.4750295,
- 56.83509
+ -82.8839135,
+ 41.5656075
],
[
- 10.4649016,
- 56.5656681
+ -82.9957195,
+ 41.5656075
],
[
- 10.9524239,
- 56.5589761
+ -82.9957195,
+ 41.6270375
],
[
- 10.9479249,
- 56.4692243
+ -83.1257796,
+ 41.6270375
],
[
- 11.1099335,
- 56.4664675
+ -83.1257796,
+ 41.6878411
],
[
- 11.1052639,
- 56.376833
+ -83.2474733,
+ 41.6878411
],
[
- 10.9429901,
- 56.3795284
+ -83.2474733,
+ 41.7536942
],
[
- 10.9341235,
- 56.1994768
+ -83.3737305,
+ 41.7536942
],
[
- 10.7719685,
- 56.2020244
+ -83.3737305,
+ 41.809276
],
[
- 10.7694751,
- 56.1120103
+ -83.3106019,
+ 41.809276
],
[
- 10.6079695,
- 56.1150259
+ -83.3106019,
+ 41.8716064
],
[
- 10.4466742,
- 56.116717
+ -83.2474733,
+ 41.8716064
],
[
- 10.2865948,
- 56.118675
+ -83.2474733,
+ 41.9361393
],
[
- 10.2831527,
- 56.0281851
+ -83.1843447,
+ 41.9361393
],
[
- 10.4439274,
- 56.0270388
+ -83.1843447,
+ 41.9960851
],
[
- 10.4417713,
- 55.7579243
+ -83.1207681,
+ 41.9960851
],
[
- 10.4334961,
- 55.6693533
+ -83.1207681,
+ 42.2464812
],
[
- 10.743814,
- 55.6646861
+ -83.0589194,
+ 42.2464812
],
[
- 10.743814,
- 55.5712253
+ -83.0589194,
+ 42.3089555
],
[
- 10.8969041,
- 55.5712253
+ -82.8685328,
+ 42.3089555
],
[
- 10.9051793,
- 55.3953852
+ -82.8685328,
+ 42.3717652
],
[
- 11.0613726,
- 55.3812841
+ -82.8072219,
+ 42.3717652
],
[
- 11.0593038,
- 55.1124061
+ -82.8072219,
+ 42.558553
],
[
- 11.0458567,
- 55.0318621
+ -82.7553745,
+ 42.558553
],
[
- 11.2030844,
- 55.0247474
+ -82.7553745,
+ 42.4954945
],
[
- 11.2030844,
- 55.117139
+ -82.5599041,
+ 42.4954945
],
[
- 11.0593038,
- 55.1124061
+ -82.5599041,
+ 42.558553
],
[
- 11.0613726,
- 55.3812841
+ -82.4967755,
+ 42.558553
],
[
- 11.0789572,
- 55.5712253
+ -82.4967755,
+ 42.6833607
],
[
- 10.8969041,
- 55.5712253
+ -82.4328863,
+ 42.6833607
],
[
- 10.9258671,
- 55.6670198
+ -82.4328863,
+ 42.9342196
],
[
- 10.743814,
- 55.6646861
+ -82.3700552,
+ 42.9342196
],
[
- 10.7562267,
- 55.7579243
+ -82.3700552,
+ 43.0648071
],
[
- 10.4417713,
- 55.7579243
+ -82.4328863,
+ 43.0648071
],
[
- 10.4439274,
- 56.0270388
+ -82.4328863,
+ 43.1917566
],
[
- 10.4466742,
- 56.116717
+ -82.4947464,
+ 43.1917566
],
[
- 10.6079695,
- 56.1150259
+ -82.4947464,
+ 43.5034627
],
[
- 10.6052053,
- 56.0247462
+ -82.557133,
+ 43.5034627
],
[
- 10.9258671,
- 56.0201215
+ -82.557133,
+ 43.8160901
],
[
- 10.9197132,
- 55.9309388
+ -82.6197884,
+ 43.8160901
],
[
- 11.0802782,
- 55.92792
+ -82.6197884,
+ 43.9422098
],
[
- 11.0858066,
- 56.0178284
+ -82.6839499,
+ 43.9422098
],
[
- 11.7265047,
- 56.005058
+ -82.6839499,
+ 44.0022641
],
[
- 11.7319981,
- 56.0952142
+ -82.7465346,
+ 44.0022641
],
[
- 12.0540333,
- 56.0871256
+ -82.7465346,
+ 44.0670545
],
[
- 12.0608477,
- 56.1762576
+ -82.8708696,
+ 44.0670545
],
[
- 12.7023469,
- 56.1594405
+ -82.8708696,
+ 44.1291935
],
[
- 12.6611131,
- 55.7114318
+ -83.008517,
+ 44.1291935
],
[
- 12.9792318,
- 55.7014026
+ -83.008517,
+ 44.0664786
],
[
- 12.9612912,
- 55.5217294
+ -83.1336086,
+ 44.0664786
],
[
- 12.3268659,
- 55.5412096
+ -83.1336086,
+ 44.0053949
],
[
- 12.3206071,
- 55.4513655
+ -83.2414522,
+ 44.0053949
],
[
- 12.4778226,
- 55.447067
+ -83.2414522,
+ 44.9962034
],
[
- 12.4702432,
- 55.3570479
+ -83.1806112,
+ 44.9962034
],
[
- 12.6269738,
- 55.3523837
+ -83.1806112,
+ 45.067302
],
[
- 12.6200898,
- 55.2632576
+ -83.2455172,
+ 45.067302
],
[
- 12.4627339,
- 55.26722
+ -83.2455172,
+ 45.1287382
],
[
- 12.4552949,
- 55.1778223
+ -83.3065878,
+ 45.1287382
],
[
- 12.2987046,
- 55.1822303
+ -83.3065878,
+ 45.2551509
],
[
- 12.2897344,
- 55.0923641
+ -83.3706087,
+ 45.2551509
],
[
- 12.6048608,
- 55.0832904
+ -83.3706087,
+ 45.3165923
],
[
- 12.5872011,
- 54.9036285
+ -83.4325644,
+ 45.3165923
],
[
- 12.2766618,
- 54.9119031
+ -83.4325644,
+ 45.3792105
],
[
- 12.2610181,
- 54.7331602
+ -83.6178415,
+ 45.3792105
],
[
- 12.1070691,
- 54.7378161
+ -83.6178415,
+ 45.4419665
],
[
- 12.0858621,
- 54.4681655
+ -83.8084291,
+ 45.4419665
],
[
- 11.7794953,
- 54.4753579
+ -83.8084291,
+ 45.5036189
],
[
- 11.7837381,
- 54.5654783
+ -84.0550718,
+ 45.5036189
],
[
- 11.1658525,
- 54.5782155
+ -84.0550718,
+ 45.5647907
],
[
- 11.1706443,
- 54.6686508
+ -84.1235181,
+ 45.5647907
],
[
- 10.8617173,
- 54.6733956
+ -84.1235181,
+ 45.6287845
],
[
- 10.8651245,
- 54.7634667
+ -84.1807534,
+ 45.6287845
],
[
- 10.7713646,
- 54.7643888
+ -84.1807534,
+ 45.6914688
],
[
- 10.7707276,
- 54.7372807
+ -84.3111554,
+ 45.6914688
],
[
- 10.7551428,
- 54.7375776
+ -84.3111554,
+ 45.9337076
],
[
- 10.7544039,
- 54.7195666
+ -83.8209974,
+ 45.9337076
],
[
- 10.7389074,
- 54.7197588
+ -83.8209974,
+ 45.8725113
],
[
- 10.7384368,
- 54.7108482
+ -83.4968086,
+ 45.8725113
],
[
- 10.7074486,
- 54.7113045
+ -83.4968086,
+ 45.9337076
],
[
- 10.7041094,
- 54.6756741
+ -83.4338066,
+ 45.9337076
],
[
- 10.5510973,
- 54.6781698
+ -83.4338066,
+ 46.0016863
],
[
- 10.5547184,
- 54.7670245
+ -83.4962697,
+ 46.0016863
],
[
- 10.2423994,
- 54.7705935
+ -83.4962697,
+ 46.0668178
],
[
- 10.2459845,
- 54.8604673
+ -83.5599956,
+ 46.0668178
],
[
- 10.0902268,
- 54.8622134
+ -83.5599956,
+ 46.1261576
],
[
- 10.0873731,
- 54.7723851
+ -83.9954558,
+ 46.1261576
],
[
- 9.1555798,
- 54.7769557
+ -83.9954558,
+ 46.1931747
],
[
- 9.1562752,
- 54.8675369
+ -84.0591816,
+ 46.1931747
],
[
- 8.5321973,
- 54.8663765
+ -84.0591816,
+ 46.3814972
],
[
- 8.531432,
- 54.95516
- ]
- ],
- [
+ -84.1152614,
+ 46.3814972
+ ],
[
- 11.4577738,
- 56.819554
+ -84.1152614,
+ 46.4953584
],
[
- 11.7849181,
- 56.8127385
+ -84.0591816,
+ 46.4953584
],
[
- 11.7716715,
- 56.6332796
+ -84.0591816,
+ 46.5682653
],
[
- 11.4459621,
- 56.6401087
- ]
- ],
- [
+ -84.2579545,
+ 46.5682653
+ ],
[
- 11.3274736,
- 57.3612962
+ -84.2579545,
+ 46.5051232
],
[
- 11.3161808,
- 57.1818004
+ -84.3071879,
+ 46.5051232
],
[
- 11.1508692,
- 57.1847276
+ -84.3071879,
+ 46.5682653
],
[
- 11.1456628,
- 57.094962
+ -84.4415364,
+ 46.5682653
],
[
- 10.8157703,
- 57.1001693
+ -84.4415364,
+ 46.504525
],
[
- 10.8290599,
- 57.3695272
- ]
- ],
- [
+ -84.9965729,
+ 46.504525
+ ],
[
- 11.5843266,
- 56.2777928
+ -84.9965729,
+ 46.6842882
],
[
- 11.5782882,
- 56.1880397
+ -84.9298158,
+ 46.6842882
],
[
- 11.7392309,
- 56.1845765
+ -84.9298158,
+ 46.818077
],
[
- 11.7456428,
- 56.2743186
- ]
- ],
- [
+ -85.3165894,
+ 46.818077
+ ],
[
- 14.6825922,
- 55.3639405
+ -85.3165894,
+ 46.7535825
],
[
- 14.8395247,
- 55.3565231
+ -87.5562645,
+ 46.7535825
],
[
- 14.8263755,
- 55.2671261
+ -87.5562645,
+ 47.4407371
],
[
- 15.1393406,
- 55.2517359
+ -87.6825361,
+ 47.4407371
],
[
- 15.1532015,
- 55.3410836
+ -87.6825361,
+ 47.5035554
],
[
- 15.309925,
- 55.3330556
+ -88.2560738,
+ 47.5035554
],
[
- 15.295719,
- 55.2437356
+ -88.2560738,
+ 47.4433716
],
[
- 15.1393406,
- 55.2517359
+ -88.4417419,
+ 47.4433716
],
[
- 15.1255631,
- 55.1623802
+ -88.4417419,
+ 47.3789949
],
[
- 15.2815819,
- 55.1544167
+ -88.50683,
+ 47.3789949
],
[
- 15.2535578,
- 54.9757646
+ -88.50683,
+ 47.3153881
],
[
- 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
+ -88.6312821,
+ 47.3153881
],
[
- 16.17,
- 48.33
+ -88.6312821,
+ 47.2539782
],
[
- 16.58,
- 48.33
+ -88.7569636,
+ 47.2539782
],
[
- 16.58,
- 48.1
+ -88.7569636,
+ 47.1934682
],
[
- 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
+ -88.8838253,
+ 47.1934682
],
[
- 16.17,
- 48.33
+ -88.8838253,
+ 47.1284735
],
[
- 16.58,
- 48.33
+ -88.9434208,
+ 47.1284735
],
[
- 16.58,
- 48.1
+ -88.9434208,
+ 47.0662127
],
[
- 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
+ -89.0708726,
+ 47.0662127
],
[
- 16.17,
- 48.33
+ -89.0708726,
+ 47.0026826
],
[
- 16.58,
- 48.33
+ -89.2565553,
+ 47.0026826
],
[
- 16.58,
- 48.1
+ -89.2565553,
+ 46.9410806
],
[
- 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
+ -90.3677669,
+ 46.9410806
],
[
- 16.283417,
- 46.9929304
+ -90.3677669,
+ 47.6844827
],
[
- 16.135839,
- 46.8713046
+ -90.3069978,
+ 47.6844827
],
[
- 15.9831722,
- 46.8190947
+ -90.3069978,
+ 47.7460174
],
[
- 16.0493278,
- 46.655175
+ -89.994859,
+ 47.7460174
],
[
- 15.8610387,
- 46.7180116
+ -89.994859,
+ 47.8082719
],
[
- 15.7592608,
- 46.6900933
+ -89.8048615,
+ 47.8082719
],
[
- 15.5607938,
- 46.6796202
+ -89.8048615,
+ 47.8700562
],
[
- 15.5760605,
- 46.6342132
+ -89.6797699,
+ 47.8700562
],
[
- 15.4793715,
- 46.6027553
+ -89.6797699,
+ 47.9339637
],
[
- 15.4335715,
- 46.6516819
+ -89.4933757,
+ 47.9339637
],
[
- 15.2249267,
- 46.6342132
+ -89.4933757,
+ 47.9957956
],
[
- 15.0468154,
- 46.6481886
+ -89.4284697,
+ 47.9957956
],
[
- 14.9908376,
- 46.5887681
+ -89.4284697,
+ 48.0656377
],
[
- 14.9603042,
- 46.6237293
+ -89.9932739,
+ 48.0656377
],
[
- 14.8534374,
- 46.6027553
+ -89.9932739,
+ 48.1282966
],
[
- 14.8330818,
- 46.5012666
+ -90.7455933,
+ 48.1282966
],
[
- 14.7516595,
- 46.4977636
+ -90.7455933,
+ 48.1893056
],
[
- 14.6804149,
- 46.4381781
+ -90.8087291,
+ 48.1893056
],
[
- 14.6142593,
- 46.4381781
+ -90.8087291,
+ 48.2522065
],
[
- 14.578637,
- 46.3785275
+ -91.067763,
+ 48.2522065
],
[
- 14.4412369,
- 46.4311638
+ -91.067763,
+ 48.1916658
],
[
- 14.1613476,
- 46.4276563
+ -91.1946247,
+ 48.1916658
],
[
- 14.1257253,
- 46.4767409
+ -91.1946247,
+ 48.1279027
],
[
- 14.0188585,
- 46.4767409
+ -91.6814196,
+ 48.1279027
],
[
- 13.9119917,
- 46.5257813
+ -91.6814196,
+ 48.2525994
],
[
- 13.8254805,
- 46.5047694
+ -91.9321927,
+ 48.2525994
],
[
- 13.4438134,
- 46.560783
+ -91.9321927,
+ 48.3142454
],
[
- 13.3064132,
- 46.5502848
+ -91.9929683,
+ 48.3142454
],
[
- 13.1283019,
- 46.5887681
+ -91.9929683,
+ 48.3780845
],
[
- 12.8433237,
- 46.6132433
+ -92.3189383,
+ 48.3780845
],
[
- 12.7262791,
- 46.6412014
+ -92.3189383,
+ 48.2529081
],
[
- 12.5125455,
- 46.6656529
+ -92.3732233,
+ 48.2529081
],
[
- 12.3598787,
- 46.7040543
+ -92.3732233,
+ 48.3153385
],
[
- 12.3649676,
- 46.7703197
+ -92.4322288,
+ 48.3153385
],
[
- 12.2886341,
- 46.7772902
+ -92.4322288,
+ 48.4411448
],
[
- 12.2733674,
- 46.8852187
+ -92.4977248,
+ 48.4411448
],
[
- 12.2072118,
- 46.8747835
+ -92.4977248,
+ 48.501781
],
[
- 12.1308784,
- 46.9026062
+ -92.5679413,
+ 48.501781
],
[
- 12.1156117,
- 46.9998721
+ -92.5679413,
+ 48.439579
],
[
- 12.2530119,
- 47.0657733
+ -92.6210462,
+ 48.439579
],
[
- 12.2123007,
- 47.0934969
+ -92.6210462,
+ 48.5650783
],
[
- 11.9833004,
- 47.0449712
+ -92.8086835,
+ 48.5650783
],
[
- 11.7339445,
- 46.9616816
+ -92.8086835,
+ 48.6286865
],
[
- 11.6321666,
- 47.010283
+ -92.8086835,
+ 48.6267365
],
[
- 11.5405665,
- 46.9755722
+ -92.933185,
+ 48.6267365
],
[
- 11.4998553,
- 47.0068129
+ -92.933185,
+ 48.6922145
],
[
- 11.418433,
- 46.9651546
+ -93.0051716,
+ 48.6922145
],
[
- 11.2555884,
- 46.9755722
+ -93.0051716,
+ 48.6282965
],
[
- 11.1130993,
- 46.913036
+ -93.1225924,
+ 48.6282965
],
[
- 11.0418548,
- 46.7633482
+ -93.1225924,
+ 48.6922145
],
[
- 10.8891879,
- 46.7598621
+ -93.3190806,
+ 48.6922145
],
[
- 10.7416099,
- 46.7842599
+ -93.3190806,
+ 48.6267365
],
[
- 10.7059877,
- 46.8643462
+ -93.5049477,
+ 48.6267365
],
[
- 10.5787653,
- 46.8399847
+ -93.5049477,
+ 48.5635164
],
[
- 10.4566318,
- 46.8504267
+ -93.7474601,
+ 48.5635164
],
[
- 10.4769874,
- 46.9269392
+ -93.7474601,
+ 48.6267365
],
[
- 10.3853873,
- 46.9894592
+ -93.8135461,
+ 48.6267365
],
[
- 10.2327204,
- 46.8643462
+ -93.8135461,
+ 48.6898775
],
[
- 10.1207647,
- 46.8330223
+ -94.2453121,
+ 48.6898775
],
[
- 9.8663199,
- 46.9408389
+ -94.2453121,
+ 48.7554327
],
[
- 9.9019422,
- 47.0033426
+ -94.6183171,
+ 48.7554327
],
[
- 9.6831197,
- 47.0588402
+ -94.6183171,
+ 48.941036
],
[
- 9.6118752,
- 47.0380354
+ -94.6809018,
+ 48.941036
],
[
- 9.6322307,
- 47.128131
+ -94.6809018,
+ 49.0029737
],
[
- 9.5813418,
- 47.1662025
+ -94.7441532,
+ 49.0029737
],
[
- 9.5406306,
- 47.2664422
+ -94.7441532,
+ 49.2536079
],
[
- 9.6067863,
- 47.3492559
+ -94.8084069,
+ 49.2536079
],
[
- 9.6729419,
- 47.369939
+ -94.8084069,
+ 49.3784134
],
[
- 9.6424085,
- 47.4457079
+ -95.1192391,
+ 49.3784134
],
[
- 9.5660751,
- 47.4801122
+ -95.1192391,
+ 49.4425264
],
[
- 9.7136531,
- 47.5282405
+ -95.1934341,
+ 49.4425264
],
[
- 9.7848976,
- 47.5969187
+ -95.1934341,
+ 49.0035292
],
[
- 9.8357866,
- 47.5454185
+ -96.87069,
+ 49.0035292
],
[
- 9.9477423,
- 47.538548
+ -96.87069,
+ 49.0656063
],
[
- 10.0902313,
- 47.4491493
+ -99.0049312,
+ 49.0656063
],
[
- 10.1105869,
- 47.3664924
+ -99.0049312,
+ 49.0050714
],
[
- 10.2428982,
- 47.3871688
+ -109.3699257,
+ 49.0050714
],
[
- 10.1869203,
- 47.2698953
+ -109.3699257,
+ 49.0668231
],
[
- 10.3243205,
- 47.2975125
+ -109.5058746,
+ 49.0668231
],
[
- 10.4820763,
- 47.4491493
+ -109.5058746,
+ 49.0050714
],
[
- 10.4311873,
- 47.4869904
+ -114.1830014,
+ 49.0050714
],
[
- 10.4413651,
- 47.5900549
+ -114.1830014,
+ 49.0687317
],
[
- 10.4871652,
- 47.5522881
+ -114.7578709,
+ 49.0687317
],
[
- 10.5482319,
- 47.5351124
+ -114.7578709,
+ 49.0050714
],
[
- 10.5991209,
- 47.5660246
+ -115.433731,
+ 49.0050714
],
[
- 10.7568766,
- 47.5316766
+ -115.433731,
+ 49.0671412
],
[
- 10.8891879,
- 47.5454185
+ -116.5062706,
+ 49.0671412
],
[
- 10.9400769,
- 47.4869904
+ -116.5062706,
+ 49.0050714
],
[
- 10.9960547,
- 47.3906141
+ -117.3089504,
+ 49.0050714
],
[
- 11.2352328,
- 47.4422662
+ -117.3089504,
+ 49.0659803
],
[
- 11.2810328,
- 47.3975039
+ -119.882945,
+ 49.0659803
],
[
- 11.4235219,
- 47.5144941
+ -119.882945,
+ 49.0050714
],
[
- 11.5761888,
- 47.5076195
+ -120.1208555,
+ 49.0050714
],
[
- 11.6067221,
- 47.5900549
+ -120.1208555,
+ 49.0678367
],
[
- 11.8357224,
- 47.5866227
+ -121.4451636,
+ 49.0678367
],
[
- 12.003656,
- 47.6243647
+ -121.4451636,
+ 49.0050714
],
[
- 12.2072118,
- 47.6037815
+ -121.9311808,
+ 49.0050714
],
[
- 12.1614117,
- 47.6963421
+ -121.9311808,
+ 49.0656099
],
[
- 12.2581008,
- 47.7442718
+ -122.817484,
+ 49.0656099
],
[
- 12.2530119,
- 47.6792136
+ -122.817484,
+ 49.0029143
],
[
- 12.4311232,
- 47.7100408
+ -122.8795155,
+ 49.0029143
],
[
- 12.4921899,
- 47.631224
+ -122.8795155,
+ 48.9347018
],
[
- 12.5685234,
- 47.6277944
+ -122.8174629,
+ 48.9347018
],
[
- 12.6295901,
- 47.6894913
+ -122.8174629,
+ 48.8101998
],
[
- 12.7720792,
- 47.6689338
+ -122.7538859,
+ 48.8101998
],
[
- 12.8331459,
- 47.5419833
+ -122.7538859,
+ 48.7533758
],
[
- 12.975635,
- 47.4732332
+ -122.8712937,
+ 48.7533758
],
[
- 13.0417906,
- 47.4938677
+ -122.8712937,
+ 48.8153948
],
[
- 13.0367017,
- 47.5557226
+ -123.0055391,
+ 48.8153948
],
[
- 13.0977685,
- 47.6415112
+ -123.0055391,
+ 48.7529529
],
[
- 13.0316128,
- 47.7100408
+ -123.1296926,
+ 48.7529529
],
[
- 12.9043905,
- 47.7203125
+ -123.1296926,
+ 48.6902201
],
[
- 13.0061684,
- 47.84683
+ -123.1838197,
+ 48.6902201
],
[
- 12.9451016,
- 47.9355501
+ -123.1838197,
+ 48.7529029
+ ]
+ ],
+ [
+ [
+ -122.9341743,
+ 37.7521547
],
[
- 12.8636793,
- 47.9594103
+ -122.9347457,
+ 37.6842013
],
[
- 12.8636793,
- 48.0036929
+ -123.0679013,
+ 37.6849023
],
[
- 12.7517236,
- 48.0989418
+ -123.0673747,
+ 37.7475251
],
[
- 12.8738571,
- 48.2109733
+ -123.1292603,
+ 37.7478506
],
[
- 12.9603683,
- 48.2109733
+ -123.1286894,
+ 37.815685
],
[
- 13.0417906,
- 48.2652035
+ -123.0590687,
+ 37.8153192
],
[
- 13.1842797,
- 48.2990682
+ -123.0595947,
+ 37.7528143
+ ]
+ ],
+ [
+ [
+ -71.6299464,
+ 41.2540893
],
[
- 13.2606131,
- 48.2922971
+ -71.4966465,
+ 41.2541393
],
[
- 13.3980133,
- 48.3565867
+ -71.4965596,
+ 41.122965
],
[
- 13.4438134,
- 48.417418
+ -71.6298594,
+ 41.1229149
+ ]
+ ],
+ [
+ [
+ -70.3184265,
+ 41.3775196
],
[
- 13.4387245,
- 48.5523383
+ -70.3183384,
+ 41.2448243
],
[
- 13.509969,
- 48.5860123
+ -70.1906612,
+ 41.2448722
],
[
- 13.6117469,
- 48.5725454
+ -70.1906239,
+ 41.1886019
],
[
- 13.7287915,
- 48.5118999
+ -69.9336025,
+ 41.1886984
],
[
- 13.7847694,
- 48.5725454
+ -69.933729,
+ 41.3791941
],
[
- 13.8203916,
- 48.6263915
+ -69.9950664,
+ 41.3791712
],
[
- 13.7949471,
- 48.7171267
+ -69.995109,
+ 41.443159
],
[
- 13.850925,
- 48.7741724
+ -70.0707828,
+ 41.4431307
],
[
- 14.0595697,
- 48.6633774
+ -70.0706972,
+ 41.3144915
],
[
- 14.0137696,
- 48.6331182
+ -70.2461667,
+ 41.3144258
],
[
- 14.0748364,
- 48.5927444
+ -70.2462087,
+ 41.3775467
+ ]
+ ],
+ [
+ [
+ -68.9403374,
+ 43.9404062
],
[
- 14.2173255,
- 48.5961101
+ -68.6856948,
+ 43.9404977
],
[
- 14.3649034,
- 48.5489696
+ -68.6856475,
+ 43.8721797
],
[
- 14.4666813,
- 48.6499311
+ -68.7465405,
+ 43.8721577
],
[
- 14.5582815,
- 48.5961101
+ -68.7464976,
+ 43.8102529
],
[
- 14.5989926,
- 48.6263915
+ -68.8090782,
+ 43.8102304
],
[
- 14.7211261,
- 48.5759124
+ -68.8090343,
+ 43.746728
],
[
- 14.7211261,
- 48.6868997
+ -68.8773094,
+ 43.7467034
],
[
- 14.822904,
- 48.7271983
+ -68.8773544,
+ 43.8117826
],
[
- 14.8178151,
- 48.777526
+ -68.9402483,
+ 43.8117599
+ ]
+ ],
+ [
+ [
+ -123.1291466,
+ 49.0645144
],
[
- 14.9647227,
- 48.7851754
+ -122.9954224,
+ 49.0645144
],
[
- 14.9893637,
- 49.0126611
+ -122.9954224,
+ 48.9343243
],
[
- 15.1485933,
- 48.9950306
+ -123.1291466,
+ 48.9343243
+ ]
+ ],
+ [
+ [
+ -82.9407144,
+ 24.7535913
],
[
- 15.1943934,
- 48.9315502
+ -82.8719398,
+ 24.7535913
],
[
- 15.3063491,
- 48.9850128
+ -82.8719398,
+ 24.6905653
],
[
- 15.3928603,
- 48.9850128
+ -82.7446233,
+ 24.6905653
],
[
- 15.4844604,
- 48.9282069
+ -82.7446233,
+ 24.6214593
],
[
- 15.749083,
- 48.8545973
+ -82.8088038,
+ 24.6214593
],
[
- 15.8406831,
- 48.8880697
+ -82.8088038,
+ 24.5594908
],
[
- 16.0086166,
- 48.7808794
+ -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
],
[
- 16.2070835,
- 48.7339115
+ -125.989419,
+ 47.9948396
],
[
- 16.3953727,
- 48.7372678
+ -123.9929739,
+ 47.9955062
],
[
- 16.4920617,
- 48.8110498
+ -123.9922429,
+ 47.0059202
],
[
- 16.6905286,
- 48.7741724
+ -125.988688,
+ 47.0052409
],
[
- 16.7057953,
- 48.7339115
+ -125.9879604,
+ 46.0015618
],
[
- 16.8991733,
- 48.713769
+ -123.9939396,
+ 46.0022529
],
[
- 16.9755067,
- 48.515271
+ -123.9925238,
+ 43.9961708
],
[
- 16.8482844,
- 48.4511817
+ -124.9931832,
+ 43.9958116
],
[
- 16.8533733,
- 48.3464411
+ -124.9918175,
+ 41.9942149
],
[
- 16.9551512,
- 48.2516513
+ -125.9851789,
+ 41.9938465
],
[
- 16.9907734,
- 48.1498955
+ -125.9838655,
+ 40.0076111
],
[
- 17.0925513,
- 48.1397088
+ -123.9833285,
+ 40.0083757
],
[
- 17.0823736,
- 48.0241182
+ -123.9814115,
+ 37.002615
],
[
- 17.1739737,
- 48.0207146
+ -122.21903,
+ 37.0033173
],
[
- 17.0823736,
- 47.8741447
+ -122.2184144,
+ 36.011671
],
[
- 16.9856845,
- 47.8673174
+ -122.020087,
+ 36.011751
],
[
- 17.0823736,
- 47.8092489
+ -122.0188591,
+ 33.9961766
],
[
- 17.0925513,
- 47.7031919
+ -119.9787757,
+ 33.9970206
],
[
- 16.7414176,
- 47.6792136
+ -119.9775867,
+ 31.9987658
],
[
- 16.7057953,
- 47.7511153
+ -114.0122833,
+ 32.00129
],
[
- 16.5378617,
- 47.7545368
+ -114.0116894,
+ 30.9862401
],
[
- 16.5480395,
- 47.7066164
+ -105.998294,
+ 30.9896679
],
[
- 16.4208172,
- 47.6689338
+ -105.9971419,
+ 28.9901065
],
[
- 16.573484,
- 47.6175045
+ -102.0210506,
+ 28.9918418
],
[
- 16.670173,
- 47.631224
+ -102.0204916,
+ 28.00733
],
[
- 16.7108842,
- 47.538548
+ -100.0062436,
+ 28.0082173
],
[
- 16.6599952,
- 47.4491493
+ -100.0051143,
+ 25.991909
],
[
- 16.5429506,
- 47.3940591
+ -98.0109067,
+ 25.9928035
],
[
- 16.4615283,
- 47.3940591
+ -98.0103613,
+ 25.0063461
],
[
- 16.4920617,
- 47.276801
+ -97.0161086,
+ 25.0067957
],
[
- 16.425906,
- 47.1973317
+ -97.016654,
+ 25.9932494
],
[
- 16.4717061,
- 47.1489007
+ -95.9824825,
+ 25.9937132
],
[
- 16.5480395,
- 47.1489007
+ -95.9835999,
+ 27.9891175
],
[
- 16.476795,
- 47.0796369
+ -94.0200898,
+ 27.9899826
],
[
- 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"
- ],
+ -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",
"presets": {
"address": {
"fields": [
- "address"
+ "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": {
- "addr:housenumber": "*"
+ "aeroway": "gate"
},
- "addTags": {},
- "removeTags": {},
- "matchScore": 0.2,
- "name": "Address"
+ "name": "Airport gate"
+ },
+ "aeroway/hangar": {
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "building_area"
+ ],
+ "tags": {
+ "aeroway": "hangar"
+ },
+ "name": "Hangar"
+ },
+ "aeroway/helipad": {
+ "icon": "heliport",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "helicopter",
+ "helipad",
+ "heliport"
+ ],
+ "tags": {
+ "aeroway": "helipad"
+ },
+ "name": "Helipad"
+ },
+ "aeroway/runway": {
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "terms": [
+ "landing strip"
+ ],
+ "fields": [
+ "ref",
+ "surface",
+ "length",
+ "width"
+ ],
+ "tags": {
+ "aeroway": "runway"
+ },
+ "name": "Runway"
+ },
+ "aeroway/taxiway": {
+ "geometry": [
+ "line"
+ ],
+ "fields": [
+ "ref",
+ "surface"
+ ],
+ "tags": {
+ "aeroway": "taxiway"
+ },
+ "name": "Taxiway"
+ },
+ "aeroway/terminal": {
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "airport",
+ "aerodrome"
+ ],
+ "fields": [
+ "operator",
+ "building_area"
+ ],
+ "tags": {
+ "aeroway": "terminal"
+ },
+ "name": "Airport terminal"
+ },
+ "amenity": {
+ "fields": [
+ "amenity"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "amenity": "*"
+ },
+ "searchable": false,
+ "name": "Amenity"
+ },
+ "amenity/arts_centre": {
+ "icon": "theatre",
+ "fields": [
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [],
+ "tags": {
+ "amenity": "arts_centre"
+ },
+ "name": "Arts Center"
+ },
+ "amenity/atm": {
+ "icon": "bank",
+ "fields": [
+ "operator"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "terms": [
+ "money",
+ "cash",
+ "machine"
+ ],
+ "tags": {
+ "amenity": "atm"
+ },
+ "name": "ATM"
+ },
+ "amenity/bank": {
+ "icon": "bank",
+ "fields": [
+ "atm",
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "credit union",
+ "check",
+ "deposit",
+ "fund",
+ "investment",
+ "repository",
+ "reserve",
+ "safe",
+ "savings",
+ "stock",
+ "treasury",
+ "trust",
+ "vault"
+ ],
+ "tags": {
+ "amenity": "bank"
+ },
+ "name": "Bank"
+ },
+ "amenity/bar": {
+ "icon": "bar",
+ "fields": [
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours",
+ "smoking"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "dive",
+ "beer",
+ "bier",
+ "booze"
+ ],
+ "tags": {
+ "amenity": "bar"
+ },
+ "name": "Bar"
+ },
+ "amenity/bbq": {
+ "fields": [
+ "covered",
+ "fuel"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "terms": [
+ "bbq"
+ ],
+ "tags": {
+ "amenity": "bbq"
+ },
+ "name": "Barbecue/Grill"
+ },
+ "amenity/bench": {
+ "fields": [
+ "backrest"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line"
+ ],
+ "tags": {
+ "amenity": "bench"
+ },
+ "name": "Bench"
+ },
+ "amenity/bicycle_parking": {
+ "icon": "bicycle",
+ "fields": [
+ "bicycle_parking",
+ "capacity",
+ "operator",
+ "covered",
+ "access_simple"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "terms": [
+ "bike"
+ ],
+ "tags": {
+ "amenity": "bicycle_parking"
+ },
+ "name": "Bicycle Parking"
+ },
+ "amenity/bicycle_rental": {
+ "icon": "bicycle",
+ "fields": [
+ "capacity",
+ "network",
+ "operator"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "terms": [
+ "bike"
+ ],
+ "tags": {
+ "amenity": "bicycle_rental"
+ },
+ "name": "Bicycle Rental"
+ },
+ "amenity/boat_rental": {
+ "fields": [
+ "operator"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "boat_rental"
+ },
+ "name": "Boat Rental"
+ },
+ "amenity/bureau_de_change": {
+ "icon": "bank",
+ "fields": [
+ "operator"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "terms": [
+ "bureau de change",
+ "money changer"
+ ],
+ "tags": {
+ "amenity": "bureau_de_change"
+ },
+ "name": "Currency Exchange"
+ },
+ "amenity/bus_station": {
+ "icon": "bus",
+ "fields": [
+ "building_area",
+ "operator"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "bus_station"
+ },
+ "name": "Bus Station"
+ },
+ "amenity/cafe": {
+ "icon": "cafe",
+ "fields": [
+ "cuisine",
+ "internet_access",
+ "address",
+ "building_area",
+ "opening_hours",
+ "smoking"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "coffee",
+ "tea"
+ ],
+ "tags": {
+ "amenity": "cafe"
+ },
+ "name": "Cafe"
+ },
+ "amenity/car_rental": {
+ "icon": "car",
+ "fields": [
+ "operator"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "car_rental"
+ },
+ "name": "Car Rental"
+ },
+ "amenity/car_sharing": {
+ "icon": "car",
+ "fields": [
+ "operator",
+ "capacity"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "car_sharing"
+ },
+ "name": "Car Sharing"
+ },
+ "amenity/car_wash": {
+ "icon": "car",
+ "fields": [
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "car_wash"
+ },
+ "name": "Car Wash"
},
- "aerialway": {
+ "amenity/charging_station": {
+ "icon": "car",
"fields": [
- "aerialway"
+ "operator"
],
"geometry": [
"point",
- "vertex",
- "line"
+ "area"
],
"tags": {
- "aerialway": "*"
+ "amenity": "charging_station"
},
"terms": [
- "ski lift",
- "funifor",
- "funitel"
+ "EV",
+ "Electric Vehicle",
+ "Supercharger"
],
- "name": "Aerialway"
+ "name": "Charging Station"
},
- "aerialway/cable_car": {
+ "amenity/childcare": {
+ "icon": "school",
+ "fields": [
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
- "line"
+ "point",
+ "area"
],
"terms": [
- "tramway",
- "ropeway"
- ],
- "fields": [
- "aerialway/occupancy",
- "aerialway/capacity",
- "aerialway/duration",
- "aerialway/heating"
+ "daycare",
+ "orphanage",
+ "playgroup"
],
"tags": {
- "aerialway": "cable_car"
+ "amenity": "childcare"
},
- "name": "Cable Car"
+ "name": "Nursery/Childcare"
},
- "aerialway/chair_lift": {
- "geometry": [
- "line"
- ],
+ "amenity/cinema": {
+ "icon": "cinema",
"fields": [
- "aerialway/occupancy",
- "aerialway/capacity",
- "aerialway/duration",
- "aerialway/bubble",
- "aerialway/heating"
+ "address",
+ "building_area",
+ "opening_hours"
],
- "tags": {
- "aerialway": "chair_lift"
- },
- "name": "Chair Lift"
- },
- "aerialway/gondola": {
"geometry": [
- "line"
+ "point",
+ "area"
],
- "fields": [
- "aerialway/occupancy",
- "aerialway/capacity",
- "aerialway/duration",
- "aerialway/bubble",
- "aerialway/heating"
+ "terms": [
+ "drive-in",
+ "film",
+ "flick",
+ "movie",
+ "theater",
+ "picture",
+ "show",
+ "screen"
],
"tags": {
- "aerialway": "gondola"
+ "amenity": "cinema"
},
- "name": "Gondola"
+ "name": "Cinema"
},
- "aerialway/magic_carpet": {
- "geometry": [
- "line"
- ],
+ "amenity/clinic": {
+ "icon": "hospital",
"fields": [
- "aerialway/capacity",
- "aerialway/duration",
- "aerialway/heating"
+ "address",
+ "building_area",
+ "opening_hours"
],
- "tags": {
- "aerialway": "magic_carpet"
- },
- "name": "Magic Carpet Lift"
- },
- "aerialway/platter": {
"geometry": [
- "line"
+ "point",
+ "area"
],
"terms": [
- "button lift",
- "poma lift"
- ],
- "fields": [
- "aerialway/capacity",
- "aerialway/duration"
+ "medical",
+ "urgentcare"
],
"tags": {
- "aerialway": "platter"
+ "amenity": "clinic"
},
- "name": "Platter Lift"
+ "name": "Clinic"
},
- "aerialway/pylon": {
+ "amenity/clock": {
"geometry": [
"point",
"vertex"
],
- "fields": [
- "ref"
- ],
"tags": {
- "aerialway": "pylon"
+ "amenity": "clock"
},
- "name": "Aerialway Pylon"
+ "name": "Clock"
},
- "aerialway/rope_tow": {
+ "amenity/college": {
+ "icon": "college",
+ "fields": [
+ "operator",
+ "address"
+ ],
"geometry": [
- "line"
+ "point",
+ "area"
],
"terms": [
- "handle tow",
- "bugel lift"
- ],
- "fields": [
- "aerialway/capacity",
- "aerialway/duration"
+ "university"
],
"tags": {
- "aerialway": "rope_tow"
+ "amenity": "college"
},
- "name": "Rope Tow Lift"
+ "name": "College Grounds"
},
- "aerialway/station": {
+ "amenity/community_centre": {
+ "icon": "town-hall",
+ "fields": [
+ "operator",
+ "address",
+ "building_area"
+ ],
"geometry": [
"point",
- "vertex"
+ "area"
],
- "fields": [
- "aerialway/access",
- "aerialway/summer/access",
- "elevation"
+ "terms": [
+ "event",
+ "hall"
],
"tags": {
- "aerialway": "station"
+ "amenity": "community_centre"
},
- "name": "Aerialway Station"
+ "name": "Community Center"
},
- "aerialway/t-bar": {
+ "amenity/compressed_air": {
+ "icon": "car",
"geometry": [
- "line"
- ],
- "fields": [
- "aerialway/capacity",
- "aerialway/duration"
+ "point",
+ "area"
],
"tags": {
- "aerialway": "t-bar"
+ "amenity": "compressed_air"
},
- "name": "T-bar Lift"
+ "name": "Compressed Air"
},
- "aeroway": {
- "icon": "airport",
+ "amenity/courthouse": {
+ "icon": "town-hall",
"fields": [
- "aeroway"
+ "operator",
+ "address",
+ "building_area"
],
"geometry": [
"point",
- "vertex",
- "line",
"area"
],
"tags": {
- "aeroway": "*"
+ "amenity": "courthouse"
},
- "name": "Aeroway"
+ "name": "Courthouse"
},
- "aeroway/aerodrome": {
- "icon": "airport",
+ "amenity/dentist": {
+ "icon": "hospital",
+ "fields": [
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
"point",
"area"
],
"terms": [
- "airplane",
- "airport",
- "aerodrome"
- ],
- "fields": [
- "ref",
- "iata",
- "icao",
- "operator"
+ "tooth",
+ "teeth"
],
"tags": {
- "aeroway": "aerodrome"
+ "amenity": "dentist"
},
- "name": "Airport"
+ "name": "Dentist"
},
- "aeroway/apron": {
- "icon": "airport",
+ "amenity/doctor": {
+ "icon": "hospital",
+ "fields": [
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
+ "point",
"area"
],
"terms": [
- "ramp"
- ],
- "fields": [
- "ref",
- "surface"
+ "medic*"
],
"tags": {
- "aeroway": "apron"
+ "amenity": "doctors"
},
- "name": "Apron"
+ "name": "Doctor"
},
- "aeroway/gate": {
- "icon": "airport",
+ "amenity/dojo": {
+ "icon": "pitch",
+ "fields": [
+ "sport",
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
- "point"
+ "point",
+ "area"
],
- "fields": [
- "ref"
+ "terms": [
+ "martial arts",
+ "dojang"
],
"tags": {
- "aeroway": "gate"
+ "amenity": "dojo"
},
- "name": "Airport gate"
+ "name": "Dojo / Martial Arts Academy"
},
- "aeroway/hangar": {
+ "amenity/drinking_water": {
+ "icon": "water",
"geometry": [
- "area"
- ],
- "fields": [
- "building_area"
+ "point"
],
"tags": {
- "aeroway": "hangar"
+ "amenity": "drinking_water"
},
- "name": "Hangar"
+ "terms": [
+ "fountain",
+ "potable"
+ ],
+ "name": "Drinking Water"
},
- "aeroway/helipad": {
- "icon": "heliport",
+ "amenity/embassy": {
+ "icon": "embassy",
+ "fields": [
+ "country",
+ "address",
+ "building_area"
+ ],
"geometry": [
"point",
"area"
],
- "terms": [
- "helicopter",
- "helipad",
- "heliport"
- ],
"tags": {
- "aeroway": "helipad"
+ "amenity": "embassy"
},
- "name": "Helipad"
+ "name": "Embassy"
},
- "aeroway/runway": {
+ "amenity/fast_food": {
+ "icon": "fast-food",
+ "fields": [
+ "cuisine",
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours",
+ "smoking"
+ ],
"geometry": [
- "line",
+ "point",
"area"
],
+ "tags": {
+ "amenity": "fast_food"
+ },
"terms": [
- "landing strip"
+ "restaurant"
],
+ "name": "Fast Food"
+ },
+ "amenity/fire_station": {
+ "icon": "fire-station",
"fields": [
- "ref",
- "surface",
- "length",
- "width"
+ "operator",
+ "address",
+ "building_area"
+ ],
+ "geometry": [
+ "point",
+ "area"
],
+ "terms": [],
"tags": {
- "aeroway": "runway"
+ "amenity": "fire_station"
},
- "name": "Runway"
+ "name": "Fire Station"
},
- "aeroway/taxiway": {
+ "amenity/fountain": {
"geometry": [
- "line"
- ],
- "fields": [
- "ref",
- "surface"
+ "point",
+ "area"
],
"tags": {
- "aeroway": "taxiway"
+ "amenity": "fountain"
},
- "name": "Taxiway"
+ "name": "Fountain"
},
- "aeroway/terminal": {
+ "amenity/fuel": {
+ "icon": "fuel",
+ "fields": [
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
"point",
"area"
],
"terms": [
- "airport",
- "aerodrome"
- ],
- "fields": [
- "operator",
- "building_area"
+ "petrol",
+ "fuel",
+ "propane",
+ "diesel",
+ "lng",
+ "cng",
+ "biodiesel"
],
"tags": {
- "aeroway": "terminal"
+ "amenity": "fuel"
},
- "name": "Airport terminal"
+ "name": "Gas Station"
},
- "amenity": {
+ "amenity/grave_yard": {
+ "icon": "cemetery",
"fields": [
- "amenity"
+ "religion",
+ "denomination"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "amenity": "*"
+ "amenity": "grave_yard"
},
- "name": "Amenity"
+ "name": "Graveyard"
},
- "amenity/arts_centre": {
- "name": "Arts Center",
+ "amenity/hospital": {
+ "icon": "hospital",
+ "fields": [
+ "operator",
+ "address",
+ "emergency"
+ ],
"geometry": [
"point",
"area"
],
"terms": [
- "arts",
- "arts centre"
+ "clinic",
+ "doctor",
+ "emergency room",
+ "health service",
+ "hospice",
+ "infirmary",
+ "institution",
+ "nursing home",
+ "sanatorium",
+ "sanitarium",
+ "sick",
+ "surgery",
+ "ward"
],
"tags": {
- "amenity": "arts_centre"
+ "amenity": "hospital"
},
- "icon": "theatre",
- "fields": [
- "building_area",
- "address"
- ]
+ "name": "Hospital Grounds"
},
- "amenity/atm": {
- "icon": "bank",
+ "amenity/kindergarten": {
+ "icon": "school",
"fields": [
- "operator"
+ "operator",
+ "address"
],
"geometry": [
"point",
- "vertex"
+ "area"
+ ],
+ "terms": [
+ "kindergarden",
+ "pre-school"
],
"tags": {
- "amenity": "atm"
+ "amenity": "kindergarten"
},
- "name": "ATM"
+ "name": "Preschool/Kindergarten Grounds"
},
- "amenity/bank": {
- "icon": "bank",
+ "amenity/library": {
+ "icon": "library",
"fields": [
- "atm",
+ "operator",
"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"
+ "book"
],
"tags": {
- "amenity": "bank"
+ "amenity": "library"
},
- "name": "Bank"
+ "name": "Library"
},
- "amenity/bar": {
- "icon": "bar",
+ "amenity/marketplace": {
"fields": [
- "building_area",
+ "operator",
"address",
- "opening_hours",
- "smoking"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "amenity": "bar"
+ "amenity": "marketplace"
},
- "terms": [],
- "name": "Bar"
+ "name": "Marketplace"
},
- "amenity/bbq": {
+ "amenity/nightclub": {
+ "icon": "bar",
+ "fields": [
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours",
+ "smoking"
+ ],
"geometry": [
- "point"
+ "point",
+ "area"
],
"tags": {
- "amenity": "bbq"
+ "amenity": "nightclub"
},
- "fields": [
- "covered",
- "fuel"
- ],
"terms": [
- "barbecue",
- "bbq",
- "grill"
+ "disco*",
+ "night club",
+ "dancing",
+ "dance club"
],
- "name": "Barbecue/Grill"
+ "name": "Nightclub"
},
- "amenity/bench": {
+ "amenity/parking": {
+ "icon": "parking",
+ "fields": [
+ "operator",
+ "parking",
+ "capacity",
+ "fee",
+ "access_simple",
+ "supervised",
+ "park_ride",
+ "address"
+ ],
"geometry": [
"point",
"vertex",
- "line"
+ "area"
],
"tags": {
- "amenity": "bench"
+ "amenity": "parking"
},
+ "terms": [],
+ "name": "Car Parking"
+ },
+ "amenity/parking_entrance": {
+ "icon": "entrance",
"fields": [
- "backrest"
+ "access_simple",
+ "ref"
],
- "name": "Bench"
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "parking_entrance"
+ },
+ "name": "Parking Garage Entrance/Exit"
},
- "amenity/bicycle_parking": {
- "icon": "bicycle",
+ "amenity/pharmacy": {
+ "icon": "pharmacy",
"fields": [
- "bicycle_parking",
- "capacity",
"operator",
- "covered",
- "access_simple"
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "amenity": "bicycle_parking"
+ "amenity": "pharmacy"
},
- "name": "Bicycle Parking"
+ "terms": [
+ "drug",
+ "medicine"
+ ],
+ "name": "Pharmacy"
},
- "amenity/bicycle_rental": {
- "icon": "bicycle",
+ "amenity/place_of_worship": {
+ "icon": "place-of-worship",
"fields": [
- "capacity",
- "network",
- "operator"
+ "religion",
+ "denomination",
+ "address",
+ "building_area"
],
"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": "bicycle_rental"
+ "amenity": "place_of_worship"
},
- "name": "Bicycle Rental"
+ "name": "Place of Worship"
},
- "amenity/boat_rental": {
+ "amenity/place_of_worship/buddhist": {
+ "icon": "place-of-worship",
+ "fields": [
+ "denomination",
+ "building_area",
+ "address"
+ ],
"geometry": [
"point",
"area"
],
+ "terms": [
+ "stupa",
+ "vihara",
+ "monastery",
+ "temple",
+ "pagoda",
+ "zendo",
+ "dojo"
+ ],
"tags": {
- "amenity": "boat_rental"
+ "amenity": "place_of_worship",
+ "religion": "buddhist"
},
+ "name": "Buddhist Temple"
+ },
+ "amenity/place_of_worship/christian": {
+ "icon": "religious-christian",
"fields": [
- "operator"
+ "denomination",
+ "building_area",
+ "address"
],
- "name": "Boat Rental"
- },
- "amenity/bus_station": {
"geometry": [
"point",
"area"
],
+ "terms": [
+ "christian",
+ "abbey",
+ "basilica",
+ "bethel",
+ "cathedral",
+ "chancel",
+ "chantry",
+ "chapel",
+ "fold",
+ "house of God",
+ "house of prayer",
+ "house of worship",
+ "minster",
+ "mission",
+ "oratory",
+ "parish",
+ "sacellum",
+ "sanctuary",
+ "shrine",
+ "tabernacle",
+ "temple"
+ ],
"tags": {
- "amenity": "bus_station"
+ "amenity": "place_of_worship",
+ "religion": "christian"
},
- "fields": [
- "operator"
- ],
- "name": "Bus Station"
+ "name": "Church"
},
- "amenity/cafe": {
- "icon": "cafe",
+ "amenity/place_of_worship/jewish": {
+ "icon": "religious-jewish",
"fields": [
- "cuisine",
- "internet_access",
+ "denomination",
"building_area",
- "address",
- "opening_hours",
- "smoking"
+ "address"
],
"geometry": [
"point",
- "vertex",
"area"
],
"terms": [
- "coffee",
- "tea",
- "coffee shop"
+ "jewish"
],
"tags": {
- "amenity": "cafe"
+ "amenity": "place_of_worship",
+ "religion": "jewish"
},
- "name": "Cafe"
+ "name": "Synagogue"
},
- "amenity/car_rental": {
- "icon": "car",
+ "amenity/place_of_worship/muslim": {
+ "icon": "religious-muslim",
+ "fields": [
+ "denomination",
+ "building_area",
+ "address"
+ ],
"geometry": [
"point",
"area"
],
+ "terms": [
+ "muslim"
+ ],
"tags": {
- "amenity": "car_rental"
+ "amenity": "place_of_worship",
+ "religion": "muslim"
},
+ "name": "Mosque"
+ },
+ "amenity/police": {
+ "icon": "police",
"fields": [
- "operator"
+ "operator",
+ "address",
+ "building_area"
],
- "name": "Car Rental"
- },
- "amenity/car_sharing": {
- "icon": "car",
"geometry": [
"point",
"area"
],
+ "terms": [
+ "badge",
+ "constable",
+ "constabulary",
+ "cop",
+ "detective",
+ "fed",
+ "law",
+ "enforcement",
+ "officer",
+ "patrol"
+ ],
"tags": {
- "amenity": "car_sharing"
+ "amenity": "police"
},
+ "name": "Police"
+ },
+ "amenity/post_box": {
+ "icon": "post",
"fields": [
"operator",
- "capacity"
+ "collection_times"
],
- "name": "Car Sharing"
- },
- "amenity/car_wash": {
- "icon": "car",
"geometry": [
"point",
- "area"
+ "vertex"
],
"tags": {
- "amenity": "car_wash"
+ "amenity": "post_box"
},
- "fields": [
- "building_area"
+ "terms": [
+ "letter",
+ "post"
],
- "name": "Car Wash"
+ "name": "Mailbox"
},
- "amenity/charging_station": {
- "icon": "car",
+ "amenity/post_office": {
+ "icon": "post",
+ "fields": [
+ "operator",
+ "address",
+ "building_area",
+ "collection_times"
+ ],
"geometry": [
"point",
"area"
],
- "tags": {
- "amenity": "charging_station"
- },
- "fields": [
- "operator"
- ],
"terms": [
- "EV",
- "Electric Vehicle",
- "Supercharger"
+ "letter",
+ "mail"
],
- "name": "Charging Station"
+ "tags": {
+ "amenity": "post_office"
+ },
+ "name": "Post Office"
},
- "amenity/childcare": {
- "icon": "school",
+ "amenity/pub": {
+ "icon": "beer",
"fields": [
+ "address",
"building_area",
- "address"
+ "opening_hours",
+ "smoking"
],
"geometry": [
"point",
- "vertex",
"area"
],
- "terms": [
- "nursery",
- "orphanage",
- "playgroup"
- ],
"tags": {
- "amenity": "childcare"
+ "amenity": "pub"
},
- "name": "Childcare"
+ "terms": [
+ "dive",
+ "beer",
+ "bier",
+ "booze"
+ ],
+ "name": "Pub"
},
- "amenity/cinema": {
- "icon": "cinema",
+ "amenity/ranger_station": {
"fields": [
+ "operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"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"
+ "visitor center",
+ "visitor centre",
+ "permit center",
+ "permit centre",
+ "backcountry office",
+ "warden office",
+ "warden center"
],
"tags": {
- "amenity": "cinema"
+ "amenity": "ranger_station"
},
- "name": "Cinema"
+ "name": "Ranger Station"
},
- "amenity/clinic": {
- "name": "Clinic",
+ "amenity/recycling": {
+ "icon": "recycling",
+ "fields": [
+ "operator",
+ "address",
+ "recycling/cans",
+ "recycling/glass",
+ "recycling/paper",
+ "recycling/clothes"
+ ],
"geometry": [
"point",
"area"
],
"terms": [
- "clinic",
- "medical clinic"
+ "can",
+ "bottle",
+ "garbage",
+ "scrap",
+ "trash"
],
"tags": {
- "amenity": "clinic"
+ "amenity": "recycling"
},
- "icon": "hospital",
+ "name": "Recycling"
+ },
+ "amenity/restaurant": {
+ "icon": "restaurant",
"fields": [
- "building_area",
+ "cuisine",
"address",
- "opening_hours"
- ]
- },
- "amenity/clock": {
+ "building_area",
+ "opening_hours",
+ "capacity",
+ "smoking"
+ ],
"geometry": [
"point",
- "vertex"
+ "area"
+ ],
+ "terms": [
+ "bar",
+ "breakfast",
+ "cafe",
+ "café",
+ "canteen",
+ "coffee",
+ "dine",
+ "dining",
+ "dinner",
+ "drive-in",
+ "eat",
+ "grill",
+ "lunch",
+ "table"
],
"tags": {
- "amenity": "clock"
+ "amenity": "restaurant"
},
- "name": "Clock"
+ "name": "Restaurant"
},
- "amenity/college": {
- "icon": "college",
+ "amenity/school": {
+ "icon": "school",
"fields": [
"operator",
"address"
"point",
"area"
],
+ "terms": [
+ "academy",
+ "elementary school",
+ "middle school",
+ "high school"
+ ],
"tags": {
- "amenity": "college"
+ "amenity": "school"
},
- "terms": [],
- "name": "College"
+ "name": "School Grounds"
},
- "amenity/compressed_air": {
- "icon": "car",
+ "amenity/shelter": {
+ "fields": [
+ "shelter_type"
+ ],
"geometry": [
"point",
+ "vertex",
"area"
],
+ "terms": [
+ "lean-to",
+ "gazebo",
+ "picnic"
+ ],
"tags": {
- "amenity": "compressed_air"
+ "amenity": "shelter"
},
- "name": "Compressed Air"
+ "name": "Shelter"
},
- "amenity/courthouse": {
+ "amenity/social_facility": {
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours",
+ "wheelchair",
+ "social_facility_for"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [],
"tags": {
- "amenity": "courthouse"
+ "amenity": "social_facility"
},
- "name": "Courthouse"
+ "name": "Social Facility"
},
- "amenity/dentist": {
- "name": "Dentist",
+ "amenity/social_facility/food_bank": {
+ "fields": [
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours",
+ "social_facility_for"
+ ],
"geometry": [
"point",
"area"
],
- "terms": [
- "dentist",
- "dentist's office"
- ],
+ "terms": [],
"tags": {
- "amenity": "dentist"
+ "amenity": "social_facility",
+ "social_facility": "food_bank"
},
- "icon": "hospital",
+ "name": "Food Bank"
+ },
+ "amenity/social_facility/group_home": {
"fields": [
- "building_area",
+ "operator",
"address",
- "opening_hours"
- ]
- },
- "amenity/doctor": {
- "name": "Doctor",
+ "building_area",
+ "opening_hours",
+ "wheelchair",
+ "social_facility_for"
+ ],
"geometry": [
"point",
"area"
],
"terms": [
- "doctor",
- "doctor's office"
+ "old",
+ "senior",
+ "living"
],
"tags": {
- "amenity": "doctors"
+ "amenity": "social_facility",
+ "social_facility": "group_home",
+ "social_facility_for": "senior"
},
- "icon": "hospital",
+ "name": "Elderly Group Home"
+ },
+ "amenity/social_facility/homeless_shelter": {
"fields": [
- "building_area",
+ "operator",
"address",
- "opening_hours"
- ]
- },
- "amenity/dojo": {
- "icon": "pitch",
+ "building_area",
+ "opening_hours",
+ "wheelchair",
+ "social_facility_for"
+ ],
"geometry": [
"point",
"area"
],
"terms": [
- "martial arts",
- "dojo",
- "dojang"
+ "houseless",
+ "unhoused",
+ "displaced"
],
"tags": {
- "amenity": "dojo"
+ "amenity": "social_facility",
+ "social_facility": "shelter",
+ "social_facility:for": "homeless"
},
+ "name": "Homeless Shelter"
+ },
+ "amenity/studio": {
+ "icon": "music",
"fields": [
+ "studio_type",
"address",
- "sport"
+ "building_area"
],
- "name": "Dojo / Martial Arts Academy"
- },
- "amenity/drinking_water": {
- "icon": "water",
"geometry": [
- "point"
+ "point",
+ "area"
],
- "tags": {
- "amenity": "drinking_water"
- },
"terms": [
- "water fountain",
- "potable water"
- ],
- "name": "Drinking Water"
- },
- "amenity/embassy": {
- "geometry": [
- "area",
- "point"
+ "recording",
+ "radio",
+ "television"
],
"tags": {
- "amenity": "embassy"
+ "amenity": "studio"
},
- "fields": [
- "country",
- "building_area"
- ],
- "icon": "embassy",
- "name": "Embassy"
+ "name": "Studio"
},
- "amenity/fast_food": {
- "icon": "fast-food",
- "fields": [
- "cuisine",
- "building_area",
- "address",
- "opening_hours",
- "smoking"
- ],
+ "amenity/swimming_pool": {
+ "icon": "swimming",
"geometry": [
"point",
"vertex",
"area"
],
"tags": {
- "amenity": "fast_food"
+ "amenity": "swimming_pool"
},
- "terms": [],
- "name": "Fast Food"
+ "name": "Swimming Pool",
+ "searchable": false
},
- "amenity/fire_station": {
- "icon": "fire-station",
+ "amenity/taxi": {
+ "icon": "car",
"fields": [
"operator",
- "building_area",
- "address"
+ "capacity"
],
"geometry": [
"point",
"vertex",
"area"
],
+ "terms": [
+ "cab"
+ ],
"tags": {
- "amenity": "fire_station"
+ "amenity": "taxi"
},
- "terms": [],
- "name": "Fire Station"
+ "name": "Taxi Stand"
},
- "amenity/fountain": {
+ "amenity/telephone": {
+ "icon": "telephone",
"geometry": [
"point",
- "area"
+ "vertex"
],
"tags": {
- "amenity": "fountain"
+ "amenity": "telephone"
},
- "name": "Fountain"
+ "terms": [
+ "phone"
+ ],
+ "name": "Telephone"
},
- "amenity/fuel": {
- "icon": "fuel",
+ "amenity/theatre": {
+ "icon": "theatre",
"fields": [
"operator",
"address",
"building_area"
],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "theatre",
+ "performance",
+ "play",
+ "musical"
+ ],
+ "tags": {
+ "amenity": "theatre"
+ },
+ "name": "Theater"
+ },
+ "amenity/toilets": {
+ "icon": "toilets",
+ "fields": [
+ "toilets/disposal",
+ "operator",
+ "building_area",
+ "access_toilets"
+ ],
"geometry": [
"point",
"vertex",
"area"
],
"terms": [
- "petrol",
- "fuel",
- "propane",
- "diesel",
- "lng",
- "cng",
- "biodiesel"
+ "bathroom",
+ "restroom",
+ "outhouse",
+ "privy",
+ "head",
+ "lavatory",
+ "latrine",
+ "water closet",
+ "WC",
+ "W.C."
],
"tags": {
- "amenity": "fuel"
+ "amenity": "toilets"
},
- "name": "Gas Station"
+ "name": "Toilets"
},
- "amenity/grave_yard": {
- "icon": "cemetery",
+ "amenity/townhall": {
+ "icon": "town-hall",
"fields": [
- "religion",
- "denomination"
+ "operator",
+ "address",
+ "building_area"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "village",
+ "city",
+ "government",
+ "courthouse",
+ "municipal"
+ ],
"tags": {
- "amenity": "grave_yard"
+ "amenity": "townhall"
},
- "name": "Graveyard"
+ "name": "Town Hall"
},
- "amenity/hospital": {
- "icon": "hospital",
+ "amenity/university": {
+ "icon": "college",
"fields": [
- "emergency",
+ "operator",
"address"
],
"geometry": [
"point",
- "vertex",
"area"
],
"terms": [
- "clinic",
- "emergency room",
- "health service",
- "hospice",
- "infirmary",
- "institution",
- "nursing home",
- "rest home",
- "sanatorium",
- "sanitarium",
- "sick bay",
- "surgery",
- "ward"
+ "college"
],
"tags": {
- "amenity": "hospital"
+ "amenity": "university"
},
- "name": "Hospital Grounds"
+ "name": "University Grounds"
},
- "amenity/kindergarten": {
- "icon": "school",
+ "amenity/vending_machine": {
"fields": [
- "address"
+ "vending",
+ "operator"
],
"geometry": [
- "point",
- "vertex",
- "area"
+ "point"
],
"terms": [
- "nursery",
- "preschool"
+ "snack",
+ "soda",
+ "ticket"
],
"tags": {
- "amenity": "kindergarten"
+ "amenity": "vending_machine"
},
- "name": "Kindergarten Grounds"
+ "name": "Vending Machine"
},
- "amenity/library": {
- "icon": "library",
+ "amenity/veterinary": {
+ "icon": "dog-park",
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "pet clinic",
+ "veterinarian",
+ "animal hospital",
+ "pet doctor"
+ ],
"tags": {
- "amenity": "library"
+ "amenity": "veterinary"
},
- "terms": [],
- "name": "Library"
+ "name": "Veterinary"
},
- "amenity/marketplace": {
+ "amenity/waste_basket": {
+ "icon": "waste-basket",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "waste_basket"
+ },
+ "terms": [
+ "rubbish",
+ "litter",
+ "trash",
+ "garbage"
+ ],
+ "name": "Waste Basket"
+ },
+ "area": {
+ "name": "Area",
+ "tags": {
+ "area": "yes"
+ },
+ "geometry": [
+ "area"
+ ],
+ "matchScore": 0.1
+ },
+ "barrier": {
"geometry": [
"point",
"vertex",
+ "line",
"area"
],
"tags": {
- "amenity": "marketplace"
+ "barrier": "*"
},
"fields": [
- "building_area"
+ "barrier"
],
- "name": "Marketplace"
+ "name": "Barrier"
},
- "amenity/nightclub": {
- "icon": "bar",
+ "barrier/block": {
"fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
+ "access"
],
"geometry": [
"point",
- "vertex",
- "area"
+ "vertex"
],
"tags": {
- "amenity": "nightclub"
+ "barrier": "block"
},
- "terms": [
- "disco*",
- "night club",
- "dancing",
- "dance club"
- ],
- "name": "Nightclub"
+ "name": "Block"
},
- "amenity/parking": {
- "icon": "parking",
+ "barrier/bollard": {
"fields": [
- "parking",
- "capacity",
- "fee",
- "access_simple",
- "supervised",
- "park_ride",
- "address"
+ "access"
],
"geometry": [
"point",
"vertex",
- "area"
+ "line"
],
"tags": {
- "amenity": "parking"
+ "barrier": "bollard"
},
- "terms": [],
- "name": "Car Parking"
+ "name": "Bollard"
},
- "amenity/parking_entrance": {
- "icon": "entrance",
+ "barrier/cattle_grid": {
"geometry": [
"vertex"
],
"tags": {
- "amenity": "parking_entrance"
+ "barrier": "cattle_grid"
},
- "fields": [
- "access_simple",
- "ref"
- ],
- "name": "Parking Garage Entrance/Exit"
+ "name": "Cattle Grid"
},
- "amenity/pharmacy": {
- "icon": "pharmacy",
- "fields": [
- "operator",
- "building_area",
- "address",
- "opening_hours"
- ],
+ "barrier/city_wall": {
"geometry": [
- "point",
- "vertex",
+ "line",
"area"
],
"tags": {
- "amenity": "pharmacy"
+ "barrier": "city_wall"
},
- "terms": [],
- "name": "Pharmacy"
+ "name": "City Wall"
},
- "amenity/place_of_worship": {
- "icon": "place-of-worship",
+ "barrier/cycle_barrier": {
"fields": [
- "religion",
- "denomination",
- "building_area",
- "address"
+ "access"
],
"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"
+ "vertex"
],
"tags": {
- "amenity": "place_of_worship"
+ "barrier": "cycle_barrier"
},
- "name": "Place of Worship"
+ "name": "Cycle Barrier"
},
- "amenity/place_of_worship/buddhist": {
- "icon": "place-of-worship",
- "fields": [
- "denomination",
- "building_area",
- "address"
- ],
+ "barrier/ditch": {
"geometry": [
- "point",
- "vertex",
+ "line",
"area"
],
- "terms": [
- "stupa",
- "vihara",
- "monastery",
- "temple",
- "pagoda",
- "zendo",
- "dojo"
- ],
"tags": {
- "amenity": "place_of_worship",
- "religion": "buddhist"
+ "barrier": "ditch"
},
- "name": "Buddhist Temple"
+ "name": "Ditch"
},
- "amenity/place_of_worship/christian": {
- "icon": "religious-christian",
- "fields": [
- "denomination",
- "building_area",
- "address"
- ],
+ "barrier/entrance": {
+ "icon": "entrance",
"geometry": [
- "point",
- "vertex",
- "area"
+ "vertex"
],
- "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": {
+ "barrier": "entrance"
+ },
+ "name": "Entrance",
+ "searchable": false
+ },
+ "barrier/fence": {
+ "geometry": [
+ "line"
],
"tags": {
- "amenity": "place_of_worship",
- "religion": "christian"
+ "barrier": "fence"
},
- "name": "Church"
+ "name": "Fence"
},
- "amenity/place_of_worship/jewish": {
- "icon": "religious-jewish",
+ "barrier/gate": {
"fields": [
- "denomination",
- "building_area",
- "address"
+ "access"
],
"geometry": [
"point",
"vertex",
- "area"
+ "line"
],
- "terms": [
- "jewish",
- "synagogue"
+ "tags": {
+ "barrier": "gate"
+ },
+ "name": "Gate"
+ },
+ "barrier/hedge": {
+ "geometry": [
+ "line",
+ "area"
],
"tags": {
- "amenity": "place_of_worship",
- "religion": "jewish"
+ "barrier": "hedge"
},
- "name": "Synagogue"
+ "name": "Hedge"
},
- "amenity/place_of_worship/muslim": {
- "icon": "religious-muslim",
+ "barrier/kissing_gate": {
"fields": [
- "denomination",
- "building_area",
- "address"
+ "access"
],
"geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "muslim",
- "mosque"
+ "vertex"
],
"tags": {
- "amenity": "place_of_worship",
- "religion": "muslim"
+ "barrier": "kissing_gate"
},
- "name": "Mosque"
+ "name": "Kissing Gate"
},
- "amenity/police": {
- "icon": "police",
+ "barrier/lift_gate": {
"fields": [
- "operator",
- "building_area",
- "address"
+ "access"
],
"geometry": [
"point",
- "vertex",
- "area"
+ "vertex"
],
- "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": {
+ "barrier": "lift_gate"
+ },
+ "name": "Lift Gate"
+ },
+ "barrier/retaining_wall": {
+ "geometry": [
+ "line",
+ "area"
],
"tags": {
- "amenity": "police"
+ "barrier": "retaining_wall"
},
- "name": "Police"
+ "name": "Retaining Wall"
},
- "amenity/post_box": {
- "icon": "post",
+ "barrier/stile": {
"fields": [
- "operator",
- "collection_times"
+ "access"
],
"geometry": [
"point",
"vertex"
],
"tags": {
- "amenity": "post_box"
+ "barrier": "stile"
},
- "terms": [
- "letter drop",
- "letterbox",
- "mail drop",
- "mailbox",
- "pillar box",
- "postbox"
- ],
- "name": "Mailbox"
+ "name": "Stile"
},
- "amenity/post_office": {
- "icon": "post",
+ "barrier/toll_booth": {
"fields": [
- "operator",
- "collection_times",
- "building_area"
+ "access"
],
"geometry": [
- "point",
- "vertex",
+ "vertex"
+ ],
+ "tags": {
+ "barrier": "toll_booth"
+ },
+ "name": "Toll Booth"
+ },
+ "barrier/wall": {
+ "geometry": [
+ "line",
"area"
],
"tags": {
- "amenity": "post_office"
+ "barrier": "wall"
},
- "name": "Post Office"
+ "name": "Wall"
},
- "amenity/pub": {
- "icon": "beer",
+ "boundary/administrative": {
+ "name": "Administrative Boundary",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "boundary": "administrative"
+ },
"fields": [
- "building_area",
- "address",
- "opening_hours",
- "smoking"
+ "admin_level"
+ ]
+ },
+ "building": {
+ "icon": "building",
+ "fields": [
+ "building",
+ "levels",
+ "address"
],
"geometry": [
- "point",
- "vertex",
"area"
],
"tags": {
- "amenity": "pub"
+ "building": "*"
},
"terms": [],
- "name": "Pub"
+ "name": "Building"
},
- "amenity/ranger_station": {
+ "building/apartments": {
+ "icon": "commercial",
"fields": [
- "building_area",
- "opening_hours",
- "operator",
- "phone"
+ "address",
+ "levels"
],
"geometry": [
"point",
"area"
],
- "terms": [
- "visitor center",
- "visitor centre",
- "permit center",
- "permit centre",
- "backcountry office",
- "warden office",
- "warden center"
- ],
"tags": {
- "amenity": "ranger_station"
+ "building": "apartments"
},
- "name": "Ranger Station"
+ "name": "Apartments"
},
- "amenity/recycling": {
- "icon": "recycling",
+ "building/barn": {
+ "icon": "building",
"fields": [
- "recycling/cans",
- "recycling/glass",
- "recycling/paper",
- "recycling/clothes"
+ "address",
+ "levels"
],
"geometry": [
"point",
- "vertex",
"area"
],
- "terms": [],
"tags": {
- "amenity": "recycling"
+ "building": "barn"
},
- "name": "Recycling"
+ "name": "Barn"
},
- "amenity/restaurant": {
- "icon": "restaurant",
+ "building/bunker": {
"fields": [
- "cuisine",
- "building_area",
"address",
- "opening_hours",
- "capacity",
- "smoking"
+ "levels"
],
"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"
+ "building": "bunker"
},
- "name": "Restaurant"
+ "name": "Bunker",
+ "searchable": false
},
- "amenity/school": {
- "icon": "school",
+ "building/cabin": {
+ "icon": "building",
"fields": [
- "operator",
- "address"
+ "address",
+ "levels"
],
"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"
+ "building": "cabin"
},
- "name": "School Grounds"
+ "name": "Cabin"
},
- "amenity/shelter": {
+ "building/cathedral": {
+ "icon": "place-of-worship",
"fields": [
- "shelter_type"
+ "address",
+ "levels"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "amenity": "shelter"
+ "building": "cathedral"
},
- "terms": [
- "lean-to"
- ],
- "name": "Shelter"
+ "name": "Cathedral"
},
- "amenity/social_facility": {
- "name": "Social Facility",
+ "building/chapel": {
+ "icon": "place-of-worship",
+ "fields": [
+ "address",
+ "levels"
+ ],
"geometry": [
"point",
"area"
],
- "terms": [],
"tags": {
- "amenity": "social_facility"
+ "building": "chapel"
},
+ "name": "Chapel"
+ },
+ "building/church": {
+ "icon": "place-of-worship",
"fields": [
- "social_facility_for",
"address",
- "phone",
- "opening_hours",
- "wheelchair",
- "operator"
- ]
- },
- "amenity/social_facility/food_bank": {
- "name": "Food Bank",
+ "levels"
+ ],
"geometry": [
"point",
"area"
],
- "terms": [],
"tags": {
- "amenity": "social_facility",
- "social_facility": "food_bank"
+ "building": "church"
},
+ "name": "Church"
+ },
+ "building/college": {
+ "icon": "building",
"fields": [
- "social_facility_for",
"address",
- "phone",
- "opening_hours",
- "wheelchair",
- "operator"
- ]
- },
- "amenity/social_facility/group_home": {
- "name": "Group Home",
+ "levels"
+ ],
"geometry": [
"point",
"area"
],
"terms": [
- "elderly",
- "old",
- "senior living"
+ "university"
],
"tags": {
- "amenity": "social_facility",
- "social_facility": "group_home",
- "social_facility_for": "senior"
+ "building": "college"
},
+ "name": "College Building"
+ },
+ "building/commercial": {
+ "icon": "commercial",
"fields": [
- "social_facility_for",
"address",
- "phone",
- "opening_hours",
- "wheelchair",
- "operator"
- ]
- },
- "amenity/social_facility/homeless_shelter": {
- "name": "Homeless Shelter",
+ "smoking"
+ ],
"geometry": [
"point",
"area"
],
- "terms": [
- "houseless",
- "unhoused",
- "displaced"
- ],
"tags": {
- "amenity": "social_facility",
- "social_facility": "shelter",
- "social_facility:for": "homeless"
+ "building": "commercial"
},
+ "name": "Commercial Building"
+ },
+ "building/construction": {
+ "icon": "building",
"fields": [
- "social_facility_for",
"address",
- "phone",
- "opening_hours",
- "wheelchair",
- "operator"
- ]
- },
- "amenity/studio": {
- "name": "Studio",
+ "levels"
+ ],
"geometry": [
"point",
"area"
],
- "terms": [
- "recording studio",
- "studio",
- "radio",
- "radio studio",
- "television",
- "television studio"
- ],
"tags": {
- "amenity": "studio"
+ "building": "construction"
},
- "icon": "music",
- "fields": [
- "building_area",
- "studio_type",
- "address"
- ]
+ "name": "Building Under Construction"
},
- "amenity/swimming_pool": {
+ "building/detached": {
+ "icon": "building",
+ "fields": [
+ "address",
+ "levels"
+ ],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "amenity": "swimming_pool"
+ "building": "detached"
},
- "icon": "swimming",
- "searchable": false,
- "name": "Swimming Pool"
+ "name": "Detached Home"
},
- "amenity/taxi": {
+ "building/dormitory": {
+ "icon": "building",
"fields": [
- "operator",
- "capacity"
+ "address",
+ "levels",
+ "smoking"
],
"geometry": [
"point",
- "vertex",
"area"
],
- "terms": [
- "cab"
- ],
"tags": {
- "amenity": "taxi"
+ "building": "dormitory"
},
- "name": "Taxi Stand"
+ "name": "Dormitory"
},
- "amenity/telephone": {
- "icon": "telephone",
+ "building/entrance": {
+ "icon": "entrance",
"geometry": [
- "point",
"vertex"
],
"tags": {
- "amenity": "telephone"
+ "building": "entrance"
},
- "terms": [
- "phone"
- ],
- "name": "Telephone"
+ "name": "Entrance/Exit",
+ "searchable": false
},
- "amenity/theatre": {
- "icon": "theatre",
+ "building/garage": {
"fields": [
- "operator",
- "building_area",
- "address"
+ "capacity"
],
"geometry": [
"point",
- "vertex",
"area"
],
- "terms": [
- "theatre",
- "performance",
- "play",
- "musical"
- ],
"tags": {
- "amenity": "theatre"
+ "building": "garage"
},
- "name": "Theater"
+ "name": "Garage",
+ "icon": "warehouse"
},
- "amenity/toilets": {
+ "building/garages": {
+ "icon": "warehouse",
"fields": [
- "toilets/disposal",
- "operator",
- "building_area",
- "access_toilets"
+ "capacity"
],
"geometry": [
"point",
- "vertex",
"area"
],
- "terms": [
- "bathroom",
- "restroom",
- "outhouse",
- "privy",
- "head",
- "lavatory",
- "latrine",
- "water closet",
- "WC",
- "W.C."
- ],
"tags": {
- "amenity": "toilets"
+ "building": "garages"
},
- "icon": "toilets",
- "name": "Toilets"
+ "name": "Garages"
},
- "amenity/townhall": {
- "icon": "town-hall",
+ "building/greenhouse": {
+ "icon": "building",
"fields": [
- "building_area",
- "address"
+ "address",
+ "levels"
],
"geometry": [
"point",
- "vertex",
"area"
],
- "terms": [
- "village hall",
- "city government",
- "courthouse",
- "municipal building",
- "municipal center",
- "municipal centre"
- ],
"tags": {
- "amenity": "townhall"
+ "building": "greenhouse"
},
- "name": "Town Hall"
+ "name": "Greenhouse"
},
- "amenity/university": {
- "icon": "college",
+ "building/hospital": {
+ "icon": "building",
"fields": [
- "operator",
- "address"
+ "address",
+ "levels"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "amenity": "university"
+ "building": "hospital"
},
- "terms": [
- "college"
- ],
- "name": "University"
+ "name": "Hospital Building"
},
- "amenity/vending_machine": {
+ "building/hotel": {
+ "icon": "building",
"fields": [
- "vending",
- "operator"
+ "address",
+ "levels",
+ "smoking"
],
"geometry": [
- "point"
+ "point",
+ "area"
],
"tags": {
- "amenity": "vending_machine"
+ "building": "hotel"
},
- "name": "Vending Machine"
+ "name": "Hotel Building"
},
- "amenity/veterinary": {
- "fields": [],
+ "building/house": {
+ "icon": "building",
+ "fields": [
+ "address",
+ "levels"
+ ],
"geometry": [
"point",
"area"
],
- "terms": [
- "pet clinic",
- "veterinarian",
- "animal hospital",
- "pet doctor"
- ],
"tags": {
- "amenity": "veterinary"
+ "building": "house"
},
- "name": "Veterinary"
+ "name": "House"
},
- "amenity/waste_basket": {
- "icon": "waste-basket",
+ "building/hut": {
"geometry": [
"point",
- "vertex"
+ "area"
],
"tags": {
- "amenity": "waste_basket"
+ "building": "hut"
},
- "terms": [
- "rubbish bin",
- "litter bin",
- "trash can",
- "garbage can"
- ],
- "name": "Waste Basket"
+ "name": "Hut"
},
- "area": {
- "name": "Area",
- "tags": {
- "area": "yes"
- },
- "geometry": [
- "area"
+ "building/industrial": {
+ "icon": "industrial",
+ "fields": [
+ "address",
+ "levels"
],
- "matchScore": 0.1
- },
- "barrier": {
"geometry": [
"point",
- "vertex",
- "line",
"area"
],
"tags": {
- "barrier": "*"
+ "building": "industrial"
},
- "fields": [
- "barrier"
- ],
- "name": "Barrier"
+ "name": "Industrial Building"
},
- "barrier/block": {
+ "building/kindergarten": {
+ "icon": "building",
"fields": [
- "access"
+ "address",
+ "levels"
],
"geometry": [
"point",
- "vertex"
+ "area"
+ ],
+ "terms": [
+ "kindergarden",
+ "pre-school"
],
"tags": {
- "barrier": "block"
+ "building": "kindergarten"
},
- "name": "Block"
+ "name": "Preschool/Kindergarten Building"
},
- "barrier/bollard": {
+ "building/public": {
+ "icon": "building",
"fields": [
- "access"
+ "address",
+ "levels",
+ "smoking"
],
"geometry": [
"point",
- "vertex",
- "line"
+ "area"
],
"tags": {
- "barrier": "bollard"
+ "building": "public"
},
- "name": "Bollard"
+ "name": "Public Building"
},
- "barrier/cattle_grid": {
- "geometry": [
- "vertex"
+ "building/residential": {
+ "icon": "building",
+ "fields": [
+ "address",
+ "levels"
],
- "tags": {
- "barrier": "cattle_grid"
- },
- "name": "Cattle Grid"
- },
- "barrier/city_wall": {
"geometry": [
- "line",
+ "point",
"area"
],
"tags": {
- "barrier": "city_wall"
+ "building": "residential"
},
- "name": "City Wall"
+ "name": "Residential Building"
},
- "barrier/cycle_barrier": {
+ "building/retail": {
+ "icon": "building",
"fields": [
- "access"
- ],
- "geometry": [
- "vertex"
+ "address",
+ "levels",
+ "smoking"
],
- "tags": {
- "barrier": "cycle_barrier"
- },
- "name": "Cycle Barrier"
- },
- "barrier/ditch": {
"geometry": [
- "line",
+ "point",
"area"
],
"tags": {
- "barrier": "ditch"
+ "building": "retail"
},
- "name": "Ditch"
+ "name": "Retail Building"
},
- "barrier/entrance": {
- "icon": "entrance",
- "geometry": [
- "vertex"
+ "building/roof": {
+ "icon": "building",
+ "fields": [
+ "address"
],
- "tags": {
- "barrier": "entrance"
- },
- "name": "Entrance",
- "searchable": false
- },
- "barrier/fence": {
"geometry": [
- "line"
+ "point",
+ "area"
],
"tags": {
- "barrier": "fence"
+ "building": "roof"
},
- "name": "Fence"
+ "name": "Roof"
},
- "barrier/gate": {
+ "building/school": {
+ "icon": "building",
"fields": [
- "access"
+ "address",
+ "levels"
],
"geometry": [
"point",
- "vertex",
- "line"
+ "area"
+ ],
+ "terms": [
+ "academy",
+ "elementary school",
+ "middle school",
+ "high school"
],
"tags": {
- "barrier": "gate"
+ "building": "school"
},
- "name": "Gate"
+ "name": "School Building"
},
- "barrier/hedge": {
+ "building/shed": {
+ "icon": "building",
+ "fields": [
+ "address",
+ "levels"
+ ],
"geometry": [
- "line",
+ "point",
"area"
],
"tags": {
- "barrier": "hedge"
+ "building": "shed"
},
- "name": "Hedge"
+ "name": "Shed"
},
- "barrier/kissing_gate": {
+ "building/stable": {
+ "icon": "building",
"fields": [
- "access"
+ "address",
+ "levels"
],
"geometry": [
- "vertex"
+ "point",
+ "area"
],
"tags": {
- "barrier": "kissing_gate"
+ "building": "stable"
},
- "name": "Kissing Gate"
+ "name": "Stable"
},
- "barrier/lift_gate": {
+ "building/static_caravan": {
+ "icon": "building",
"fields": [
- "access"
+ "address",
+ "levels"
],
"geometry": [
"point",
- "vertex"
+ "area"
],
"tags": {
- "barrier": "lift_gate"
+ "building": "static_caravan"
},
- "name": "Lift Gate"
+ "name": "Static Mobile Home"
},
- "barrier/retaining_wall": {
+ "building/terrace": {
+ "icon": "building",
+ "fields": [
+ "address",
+ "levels"
+ ],
"geometry": [
- "line",
+ "point",
"area"
],
"tags": {
- "barrier": "retaining_wall"
+ "building": "terrace"
},
- "name": "Retaining Wall"
+ "name": "Row Houses"
},
- "barrier/stile": {
+ "building/train_station": {
+ "icon": "building",
"fields": [
- "access"
+ "address",
+ "levels"
],
"geometry": [
"point",
- "vertex"
+ "vertex",
+ "area"
],
"tags": {
- "barrier": "stile"
+ "building": "train_station"
},
- "name": "Stile"
+ "name": "Train Station",
+ "searchable": false
},
- "barrier/toll_booth": {
+ "building/university": {
+ "icon": "building",
"fields": [
- "access"
+ "address",
+ "levels"
],
"geometry": [
- "vertex"
+ "point",
+ "area"
+ ],
+ "terms": [
+ "college"
],
"tags": {
- "barrier": "toll_booth"
+ "building": "university"
},
- "name": "Toll Booth"
+ "name": "University Building"
},
- "barrier/wall": {
+ "building/warehouse": {
+ "icon": "building",
+ "fields": [
+ "address",
+ "levels"
+ ],
"geometry": [
- "line",
+ "point",
"area"
],
"tags": {
- "barrier": "wall"
+ "building": "warehouse"
},
- "name": "Wall"
+ "name": "Warehouse"
},
- "boundary/administrative": {
- "name": "Administrative Boundary",
+ "craft": {
+ "icon": "marker-stroked",
+ "fields": [
+ "craft",
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
- "line"
+ "point",
+ "area"
],
"tags": {
- "boundary": "administrative"
+ "craft": "*"
},
- "fields": [
- "admin_level"
- ]
+ "terms": [],
+ "name": "Craft"
},
- "building": {
- "icon": "building",
+ "craft/basket_maker": {
+ "icon": "art-gallery",
"fields": [
- "building",
- "levels",
- "address"
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
+ "point",
"area"
],
"tags": {
- "building": "*"
+ "craft": "basket_maker"
},
- "terms": [],
- "name": "Building"
+ "name": "Basket Maker"
},
- "building/apartments": {
- "icon": "commercial",
+ "craft/beekeeper": {
+ "icon": "farm",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "building": "apartments"
+ "craft": "beekeeper"
},
- "name": "Apartments"
+ "name": "Beekeeper"
},
- "building/barn": {
- "icon": "building",
+ "craft/blacksmith": {
+ "icon": "farm",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "building": "barn"
+ "craft": "blacksmith"
},
- "name": "Barn"
+ "name": "Blacksmith"
},
- "building/bunker": {
+ "craft/boatbuilder": {
+ "icon": "marker-stroked",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "building": "bunker"
+ "craft": "boatbuilder"
},
- "name": "Bunker",
- "searchable": false
+ "name": "Boat Builder"
},
- "building/cabin": {
- "icon": "building",
+ "craft/bookbinder": {
+ "icon": "library",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "book repair"
+ ],
"tags": {
- "building": "cabin"
+ "craft": "bookbinder"
},
- "name": "Cabin"
+ "name": "Bookbinder"
},
- "building/cathedral": {
- "icon": "place-of-worship",
+ "craft/brewery": {
+ "icon": "beer",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "beer",
+ "bier"
+ ],
"tags": {
- "building": "cathedral"
+ "craft": "brewery"
},
- "name": "Cathedral"
+ "name": "Brewery"
},
- "building/chapel": {
- "icon": "place-of-worship",
+ "craft/carpenter": {
+ "icon": "logging",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "woodworker"
+ ],
"tags": {
- "building": "chapel"
+ "craft": "carpenter"
},
- "name": "Chapel"
+ "name": "Carpenter"
},
- "building/church": {
- "icon": "place-of-worship",
+ "craft/carpet_layer": {
+ "icon": "square",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "building": "church"
+ "craft": "carpet_layer"
},
- "name": "Church"
+ "name": "Carpet Layer"
},
- "building/commercial": {
- "icon": "commercial",
+ "craft/caterer": {
+ "icon": "bakery",
"fields": [
+ "cuisine",
+ "operator",
"address",
- "smoking"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "building": "commercial"
+ "craft": "caterer"
},
- "name": "Commercial Building"
+ "name": "Caterer"
},
- "building/construction": {
- "icon": "building",
+ "craft/clockmaker": {
+ "icon": "circle-stroked",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "building": "construction"
+ "craft": "clockmaker"
},
- "name": "Building Under Construction"
+ "name": "Clockmaker"
},
- "building/detached": {
- "icon": "building",
+ "craft/confectionary": {
+ "icon": "bakery",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "sweets",
+ "candy"
+ ],
"tags": {
- "building": "detached"
+ "craft": "confectionary"
},
- "name": "Detached Home"
+ "name": "Confectionary"
},
- "building/dormitory": {
- "icon": "building",
+ "craft/dressmaker": {
+ "icon": "clothing-store",
"fields": [
+ "operator",
"address",
- "levels",
- "smoking"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "seamstress"
+ ],
"tags": {
- "building": "dormitory"
+ "craft": "dressmaker"
},
- "name": "Dormitory"
+ "name": "Dressmaker"
},
- "building/entrance": {
- "icon": "entrance",
+ "craft/electrician": {
+ "icon": "marker-stroked",
+ "fields": [
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
- "vertex"
+ "point",
+ "area"
+ ],
+ "terms": [
+ "power",
+ "wire"
],
"tags": {
- "building": "entrance"
+ "craft": "electrician"
},
- "name": "Entrance/Exit",
- "searchable": false
+ "name": "Electrician"
},
- "building/garage": {
+ "craft/gardener": {
+ "icon": "garden",
"fields": [
- "capacity"
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "landscaper",
+ "grounds keeper"
+ ],
"tags": {
- "building": "garage"
+ "craft": "gardener"
},
- "name": "Garage",
- "icon": "warehouse"
+ "name": "Gardener"
},
- "building/garages": {
- "icon": "warehouse",
+ "craft/glaziery": {
+ "icon": "fire-station",
"fields": [
- "capacity"
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "glass",
+ "stained-glass",
+ "window"
+ ],
"tags": {
- "building": "garages"
+ "craft": "glaziery"
},
- "name": "Garages"
+ "name": "Glaziery"
},
- "building/greenhouse": {
- "icon": "building",
+ "craft/handicraft": {
+ "icon": "art-gallery",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "building": "greenhouse"
+ "craft": "handicraft"
},
- "name": "Greenhouse"
+ "name": "Handicraft"
},
- "building/hospital": {
- "icon": "building",
+ "craft/hvac": {
+ "icon": "marker-stroked",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "heat*",
+ "vent*",
+ "air conditioning"
+ ],
"tags": {
- "building": "hospital"
+ "craft": "hvac"
},
- "name": "Hospital Building"
+ "name": "HVAC"
},
- "building/hotel": {
- "icon": "building",
+ "craft/insulator": {
+ "icon": "marker-stroked",
"fields": [
+ "operator",
"address",
- "levels",
- "smoking"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "building": "hotel"
+ "craft": "insulation"
},
- "name": "Hotel Building"
+ "name": "Insulator"
},
- "building/house": {
- "icon": "building",
+ "craft/jeweler": {
+ "icon": "marker-stroked",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
"area"
],
"tags": {
- "building": "house"
+ "craft": "jeweler"
},
- "name": "House"
+ "name": "Jeweler",
+ "searchable": false
},
- "building/hut": {
+ "craft/key_cutter": {
+ "icon": "marker-stroked",
+ "fields": [
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "building": "hut"
+ "craft": "key_cutter"
},
- "name": "Hut"
+ "name": "Key Cutter"
},
- "building/industrial": {
- "icon": "industrial",
+ "craft/locksmith": {
+ "icon": "marker-stroked",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "building": "industrial"
+ "craft": "locksmith"
},
- "name": "Industrial Building"
+ "name": "Locksmith",
+ "searchable": false
},
- "building/public": {
- "icon": "building",
+ "craft/metal_construction": {
+ "icon": "marker-stroked",
"fields": [
+ "operator",
"address",
- "levels",
- "smoking"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "building": "public"
+ "craft": "metal_construction"
},
- "name": "Public Building"
+ "name": "Metal Construction"
},
- "building/residential": {
- "icon": "building",
+ "craft/optician": {
+ "icon": "marker-stroked",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "building": "residential"
+ "craft": "optician"
},
- "name": "Residential Building"
+ "name": "Optician",
+ "searchable": false
},
- "building/retail": {
- "icon": "building",
+ "craft/painter": {
+ "icon": "art-gallery",
"fields": [
+ "operator",
"address",
- "levels",
- "smoking"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "building": "retail"
+ "craft": "painter"
},
- "name": "Retail Building"
+ "name": "Painter"
},
- "building/roof": {
- "icon": "building",
+ "craft/photographer": {
+ "icon": "camera",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "building": "roof"
+ "craft": "photographer"
},
- "name": "Roof"
+ "name": "Photographer"
},
- "building/school": {
- "icon": "building",
+ "craft/photographic_laboratory": {
+ "icon": "camera",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "film"
+ ],
"tags": {
- "building": "school"
+ "craft": "photographic_laboratory"
},
- "name": "School Building"
+ "name": "Photographic Laboratory"
},
- "building/shed": {
- "icon": "building",
+ "craft/plasterer": {
+ "icon": "marker-stroked",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "building": "shed"
+ "craft": "plasterer"
},
- "name": "Shed"
+ "name": "Plasterer"
},
- "building/stable": {
- "icon": "building",
+ "craft/plumber": {
+ "icon": "marker-stroked",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "pipe"
+ ],
"tags": {
- "building": "stable"
+ "craft": "plumber"
},
- "name": "Stable"
+ "name": "Plumber"
},
- "building/static_caravan": {
- "icon": "building",
+ "craft/pottery": {
+ "icon": "art-gallery",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "ceramic"
+ ],
"tags": {
- "building": "static_caravan"
+ "craft": "pottery"
},
- "name": "Static Mobile Home"
+ "name": "Pottery"
},
- "building/terrace": {
- "icon": "building",
+ "craft/rigger": {
+ "icon": "marker-stroked",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "building": "terrace"
+ "craft": "rigger"
},
- "name": "Row Houses"
+ "name": "Rigger"
},
- "building/train_station": {
- "icon": "building",
+ "craft/roofer": {
+ "icon": "marker-stroked",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "building": "train_station"
+ "craft": "roofer"
},
- "name": "Train Station",
- "searchable": false
+ "name": "Roofer"
},
- "building/university": {
- "icon": "building",
+ "craft/saddler": {
+ "icon": "marker-stroked",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "building": "university"
+ "craft": "saddler"
},
- "name": "University Building"
+ "name": "Saddler"
},
- "building/warehouse": {
- "icon": "building",
+ "craft/sailmaker": {
+ "icon": "marker-stroked",
"fields": [
+ "operator",
"address",
- "levels"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "building": "warehouse"
+ "craft": "sailmaker"
},
- "name": "Warehouse"
+ "name": "Sailmaker"
},
- "craft/basket_maker": {
- "name": "Basket Maker",
+ "craft/sawmill": {
+ "icon": "park",
+ "fields": [
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
"point",
"area"
],
"terms": [
- "basket",
- "basketry",
- "basket maker",
- "basket weaver"
+ "lumber"
],
"tags": {
- "craft": "basket_maker"
+ "craft": "sawmill"
},
- "icon": "art-gallery",
+ "name": "Sawmill"
+ },
+ "craft/scaffolder": {
+ "icon": "marker-stroked",
"fields": [
- "building_area",
- "address",
"operator",
+ "address",
+ "building_area",
"opening_hours"
- ]
- },
- "craft/beekeeper": {
- "name": "Beekeeper",
+ ],
"geometry": [
"point",
"area"
],
- "terms": [
- "bees",
- "beekeeper",
- "bee box"
- ],
"tags": {
- "craft": "beekeeper"
+ "craft": "scaffolder"
},
- "icon": "farm",
+ "name": "Scaffolder"
+ },
+ "craft/sculpter": {
+ "icon": "art-gallery",
"fields": [
- "building_area",
- "address",
"operator",
+ "address",
+ "building_area",
"opening_hours"
- ]
- },
- "craft/blacksmith": {
- "name": "Blacksmith",
+ ],
"geometry": [
"point",
"area"
],
- "terms": [
- "blacksmith"
- ],
"tags": {
- "craft": "blacksmith"
+ "craft": "sculpter"
},
- "icon": "farm",
+ "name": "Sculpter"
+ },
+ "craft/shoemaker": {
+ "icon": "marker-stroked",
"fields": [
- "building_area",
- "address",
"operator",
+ "address",
+ "building_area",
"opening_hours"
- ]
- },
- "craft/boatbuilder": {
- "name": "Boat Builder",
+ ],
"geometry": [
"point",
"area"
],
"terms": [
- "boat builder"
+ "cobbler"
],
"tags": {
- "craft": "boatbuilder"
+ "craft": "shoemaker"
},
+ "name": "Shoemaker"
+ },
+ "craft/stonemason": {
"icon": "marker-stroked",
"fields": [
- "building_area",
- "address",
"operator",
+ "address",
+ "building_area",
"opening_hours"
- ]
- },
- "craft/bookbinder": {
- "name": "Bookbinder",
+ ],
"geometry": [
"point",
"area"
],
"terms": [
- "bookbinder",
- "book repair"
+ "masonry"
],
"tags": {
- "craft": "bookbinder"
+ "craft": "stonemason"
},
- "icon": "library",
+ "name": "Stonemason"
+ },
+ "craft/sweep": {
+ "icon": "marker-stroked",
"fields": [
- "building_area",
- "address",
"operator",
- "opening_hours"
- ]
- },
- "craft/brewery": {
- "name": "Brewery",
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
"point",
"area"
],
- "terms": [
- "brewery"
- ],
"tags": {
- "craft": "brewery"
+ "craft": "sweep"
},
- "icon": "beer",
+ "name": "Chimney Sweep"
+ },
+ "craft/tailor": {
+ "icon": "clothing-store",
"fields": [
- "building_area",
- "address",
"operator",
+ "address",
+ "building_area",
"opening_hours"
- ]
- },
- "craft/carpenter": {
- "name": "Carpenter",
+ ],
"geometry": [
"point",
"area"
],
"terms": [
- "carpenter",
- "woodworker"
+ "clothes",
+ "suit"
],
"tags": {
- "craft": "carpenter"
+ "craft": "tailor"
},
- "icon": "logging",
+ "name": "Tailor",
+ "searchable": false
+ },
+ "craft/tiler": {
+ "icon": "marker-stroked",
"fields": [
- "building_area",
- "address",
"operator",
+ "address",
+ "building_area",
"opening_hours"
- ]
- },
- "craft/carpet_layer": {
- "name": "Carpet Layer",
+ ],
"geometry": [
"point",
"area"
],
- "terms": [
- "carpet layer"
- ],
"tags": {
- "craft": "carpet_layer"
+ "craft": "tiler"
},
- "icon": "square",
+ "name": "Tiler"
+ },
+ "craft/tinsmith": {
+ "icon": "marker-stroked",
"fields": [
- "building_area",
- "address",
"operator",
+ "address",
+ "building_area",
"opening_hours"
- ]
- },
- "craft/caterer": {
- "name": "Caterer",
+ ],
"geometry": [
"point",
"area"
],
- "terms": [
- "Caterer",
- "Catering"
- ],
"tags": {
- "craft": "caterer"
+ "craft": "tinsmith"
},
- "icon": "bakery",
+ "name": "Tinsmith"
+ },
+ "craft/upholsterer": {
+ "icon": "marker-stroked",
"fields": [
- "cuisine",
- "building_area",
- "address",
"operator",
+ "address",
+ "building_area",
"opening_hours"
- ]
- },
- "craft/clockmaker": {
- "name": "Clockmaker",
+ ],
"geometry": [
"point",
"area"
],
- "terms": [
- "clock",
- "clockmaker",
- "clock repair"
- ],
"tags": {
- "craft": "clockmaker"
+ "craft": "upholsterer"
},
+ "name": "Upholsterer"
+ },
+ "craft/watchmaker": {
"icon": "circle-stroked",
"fields": [
- "building_area",
- "address",
"operator",
+ "address",
+ "building_area",
"opening_hours"
- ]
- },
- "craft/confectionary": {
- "name": "Confectionary",
+ ],
"geometry": [
"point",
"area"
],
- "terms": [
- "confectionary",
- "sweets",
- "candy"
- ],
"tags": {
- "craft": "confectionary"
+ "craft": "watchmaker"
},
- "icon": "bakery",
+ "name": "Watchmaker"
+ },
+ "craft/window_construction": {
+ "icon": "marker-stroked",
"fields": [
- "building_area",
- "address",
"operator",
+ "address",
+ "building_area",
"opening_hours"
- ]
- },
- "craft/dressmaker": {
- "name": "Dressmaker",
+ ],
"geometry": [
"point",
"area"
],
"terms": [
- "dress",
- "dressmaker"
+ "glass"
],
"tags": {
- "craft": "dressmaker"
+ "craft": "window_construction"
},
- "icon": "clothing-store",
+ "name": "Window Construction"
+ },
+ "craft/winery": {
+ "icon": "alcohol-shop",
"fields": [
- "building_area",
- "address",
"operator",
+ "address",
+ "building_area",
"opening_hours"
- ]
- },
- "craft/electrician": {
- "name": "Electrician",
+ ],
"geometry": [
"point",
"area"
],
- "terms": [
- "electrician"
+ "tags": {
+ "craft": "winery"
+ },
+ "name": "Winery"
+ },
+ "embankment": {
+ "geometry": [
+ "line"
],
"tags": {
- "craft": "electrician"
+ "embankment": "yes"
},
- "icon": "marker-stroked",
+ "name": "Embankment",
+ "matchScore": 0.2
+ },
+ "emergency/ambulance_station": {
+ "icon": "hospital",
"fields": [
- "building_area",
- "address",
"operator",
- "opening_hours"
- ]
- },
- "craft/gardener": {
- "name": "Gardener",
+ "building_area",
+ "address"
+ ],
"geometry": [
"point",
"area"
],
"terms": [
- "gardener",
- "landscaper",
- "grounds keeper"
+ "EMS",
+ "EMT",
+ "rescue"
],
"tags": {
- "craft": "gardener"
+ "emergency": "ambulance_station"
},
- "icon": "garden",
+ "name": "Ambulance Station"
+ },
+ "emergency/fire_hydrant": {
"fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "fire_hydrant/type"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "emergency": "fire_hydrant"
+ },
+ "name": "Fire Hydrant"
},
- "craft/glaziery": {
- "name": "Glaziery",
+ "emergency/phone": {
+ "icon": "emergency-telephone",
+ "fields": [
+ "operator"
+ ],
"geometry": [
"point",
- "area"
+ "vertex"
],
- "terms": [
- "glass",
- "glass foundry",
- "stained-glass",
- "window"
+ "tags": {
+ "emergency": "phone"
+ },
+ "name": "Emergency Phone"
+ },
+ "entrance": {
+ "icon": "entrance",
+ "geometry": [
+ "vertex"
],
"tags": {
- "craft": "glaziery"
+ "entrance": "*"
},
- "icon": "fire-station",
"fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "entrance",
+ "access_simple",
+ "address"
+ ],
+ "name": "Entrance/Exit"
},
- "craft/handicraft": {
- "name": "Handicraft",
+ "footway/crossing": {
+ "fields": [
+ "crossing",
+ "access",
+ "surface",
+ "sloped_curb",
+ "tactile_paving"
+ ],
"geometry": [
- "point",
- "area"
+ "line"
],
- "terms": [
- "handicraft"
+ "tags": {
+ "highway": "footway",
+ "footway": "crossing"
+ },
+ "terms": [],
+ "name": "Crossing"
+ },
+ "footway/crosswalk": {
+ "fields": [
+ "crossing",
+ "access",
+ "surface",
+ "sloped_curb",
+ "tactile_paving"
+ ],
+ "geometry": [
+ "line"
],
"tags": {
- "craft": "handicraft"
+ "highway": "footway",
+ "footway": "crossing",
+ "crossing": "zebra"
},
- "icon": "art-gallery",
+ "terms": [
+ "zebra crossing"
+ ],
+ "name": "Crosswalk"
+ },
+ "footway/sidewalk": {
"fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "surface",
+ "lit",
+ "width",
+ "structure",
+ "access"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "footway",
+ "footway": "sidewalk"
+ },
+ "terms": [],
+ "name": "Sidewalk"
},
- "craft/hvac": {
- "name": "HVAC",
+ "ford": {
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "ford": "yes"
+ },
+ "name": "Ford"
+ },
+ "golf/bunker": {
+ "icon": "golf",
"geometry": [
- "point",
"area"
],
+ "tags": {
+ "golf": "bunker",
+ "natural": "sand"
+ },
"terms": [
- "heating",
- "ventilating",
- "air-conditioning",
- "air conditioning"
+ "hazard",
+ "bunker"
+ ],
+ "name": "Sand Trap"
+ },
+ "golf/fairway": {
+ "icon": "golf",
+ "geometry": [
+ "area"
],
"tags": {
- "craft": "hvac"
+ "golf": "fairway",
+ "landuse": "grass"
},
- "icon": "marker-stroked",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "name": "Fairway"
},
- "craft/insulator": {
- "name": "Insulator",
+ "golf/green": {
+ "icon": "golf",
"geometry": [
- "point",
"area"
],
- "terms": [
- "insulation",
- "insulator"
- ],
"tags": {
- "craft": "insulation"
+ "golf": "green",
+ "landuse": "grass",
+ "leisure": "pitch",
+ "sport": "golf"
},
- "icon": "marker-stroked",
+ "name": "Putting Green"
+ },
+ "golf/hole": {
+ "icon": "golf",
"fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "golf_hole",
+ "par",
+ "handicap"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "golf": "hole"
+ },
+ "name": "Golf Hole"
},
- "craft/jeweler": {
- "name": "Jeweler",
+ "golf/lateral_water_hazard": {
+ "icon": "golf",
"geometry": [
- "point",
+ "line",
"area"
],
- "terms": [
- "jeweler",
- "gem",
- "diamond"
+ "tags": {
+ "golf": "lateral_water_hazard",
+ "natural": "water"
+ },
+ "name": "Lateral Water Hazard"
+ },
+ "golf/rough": {
+ "icon": "golf",
+ "geometry": [
+ "area"
],
"tags": {
- "craft": "jeweler"
+ "golf": "rough",
+ "landuse": "grass"
},
- "icon": "marker-stroked",
- "searchable": false,
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "name": "Rough"
},
- "craft/key_cutter": {
- "name": "Key Cutter",
+ "golf/tee": {
+ "icon": "golf",
"geometry": [
- "point",
"area"
],
+ "tags": {
+ "golf": "tee",
+ "landuse": "grass"
+ },
"terms": [
- "key",
- "key cutter"
+ "teeing ground"
+ ],
+ "name": "Tee Box"
+ },
+ "golf/water_hazard": {
+ "icon": "golf",
+ "geometry": [
+ "line",
+ "area"
],
"tags": {
- "craft": "key_cutter"
+ "golf": "water_hazard",
+ "natural": "water"
},
- "icon": "marker-stroked",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "name": "Water Hazard"
},
- "craft/locksmith": {
- "name": "Locksmith",
+ "highway": {
+ "fields": [
+ "highway"
+ ],
"geometry": [
"point",
+ "vertex",
+ "line",
"area"
],
- "terms": [
- "locksmith",
- "lock"
+ "tags": {
+ "highway": "*"
+ },
+ "name": "Highway"
+ },
+ "highway/bridleway": {
+ "fields": [
+ "surface",
+ "width",
+ "structure",
+ "access"
+ ],
+ "icon": "highway-bridleway",
+ "geometry": [
+ "line"
],
"tags": {
- "craft": "locksmith"
+ "highway": "bridleway"
},
- "icon": "marker-stroked",
- "searchable": false,
+ "terms": [
+ "bridleway",
+ "equestrian",
+ "horse"
+ ],
+ "name": "Bridle Path"
+ },
+ "highway/bus_stop": {
+ "icon": "bus",
"fields": [
- "building_area",
- "address",
"operator",
- "opening_hours"
- ]
- },
- "craft/metal_construction": {
- "name": "Metal Construction",
+ "shelter"
+ ],
"geometry": [
"point",
- "area"
- ],
- "terms": [
- "metal construction"
+ "vertex"
],
"tags": {
- "craft": "metal_construction"
+ "highway": "bus_stop"
},
- "icon": "marker-stroked",
+ "terms": [],
+ "name": "Bus Stop"
+ },
+ "highway/crossing": {
"fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "crossing",
+ "sloped_curb",
+ "tactile_paving"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "highway": "crossing"
+ },
+ "terms": [],
+ "name": "Crossing"
},
- "craft/optician": {
- "name": "Optician",
+ "highway/crosswalk": {
+ "fields": [
+ "crossing",
+ "sloped_curb",
+ "tactile_paving"
+ ],
"geometry": [
- "point",
- "area"
+ "vertex"
],
+ "tags": {
+ "highway": "crossing",
+ "crossing": "zebra"
+ },
"terms": [
- "glasses",
- "optician"
+ "zebra crossing"
+ ],
+ "name": "Crosswalk"
+ },
+ "highway/cycleway": {
+ "icon": "highway-cycleway",
+ "fields": [
+ "surface",
+ "lit",
+ "width",
+ "oneway",
+ "structure",
+ "access"
+ ],
+ "geometry": [
+ "line"
],
"tags": {
- "craft": "optician"
+ "highway": "cycleway"
},
- "icon": "marker-stroked",
- "searchable": false,
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "terms": [
+ "bike"
+ ],
+ "name": "Cycle Path"
},
- "craft/painter": {
- "name": "Painter",
+ "highway/footway": {
+ "icon": "highway-footway",
+ "fields": [
+ "surface",
+ "lit",
+ "width",
+ "structure",
+ "access"
+ ],
"geometry": [
- "point",
+ "line",
"area"
],
"terms": [
- "painter"
+ "hike",
+ "hiking",
+ "trackway",
+ "trail",
+ "walk"
],
"tags": {
- "craft": "painter"
+ "highway": "footway"
},
- "icon": "art-gallery",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "name": "Foot Path"
},
- "craft/photographer": {
- "name": "Photographer",
- "geometry": [
- "point",
- "area"
+ "highway/living_street": {
+ "icon": "highway-living-street",
+ "fields": [
+ "oneway",
+ "maxspeed",
+ "structure",
+ "access",
+ "surface"
],
- "terms": [
- "photographer"
+ "geometry": [
+ "line"
],
"tags": {
- "craft": "photographer"
+ "highway": "living_street"
},
- "icon": "camera",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "name": "Living Street"
},
- "craft/photographic_laboratory": {
- "name": "Photographic Laboratory",
+ "highway/mini_roundabout": {
"geometry": [
- "point",
- "area"
- ],
- "terms": [
- "photographic laboratory",
- "film developer"
+ "vertex"
],
"tags": {
- "craft": "photographic_laboratory"
+ "highway": "mini_roundabout"
},
- "icon": "camera",
"fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "clock_direction"
+ ],
+ "name": "Mini-Roundabout"
},
- "craft/plasterer": {
- "name": "Plasterer",
- "geometry": [
- "point",
- "area"
+ "highway/motorway": {
+ "icon": "highway-motorway",
+ "fields": [
+ "oneway_yes",
+ "maxspeed",
+ "structure",
+ "access",
+ "lanes",
+ "surface",
+ "ref"
],
- "terms": [
- "plasterer"
+ "geometry": [
+ "line"
],
"tags": {
- "craft": "plasterer"
+ "highway": "motorway"
},
- "icon": "marker-stroked",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "terms": [],
+ "name": "Motorway"
},
- "craft/plumber": {
- "name": "Plumber",
+ "highway/motorway_junction": {
"geometry": [
- "point",
- "area"
- ],
- "terms": [
- "pumber"
+ "vertex"
],
"tags": {
- "craft": "plumber"
+ "highway": "motorway_junction"
},
- "icon": "marker-stroked",
"fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "ref"
+ ],
+ "name": "Motorway Junction / Exit"
},
- "craft/pottery": {
- "name": "Pottery",
- "geometry": [
- "point",
- "area"
+ "highway/motorway_link": {
+ "icon": "highway-motorway-link",
+ "fields": [
+ "oneway_yes",
+ "maxspeed",
+ "structure",
+ "access",
+ "surface",
+ "ref"
],
- "terms": [
- "pottery",
- "potter"
+ "geometry": [
+ "line"
],
"tags": {
- "craft": "pottery"
+ "highway": "motorway_link"
},
- "icon": "art-gallery",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "terms": [
+ "ramp",
+ "on ramp",
+ "off ramp"
+ ],
+ "name": "Motorway Link"
},
- "craft/rigger": {
- "name": "Rigger",
+ "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": [
- "point",
- "area"
+ "line"
],
"terms": [
- "rigger"
+ "hike",
+ "hiking",
+ "trackway",
+ "trail",
+ "walk"
],
"tags": {
- "craft": "rigger"
+ "highway": "path"
},
- "icon": "marker-stroked",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "name": "Path"
},
- "craft/roofer": {
- "name": "Roofer",
+ "highway/pedestrian": {
+ "fields": [
+ "surface",
+ "lit",
+ "width",
+ "oneway",
+ "structure",
+ "access"
+ ],
"geometry": [
- "point",
+ "line",
"area"
],
- "terms": [
- "roofer"
- ],
"tags": {
- "craft": "roofer"
+ "highway": "pedestrian"
},
- "icon": "marker-stroked",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "terms": [],
+ "name": "Pedestrian"
},
- "craft/saddler": {
- "name": "Saddler",
- "geometry": [
- "point",
- "area"
+ "highway/primary": {
+ "icon": "highway-primary",
+ "fields": [
+ "oneway",
+ "maxspeed",
+ "structure",
+ "access",
+ "lanes",
+ "surface",
+ "ref"
],
- "terms": [
- "saddler"
+ "geometry": [
+ "line"
],
"tags": {
- "craft": "saddler"
+ "highway": "primary"
},
- "icon": "marker-stroked",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "terms": [],
+ "name": "Primary Road"
},
- "craft/sailmaker": {
- "name": "Sailmaker",
- "geometry": [
- "point",
- "area"
+ "highway/primary_link": {
+ "icon": "highway-primary-link",
+ "fields": [
+ "oneway",
+ "maxspeed",
+ "structure",
+ "access",
+ "surface",
+ "ref"
],
- "terms": [
- "sailmaker"
+ "geometry": [
+ "line"
],
"tags": {
- "craft": "sailmaker"
+ "highway": "primary_link"
},
- "icon": "marker-stroked",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "terms": [
+ "ramp",
+ "on ramp",
+ "off ramp"
+ ],
+ "name": "Primary Link"
},
- "craft/sawmill": {
- "name": "Sawmill",
- "geometry": [
- "point",
- "area"
+ "highway/raceway": {
+ "icon": "highway-unclassified",
+ "fields": [
+ "oneway",
+ "surface",
+ "sport_racing",
+ "structure"
],
- "terms": [
- "sawmill",
- "lumber"
+ "geometry": [
+ "line"
],
"tags": {
- "craft": "sawmill"
+ "highway": "raceway"
},
- "icon": "park",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "addTags": {
+ "highway": "raceway",
+ "sport": "motor"
+ },
+ "terms": [
+ "auto*",
+ "race*",
+ "nascar"
+ ],
+ "name": "Motor Raceway"
},
- "craft/scaffolder": {
- "name": "Scaffolder",
- "geometry": [
- "point",
- "area"
+ "highway/residential": {
+ "icon": "highway-residential",
+ "fields": [
+ "oneway",
+ "maxspeed",
+ "structure",
+ "access",
+ "surface"
],
- "terms": [
- "scaffolder"
+ "geometry": [
+ "line"
],
"tags": {
- "craft": "scaffolder"
+ "highway": "residential"
},
- "icon": "marker-stroked",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "terms": [],
+ "name": "Residential Road"
},
- "craft/sculpter": {
- "name": "Sculpter",
+ "highway/rest_area": {
"geometry": [
"point",
+ "vertex",
"area"
],
+ "tags": {
+ "highway": "rest_area"
+ },
"terms": [
- "sculpter"
+ "rest stop"
+ ],
+ "name": "Rest Area"
+ },
+ "highway/road": {
+ "icon": "highway-road",
+ "fields": [
+ "oneway",
+ "maxspeed",
+ "structure",
+ "access",
+ "surface"
+ ],
+ "geometry": [
+ "line"
],
"tags": {
- "craft": "sculpter"
+ "highway": "road"
},
- "icon": "art-gallery",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "terms": [],
+ "name": "Unknown Road"
},
- "craft/shoemaker": {
- "name": "Shoemaker",
- "geometry": [
- "point",
- "area"
+ "highway/secondary": {
+ "icon": "highway-secondary",
+ "fields": [
+ "oneway",
+ "maxspeed",
+ "structure",
+ "access",
+ "lanes",
+ "surface",
+ "ref"
],
- "terms": [
- "shoe repair",
- "shoemaker"
+ "geometry": [
+ "line"
],
"tags": {
- "craft": "shoemaker"
+ "highway": "secondary"
},
- "icon": "marker-stroked",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "terms": [],
+ "name": "Secondary Road"
},
- "craft/stonemason": {
- "name": "Stonemason",
+ "highway/secondary_link": {
+ "icon": "highway-secondary-link",
+ "fields": [
+ "oneway",
+ "maxspeed",
+ "structure",
+ "access",
+ "surface",
+ "ref"
+ ],
"geometry": [
- "point",
- "area"
+ "line"
],
+ "tags": {
+ "highway": "secondary_link"
+ },
"terms": [
- "stonemason",
- "masonry"
+ "ramp",
+ "on ramp",
+ "off ramp"
+ ],
+ "name": "Secondary Link"
+ },
+ "highway/service": {
+ "icon": "highway-service",
+ "fields": [
+ "service",
+ "oneway",
+ "maxspeed",
+ "structure",
+ "access",
+ "surface"
+ ],
+ "geometry": [
+ "line"
],
"tags": {
- "craft": "stonemason"
+ "highway": "service"
},
- "icon": "marker-stroked",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "terms": [],
+ "name": "Service Road"
},
- "craft/sweep": {
- "name": "Chimney Sweep",
- "geometry": [
- "point",
- "area"
+ "highway/service/alley": {
+ "icon": "highway-service",
+ "fields": [
+ "oneway",
+ "access",
+ "surface"
],
- "terms": [
- "sweep",
- "chimney sweep"
+ "geometry": [
+ "line"
],
"tags": {
- "craft": "sweep"
+ "highway": "service",
+ "service": "alley"
},
- "icon": "marker-stroked",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "name": "Alley"
},
- "craft/tailor": {
- "name": "Tailor",
- "geometry": [
- "point",
- "area"
+ "highway/service/drive-through": {
+ "icon": "highway-service",
+ "fields": [
+ "oneway",
+ "access",
+ "surface"
],
- "terms": [
- "tailor",
- "clothes"
+ "geometry": [
+ "line"
],
"tags": {
- "craft": "tailor"
+ "highway": "service",
+ "service": "drive-through"
},
- "icon": "clothing-store",
+ "name": "Drive-Through"
+ },
+ "highway/service/driveway": {
+ "icon": "highway-service",
"fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
+ "oneway",
+ "access",
+ "surface"
],
- "searchable": false
- },
- "craft/tiler": {
- "name": "Tiler",
"geometry": [
- "point",
- "area"
- ],
- "terms": [
- "tiler"
+ "line"
],
"tags": {
- "craft": "tiler"
+ "highway": "service",
+ "service": "driveway"
},
- "icon": "marker-stroked",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "name": "Driveway"
},
- "craft/tinsmith": {
- "name": "Tinsmith",
- "geometry": [
- "point",
- "area"
+ "highway/service/emergency_access": {
+ "icon": "highway-service",
+ "fields": [
+ "oneway",
+ "access",
+ "surface"
],
- "terms": [
- "tinsmith"
+ "geometry": [
+ "line"
],
"tags": {
- "craft": "tinsmith"
+ "highway": "service",
+ "service": "emergency_access"
},
- "icon": "marker-stroked",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "name": "Emergency Access"
},
- "craft/upholsterer": {
- "name": "Upholsterer",
- "geometry": [
- "point",
- "area"
+ "highway/service/parking_aisle": {
+ "icon": "highway-service",
+ "fields": [
+ "oneway",
+ "access",
+ "surface"
],
- "terms": [
- "upholsterer"
+ "geometry": [
+ "line"
],
"tags": {
- "craft": "upholsterer"
+ "highway": "service",
+ "service": "parking_aisle"
},
- "icon": "marker-stroked",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "name": "Parking Aisle"
},
- "craft/watchmaker": {
- "name": "Watchmaker",
+ "highway/services": {
"geometry": [
"point",
+ "vertex",
"area"
],
- "terms": [
- "watch",
- "watchmaker",
- "watch repair"
- ],
"tags": {
- "craft": "watchmaker"
+ "highway": "services"
},
- "icon": "circle-stroked",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "terms": [
+ "services",
+ "travel plaza",
+ "service station"
+ ],
+ "name": "Service Area"
},
- "craft/window_construction": {
- "name": "Window Construction",
+ "highway/steps": {
+ "fields": [
+ "surface",
+ "lit",
+ "width",
+ "access"
+ ],
+ "icon": "highway-steps",
"geometry": [
- "point",
- "area"
+ "line"
],
+ "tags": {
+ "highway": "steps"
+ },
"terms": [
- "window",
- "window maker",
- "window construction"
+ "stairs",
+ "staircase"
+ ],
+ "name": "Steps"
+ },
+ "highway/stop": {
+ "geometry": [
+ "vertex"
],
"tags": {
- "craft": "window_construction"
+ "highway": "stop"
},
- "icon": "marker-stroked",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "terms": [
+ "stop sign"
+ ],
+ "name": "Stop Sign"
},
- "embankment": {
+ "highway/street_lamp": {
"geometry": [
- "line"
+ "point",
+ "vertex"
],
"tags": {
- "embankment": "yes"
+ "highway": "street_lamp"
},
- "name": "Embankment",
- "matchScore": 0.2
+ "fields": [
+ "lamp_type",
+ "ref"
+ ],
+ "terms": [
+ "streetlight",
+ "street light",
+ "lamp",
+ "light",
+ "gaslight"
+ ],
+ "name": "Street Lamp"
},
- "emergency/ambulance_station": {
+ "highway/tertiary": {
+ "icon": "highway-tertiary",
"fields": [
- "operator"
+ "oneway",
+ "maxspeed",
+ "structure",
+ "access",
+ "lanes",
+ "surface",
+ "ref"
],
"geometry": [
- "area",
- "point",
- "vertex"
+ "line"
],
"tags": {
- "emergency": "ambulance_station"
+ "highway": "tertiary"
},
- "name": "Ambulance Station"
+ "terms": [],
+ "name": "Tertiary Road"
},
- "emergency/fire_hydrant": {
+ "highway/tertiary_link": {
+ "icon": "highway-tertiary-link",
"fields": [
- "fire_hydrant/type"
+ "oneway",
+ "maxspeed",
+ "structure",
+ "access",
+ "surface",
+ "ref"
],
"geometry": [
- "point",
- "vertex"
+ "line"
],
"tags": {
- "emergency": "fire_hydrant"
+ "highway": "tertiary_link"
},
- "name": "Fire Hydrant"
+ "terms": [
+ "ramp",
+ "on ramp",
+ "off ramp"
+ ],
+ "name": "Tertiary Link"
},
- "emergency/phone": {
- "icon": "emergency-telephone",
+ "highway/track": {
+ "icon": "highway-track",
"fields": [
- "operator"
+ "surface",
+ "width",
+ "structure",
+ "access",
+ "incline",
+ "tracktype",
+ "smoothness",
+ "mtb/scale",
+ "mtb/scale/uphill",
+ "mtb/scale/imba"
],
"geometry": [
- "point",
- "vertex"
+ "line"
],
"tags": {
- "emergency": "phone"
+ "highway": "track"
},
- "name": "Emergency Phone"
+ "terms": [
+ "woods road",
+ "fire road"
+ ],
+ "name": "Track"
},
- "entrance": {
- "icon": "entrance",
+ "highway/traffic_signals": {
"geometry": [
"vertex"
],
"tags": {
- "entrance": "*"
+ "highway": "traffic_signals"
},
- "fields": [
- "entrance",
- "access_simple",
- "address"
+ "terms": [
+ "light",
+ "stoplight",
+ "traffic light"
],
- "name": "Entrance/Exit"
+ "name": "Traffic Signals"
},
- "footway/crossing": {
+ "highway/trunk": {
+ "icon": "highway-trunk",
"fields": [
- "crossing",
+ "oneway",
+ "maxspeed",
+ "structure",
"access",
+ "lanes",
"surface",
- "sloped_curb",
- "tactile_paving"
+ "ref"
],
"geometry": [
"line"
],
"tags": {
- "highway": "footway",
- "footway": "crossing"
+ "highway": "trunk"
},
"terms": [],
- "name": "Crossing"
+ "name": "Trunk Road"
},
- "footway/crosswalk": {
+ "highway/trunk_link": {
+ "icon": "highway-trunk-link",
"fields": [
- "crossing",
+ "oneway",
+ "maxspeed",
+ "structure",
"access",
"surface",
- "sloped_curb",
- "tactile_paving"
+ "ref"
],
"geometry": [
"line"
],
"tags": {
- "highway": "footway",
- "footway": "crossing",
- "crossing": "zebra"
+ "highway": "trunk_link"
},
"terms": [
- "crosswalk",
- "zebra crossing"
+ "ramp",
+ "on ramp",
+ "off ramp"
],
- "name": "Crosswalk"
+ "name": "Trunk Link"
},
- "footway/sidewalk": {
+ "highway/turning_circle": {
+ "icon": "circle",
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "highway": "turning_circle"
+ },
+ "terms": [
+ "cul-de-sac"
+ ],
+ "name": "Turning Circle"
+ },
+ "highway/unclassified": {
+ "icon": "highway-unclassified",
"fields": [
- "surface",
- "lit",
- "width",
+ "oneway",
+ "maxspeed",
"structure",
- "access"
+ "access",
+ "surface"
],
"geometry": [
"line"
],
"tags": {
- "highway": "footway",
- "footway": "sidewalk"
+ "highway": "unclassified"
},
"terms": [],
- "name": "Sidewalk"
+ "name": "Unclassified Road"
},
- "ford": {
+ "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": {
- "ford": "yes"
+ "historic": "boundary_stone"
},
- "name": "Ford"
+ "name": "Boundary Stone"
},
- "golf/bunker": {
- "icon": "golf",
+ "historic/castle": {
"geometry": [
+ "point",
"area"
],
"tags": {
- "golf": "bunker",
- "natural": "sand"
+ "historic": "castle"
},
- "terms": [
- "hazard",
- "bunker"
+ "name": "Castle"
+ },
+ "historic/memorial": {
+ "icon": "monument",
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
],
- "name": "Sand Trap"
+ "tags": {
+ "historic": "memorial"
+ },
+ "name": "Memorial"
},
- "golf/fairway": {
- "icon": "golf",
+ "historic/monument": {
+ "icon": "monument",
"geometry": [
+ "point",
+ "vertex",
"area"
],
"tags": {
- "golf": "fairway",
- "landuse": "grass"
+ "historic": "monument"
},
- "name": "Fairway"
+ "name": "Monument"
},
- "golf/green": {
- "icon": "golf",
+ "historic/ruins": {
"geometry": [
+ "point",
+ "vertex",
"area"
],
"tags": {
- "golf": "green",
- "landuse": "grass",
- "leisure": "pitch",
- "sport": "golf"
+ "historic": "ruins"
},
- "terms": [
- "putting green"
+ "name": "Ruins"
+ },
+ "historic/wayside_cross": {
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
],
- "name": "Putting Green"
+ "tags": {
+ "historic": "wayside_cross"
+ },
+ "name": "Wayside Cross"
},
- "golf/hole": {
- "icon": "golf",
+ "historic/wayside_shrine": {
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "historic": "wayside_shrine"
+ },
+ "name": "Wayside Shrine"
+ },
+ "landuse": {
"fields": [
- "golf_hole",
- "par",
- "handicap"
+ "landuse"
],
"geometry": [
- "line"
+ "point",
+ "vertex",
+ "area"
],
"tags": {
- "golf": "hole"
+ "landuse": "*"
},
- "name": "Golf Hole"
+ "name": "Landuse"
},
- "golf/lateral_water_hazard": {
- "icon": "golf",
+ "landuse/allotments": {
"geometry": [
- "line",
+ "point",
"area"
],
"tags": {
- "golf": "lateral_water_hazard",
- "natural": "water"
+ "landuse": "allotments"
},
- "name": "Lateral Water Hazard"
+ "terms": [],
+ "name": "Allotments"
},
- "golf/rough": {
- "icon": "golf",
+ "landuse/basin": {
"geometry": [
+ "point",
"area"
],
"tags": {
- "golf": "rough",
- "landuse": "grass"
+ "landuse": "basin"
},
- "name": "Rough"
+ "terms": [],
+ "name": "Basin"
},
- "golf/tee": {
- "icon": "golf",
+ "landuse/cemetery": {
+ "icon": "cemetery",
+ "fields": [
+ "religion",
+ "denomination"
+ ],
"geometry": [
+ "point",
+ "vertex",
"area"
],
"tags": {
- "golf": "tee",
- "landuse": "grass"
+ "landuse": "cemetery"
},
- "terms": [
- "teeing ground"
+ "terms": [],
+ "name": "Cemetery"
+ },
+ "landuse/churchyard": {
+ "fields": [
+ "religion",
+ "denomination"
],
- "name": "Tee Box"
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "churchyard"
+ },
+ "terms": [],
+ "name": "Churchyard"
},
- "golf/water_hazard": {
- "icon": "golf",
+ "landuse/commercial": {
+ "icon": "commercial",
"geometry": [
- "line",
+ "point",
"area"
],
"tags": {
- "golf": "water_hazard",
- "natural": "water"
+ "landuse": "commercial"
},
- "name": "Water Hazard"
+ "terms": [],
+ "name": "Commercial"
},
- "highway": {
+ "landuse/construction": {
"fields": [
- "highway"
+ "construction",
+ "operator"
],
"geometry": [
"point",
- "vertex",
- "line",
"area"
],
"tags": {
- "highway": "*"
+ "landuse": "construction"
},
- "name": "Highway"
+ "terms": [],
+ "name": "Construction"
},
- "highway/bridleway": {
+ "landuse/farm": {
"fields": [
- "surface",
- "width",
- "structure",
- "access"
+ "crop"
],
- "icon": "highway-bridleway",
"geometry": [
- "line"
+ "point",
+ "area"
],
"tags": {
- "highway": "bridleway"
+ "landuse": "farm"
},
- "terms": [
- "bridleway",
- "equestrian trail",
- "horse riding path",
- "bridle road",
- "horse trail"
- ],
- "name": "Bridle Path"
+ "terms": [],
+ "name": "Farm",
+ "icon": "farm"
},
- "highway/bus_stop": {
- "icon": "bus",
+ "landuse/farmland": {
"fields": [
- "operator",
- "shelter"
+ "crop"
],
"geometry": [
"point",
- "vertex"
+ "area"
],
"tags": {
- "highway": "bus_stop"
+ "landuse": "farmland"
},
"terms": [],
- "name": "Bus Stop"
+ "name": "Farmland",
+ "icon": "farm",
+ "searchable": false
},
- "highway/crossing": {
+ "landuse/farmyard": {
"fields": [
- "crossing",
- "sloped_curb",
- "tactile_paving"
+ "crop"
],
"geometry": [
- "vertex"
+ "point",
+ "area"
],
"tags": {
- "highway": "crossing"
+ "landuse": "farmyard"
},
"terms": [],
- "name": "Crossing"
+ "name": "Farmyard",
+ "icon": "farm"
},
- "highway/crosswalk": {
+ "landuse/forest": {
"fields": [
- "crossing",
- "sloped_curb",
- "tactile_paving"
+ "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": [
- "vertex"
+ "area"
],
"tags": {
- "highway": "crossing",
- "crossing": "zebra"
+ "landuse": "landfill"
},
"terms": [
- "crosswalk",
- "zebra crossing"
+ "dump"
],
- "name": "Crosswalk"
+ "name": "Landfill"
},
- "highway/cycleway": {
- "icon": "highway-cycleway",
- "fields": [
- "surface",
- "lit",
- "width",
- "oneway",
- "structure",
- "access"
- ],
+ "landuse/meadow": {
"geometry": [
- "line"
+ "point",
+ "area"
],
"tags": {
- "highway": "cycleway"
+ "landuse": "meadow"
},
"terms": [],
- "name": "Cycle Path"
+ "name": "Meadow"
},
- "highway/footway": {
- "icon": "highway-footway",
- "fields": [
- "surface",
- "lit",
- "width",
- "structure",
- "access"
- ],
+ "landuse/military": {
"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"
+ "landuse": "military"
},
- "name": "Foot Path"
+ "terms": [],
+ "name": "Military"
},
- "highway/living_street": {
- "icon": "highway-living-street",
+ "landuse/orchard": {
"fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "surface"
+ "trees"
],
"geometry": [
- "line"
+ "point",
+ "area"
],
"tags": {
- "highway": "living_street"
+ "landuse": "orchard"
},
- "name": "Living Street"
+ "terms": [],
+ "name": "Orchard",
+ "icon": "park2"
},
- "highway/mini_roundabout": {
+ "landuse/quarry": {
"geometry": [
- "vertex"
+ "point",
+ "area"
],
"tags": {
- "highway": "mini_roundabout"
+ "landuse": "quarry"
},
- "fields": [
- "clock_direction"
- ],
- "name": "Mini-Roundabout"
+ "terms": [],
+ "name": "Quarry"
},
- "highway/motorway": {
- "icon": "highway-motorway",
- "fields": [
- "oneway_yes",
- "maxspeed",
- "structure",
- "access",
- "lanes",
- "surface",
- "ref"
- ],
+ "landuse/residential": {
+ "icon": "building",
"geometry": [
- "line"
+ "point",
+ "area"
],
"tags": {
- "highway": "motorway"
+ "landuse": "residential"
},
"terms": [],
- "name": "Motorway"
+ "name": "Residential"
},
- "highway/motorway_junction": {
+ "landuse/retail": {
+ "icon": "shop",
"geometry": [
- "vertex"
+ "point",
+ "area"
],
"tags": {
- "highway": "motorway_junction"
+ "landuse": "retail"
},
- "fields": [
- "ref"
+ "name": "Retail"
+ },
+ "landuse/vineyard": {
+ "geometry": [
+ "point",
+ "area"
],
- "name": "Motorway Junction / Exit"
+ "tags": {
+ "landuse": "vineyard"
+ },
+ "terms": [],
+ "name": "Vineyard"
},
- "highway/motorway_link": {
- "icon": "highway-motorway-link",
+ "leisure": {
"fields": [
- "oneway_yes",
- "maxspeed",
- "structure",
- "access",
- "surface",
- "ref"
+ "leisure"
],
"geometry": [
- "line"
+ "point",
+ "vertex",
+ "area"
],
"tags": {
- "highway": "motorway_link"
+ "leisure": "*"
},
+ "name": "Leisure"
+ },
+ "leisure/common": {
+ "geometry": [
+ "point",
+ "area"
+ ],
"terms": [
- "ramp",
- "on ramp",
- "off ramp"
+ "open space"
],
- "name": "Motorway Link"
+ "tags": {
+ "leisure": "common"
+ },
+ "name": "Common"
},
- "highway/path": {
- "icon": "highway-path",
- "fields": [
- "surface",
- "width",
- "structure",
- "access",
- "incline",
- "sac_scale",
- "trail_visibility",
- "mtb/scale",
- "mtb/scale/uphill",
- "mtb/scale/imba",
- "ref"
- ],
+ "leisure/dog_park": {
+ "icon": "dog-park",
"geometry": [
- "line"
+ "point",
+ "area"
],
+ "terms": [],
"tags": {
- "highway": "path"
+ "leisure": "dog_park"
},
- "terms": [],
- "name": "Path"
+ "name": "Dog Park"
},
- "highway/pedestrian": {
- "fields": [
- "surface",
- "lit",
- "width",
- "oneway",
- "structure",
- "access"
- ],
+ "leisure/firepit": {
"geometry": [
- "line",
+ "point",
"area"
],
"tags": {
- "highway": "pedestrian"
+ "leisure": "firepit"
},
- "terms": [],
- "name": "Pedestrian"
- },
- "highway/primary": {
- "icon": "highway-primary",
- "fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "lanes",
- "surface",
- "ref"
+ "terms": [
+ "fireplace",
+ "campfire"
],
+ "name": "Firepit"
+ },
+ "leisure/garden": {
+ "icon": "garden",
"geometry": [
- "line"
+ "point",
+ "vertex",
+ "area"
],
"tags": {
- "highway": "primary"
+ "leisure": "garden"
},
- "terms": [],
- "name": "Primary Road"
+ "name": "Garden"
},
- "highway/primary_link": {
- "icon": "highway-primary-link",
+ "leisure/golf_course": {
+ "icon": "golf",
"fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "surface",
- "ref"
+ "operator",
+ "address",
+ "opening_hours"
],
"geometry": [
- "line"
+ "point",
+ "area"
],
- "tags": {
- "highway": "primary_link"
- },
"terms": [
- "ramp",
- "on ramp",
- "off ramp"
+ "links"
],
- "name": "Primary Link"
+ "tags": {
+ "leisure": "golf_course"
+ },
+ "name": "Golf Course"
},
- "highway/residential": {
- "icon": "highway-residential",
+ "leisure/ice_rink": {
+ "icon": "pitch",
"fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "surface"
+ "seasonal",
+ "sport_ice",
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
- "line"
+ "point",
+ "area"
+ ],
+ "terms": [
+ "hockey",
+ "skating",
+ "curling"
],
"tags": {
- "highway": "residential"
+ "leisure": "ice_rink"
},
- "terms": [],
- "name": "Residential Road"
+ "name": "Ice Rink"
},
- "highway/rest_area": {
+ "leisure/marina": {
+ "icon": "harbor",
"geometry": [
"point",
"vertex",
"area"
],
+ "terms": [
+ "boat"
+ ],
"tags": {
- "highway": "rest_area"
+ "leisure": "marina"
},
+ "name": "Marina"
+ },
+ "leisure/park": {
+ "icon": "park",
+ "geometry": [
+ "point",
+ "area"
+ ],
"terms": [
- "rest stop",
- "turnout",
- "lay-by"
+ "esplanade",
+ "estate",
+ "forest",
+ "garden",
+ "grass",
+ "green",
+ "grounds",
+ "lawn",
+ "lot",
+ "meadow",
+ "parkland",
+ "place",
+ "playground",
+ "plaza",
+ "pleasure garden",
+ "recreation area",
+ "square",
+ "tract",
+ "village green",
+ "woodland"
],
- "name": "Rest Area"
+ "tags": {
+ "leisure": "park"
+ },
+ "name": "Park"
},
- "highway/road": {
- "icon": "highway-road",
- "fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "surface"
- ],
+ "leisure/picnic_table": {
"geometry": [
- "line"
+ "point"
],
"tags": {
- "highway": "road"
+ "leisure": "picnic_table"
},
- "terms": [],
- "name": "Unknown Road"
+ "terms": [
+ "bench"
+ ],
+ "name": "Picnic Table"
},
- "highway/secondary": {
- "icon": "highway-secondary",
+ "leisure/pitch": {
+ "icon": "pitch",
"fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "lanes",
+ "sport",
"surface",
- "ref"
+ "lit"
],
"geometry": [
- "line"
+ "point",
+ "area"
],
"tags": {
- "highway": "secondary"
+ "leisure": "pitch"
},
- "terms": [],
- "name": "Secondary Road"
+ "terms": [
+ "field"
+ ],
+ "name": "Sport Pitch"
},
- "highway/secondary_link": {
- "icon": "highway-secondary-link",
+ "leisure/pitch/american_football": {
+ "icon": "america-football",
"fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
"surface",
- "ref"
+ "lit"
],
"geometry": [
- "line"
+ "point",
+ "area"
],
"tags": {
- "highway": "secondary_link"
+ "leisure": "pitch",
+ "sport": "american_football"
},
- "terms": [
- "ramp",
- "on ramp",
- "off ramp"
- ],
- "name": "Secondary Link"
+ "terms": [],
+ "name": "American Football Field"
},
- "highway/service": {
- "icon": "highway-service",
+ "leisure/pitch/baseball": {
+ "icon": "baseball",
"fields": [
- "service",
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "surface"
+ "lit"
],
"geometry": [
- "line"
+ "point",
+ "area"
],
"tags": {
- "highway": "service"
+ "leisure": "pitch",
+ "sport": "baseball"
},
"terms": [],
- "name": "Service Road"
+ "name": "Baseball Diamond"
},
- "highway/service/alley": {
- "icon": "highway-service",
+ "leisure/pitch/basketball": {
+ "icon": "basketball",
"fields": [
- "oneway",
- "access",
- "surface"
+ "surface",
+ "hoops",
+ "lit"
],
"geometry": [
- "line"
+ "point",
+ "area"
],
"tags": {
- "highway": "service",
- "service": "alley"
+ "leisure": "pitch",
+ "sport": "basketball"
},
- "name": "Alley"
+ "terms": [],
+ "name": "Basketball Court"
},
- "highway/service/drive-through": {
- "icon": "highway-service",
+ "leisure/pitch/skateboard": {
+ "icon": "pitch",
"fields": [
- "oneway",
- "access",
- "surface"
+ "surface",
+ "lit"
],
"geometry": [
- "line"
+ "point",
+ "area"
],
"tags": {
- "highway": "service",
- "service": "drive-through"
+ "leisure": "pitch",
+ "sport": "skateboard"
},
- "name": "Drive-Through"
+ "terms": [],
+ "name": "Skate Park"
},
- "highway/service/driveway": {
- "icon": "highway-service",
+ "leisure/pitch/soccer": {
+ "icon": "soccer",
"fields": [
- "oneway",
- "access",
- "surface"
+ "surface",
+ "lit"
],
"geometry": [
- "line"
+ "point",
+ "area"
],
"tags": {
- "highway": "service",
- "service": "driveway"
+ "leisure": "pitch",
+ "sport": "soccer"
},
- "name": "Driveway"
+ "terms": [],
+ "name": "Soccer Field"
},
- "highway/service/emergency_access": {
- "icon": "highway-service",
+ "leisure/pitch/tennis": {
+ "icon": "tennis",
"fields": [
- "oneway",
- "access",
- "surface"
+ "surface",
+ "lit"
],
"geometry": [
- "line"
+ "point",
+ "area"
],
"tags": {
- "highway": "service",
- "service": "emergency_access"
+ "leisure": "pitch",
+ "sport": "tennis"
},
- "name": "Emergency Access"
+ "terms": [],
+ "name": "Tennis Court"
},
- "highway/service/parking_aisle": {
- "icon": "highway-service",
+ "leisure/pitch/volleyball": {
+ "icon": "pitch",
"fields": [
- "oneway",
- "access",
- "surface"
+ "surface",
+ "lit"
],
"geometry": [
- "line"
+ "point",
+ "area"
],
"tags": {
- "highway": "service",
- "service": "parking_aisle"
+ "leisure": "pitch",
+ "sport": "volleyball"
},
- "name": "Parking Aisle"
+ "terms": [],
+ "name": "Volleyball Court"
},
- "highway/services": {
+ "leisure/playground": {
+ "icon": "playground",
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "jungle gym",
+ "play area"
+ ],
"tags": {
- "highway": "services"
+ "leisure": "playground"
},
- "terms": [
- "services",
- "travel plaza",
- "service station"
- ],
- "name": "Service Area"
+ "name": "Playground"
},
- "highway/steps": {
+ "leisure/running_track": {
+ "icon": "pitch",
"fields": [
"surface",
+ "sport_racing",
"lit",
"width",
- "access"
+ "lanes"
],
- "icon": "highway-steps",
"geometry": [
+ "point",
"line"
],
"tags": {
- "highway": "steps"
+ "leisure": "track",
+ "sport": "running"
},
- "terms": [
- "stairs",
- "staircase"
- ],
- "name": "Steps"
+ "name": "Running Track"
},
- "highway/stop": {
+ "leisure/slipway": {
"geometry": [
- "vertex"
+ "point",
+ "line"
],
- "tags": {
- "highway": "stop"
- },
"terms": [
- "stop sign"
+ "boat launch",
+ "boat ramp"
],
- "name": "Stop Sign"
+ "tags": {
+ "leisure": "slipway"
+ },
+ "name": "Slipway"
},
- "highway/street_lamp": {
+ "leisure/sports_center": {
+ "icon": "pitch",
+ "fields": [
+ "sport",
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
"point",
- "vertex"
+ "area"
],
"tags": {
- "highway": "street_lamp"
+ "leisure": "sports_centre"
},
- "fields": [
- "lamp_type",
- "ref"
- ],
"terms": [
- "streetlight",
- "street light",
- "lamp",
- "light",
- "gaslight"
+ "gym"
],
- "name": "Street Lamp"
+ "name": "Sports Center / Gym"
},
- "highway/tertiary": {
- "icon": "highway-tertiary",
+ "leisure/stadium": {
+ "icon": "pitch",
"fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "lanes",
- "surface",
- "ref"
+ "sport",
+ "address"
],
"geometry": [
- "line"
+ "point",
+ "area"
],
"tags": {
- "highway": "tertiary"
+ "leisure": "stadium"
},
- "terms": [],
- "name": "Tertiary Road"
+ "name": "Stadium"
},
- "highway/tertiary_link": {
- "icon": "highway-tertiary-link",
+ "leisure/swimming_pool": {
+ "icon": "swimming",
"fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "surface",
- "ref"
+ "access_simple",
+ "operator",
+ "address"
],
"geometry": [
- "line"
+ "point",
+ "vertex",
+ "area"
],
"tags": {
- "highway": "tertiary_link"
+ "leisure": "swimming_pool"
},
- "terms": [
- "ramp",
- "on ramp",
- "off ramp"
- ],
- "name": "Tertiary Link"
+ "name": "Swimming Pool"
},
- "highway/track": {
- "icon": "highway-track",
+ "leisure/track": {
+ "icon": "highway-road",
"fields": [
"surface",
+ "sport_racing",
+ "lit",
"width",
- "structure",
- "access",
- "incline",
- "tracktype",
- "smoothness",
- "mtb/scale",
- "mtb/scale/uphill",
- "mtb/scale/imba"
+ "lanes"
],
"geometry": [
+ "point",
"line"
],
"tags": {
- "highway": "track"
+ "leisure": "track"
},
- "terms": [],
- "name": "Track"
+ "name": "Racetrack (non-Motorsport)"
},
- "highway/traffic_signals": {
+ "line": {
+ "name": "Line",
+ "tags": {},
"geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "traffic_signals"
- },
- "terms": [
- "light",
- "stoplight",
- "traffic light"
+ "line"
],
- "name": "Traffic Signals"
+ "matchScore": 0.1
},
- "highway/trunk": {
- "icon": "highway-trunk",
+ "man_made": {
"fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "lanes",
- "surface",
- "ref"
+ "man_made"
],
"geometry": [
- "line"
+ "point",
+ "vertex",
+ "line",
+ "area"
],
"tags": {
- "highway": "trunk"
+ "man_made": "*"
},
- "terms": [],
- "name": "Trunk Road"
+ "name": "Man Made"
},
- "highway/trunk_link": {
- "icon": "highway-trunk-link",
- "fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "surface",
- "ref"
- ],
+ "man_made/breakwater": {
"geometry": [
- "line"
+ "line",
+ "area"
],
"tags": {
- "highway": "trunk_link"
+ "man_made": "breakwater"
},
- "terms": [
- "ramp",
- "on ramp",
- "off ramp"
- ],
- "name": "Trunk Link"
+ "name": "Breakwater"
},
- "highway/turning_circle": {
- "icon": "circle",
+ "man_made/cutline": {
"geometry": [
- "vertex"
+ "line"
],
"tags": {
- "highway": "turning_circle"
+ "man_made": "cutline"
},
- "terms": [],
- "name": "Turning Circle"
+ "name": "Cut line"
},
- "highway/unclassified": {
- "icon": "highway-unclassified",
- "fields": [
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "surface"
- ],
+ "man_made/embankment": {
"geometry": [
"line"
],
"tags": {
- "highway": "unclassified"
+ "man_made": "embankment"
},
- "terms": [],
- "name": "Unclassified Road"
+ "name": "Embankment",
+ "searchable": false
},
- "historic": {
- "fields": [
- "historic"
- ],
+ "man_made/flagpole": {
"geometry": [
- "point",
- "vertex",
- "area"
+ "point"
],
"tags": {
- "historic": "*"
+ "man_made": "flagpole"
},
- "name": "Historic Site"
+ "name": "Flagpole",
+ "icon": "embassy"
},
- "historic/archaeological_site": {
+ "man_made/lighthouse": {
+ "icon": "lighthouse",
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "historic": "archaeological_site"
+ "man_made": "lighthouse"
},
- "name": "Archaeological Site"
+ "name": "Lighthouse"
},
- "historic/boundary_stone": {
+ "man_made/observation": {
"geometry": [
"point",
- "vertex"
+ "area"
+ ],
+ "terms": [
+ "lookout tower",
+ "fire tower"
],
"tags": {
- "historic": "boundary_stone"
+ "man_made": "tower",
+ "tower:type": "observation"
},
- "name": "Boundary Stone"
+ "name": "Observation Tower"
},
- "historic/castle": {
+ "man_made/pier": {
"geometry": [
- "point",
- "vertex",
+ "line",
"area"
],
"tags": {
- "historic": "castle"
+ "man_made": "pier"
},
- "name": "Castle"
+ "name": "Pier"
},
- "historic/memorial": {
- "icon": "monument",
+ "man_made/pipeline": {
+ "icon": "pipeline",
+ "fields": [
+ "location",
+ "operator"
+ ],
"geometry": [
- "point",
- "vertex",
- "area"
+ "line"
],
"tags": {
- "historic": "memorial"
+ "man_made": "pipeline"
},
- "name": "Memorial"
+ "name": "Pipeline"
},
- "historic/monument": {
+ "man_made/survey_point": {
"icon": "monument",
+ "fields": [
+ "ref"
+ ],
"geometry": [
"point",
- "vertex",
- "area"
+ "vertex"
],
"tags": {
- "historic": "monument"
+ "man_made": "survey_point"
},
- "name": "Monument"
+ "name": "Survey Point"
},
- "historic/ruins": {
+ "man_made/tower": {
+ "fields": [
+ "towertype"
+ ],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "historic": "ruins"
+ "man_made": "tower"
},
- "name": "Ruins"
+ "name": "Tower"
},
- "historic/wayside_cross": {
+ "man_made/wastewater_plant": {
+ "icon": "water",
+ "fields": [
+ "operator",
+ "address"
+ ],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "sewage*",
+ "water treatment plant",
+ "reclamation plant"
+ ],
"tags": {
- "historic": "wayside_cross"
+ "man_made": "wastewater_plant"
},
- "name": "Wayside Cross"
+ "name": "Wastewater Plant"
},
- "historic/wayside_shrine": {
+ "man_made/water_tower": {
+ "icon": "water",
+ "fields": [
+ "operator"
+ ],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "historic": "wayside_shrine"
+ "man_made": "water_tower"
},
- "name": "Wayside Shrine"
+ "name": "Water Tower"
},
- "landuse": {
+ "man_made/water_well": {
"fields": [
- "landuse"
+ "operator"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "landuse": "*"
+ "man_made": "water_well"
},
- "name": "Landuse"
+ "name": "Water Well"
},
- "landuse/allotments": {
+ "man_made/water_works": {
+ "icon": "water",
+ "fields": [
+ "operator",
+ "address"
+ ],
"geometry": [
"point",
"area"
],
"tags": {
- "landuse": "allotments"
+ "man_made": "water_works"
},
- "terms": [],
- "name": "Allotments"
+ "name": "Water Works"
},
- "landuse/basin": {
+ "military/airfield": {
+ "icon": "airfield",
"geometry": [
"point",
+ "vertex",
"area"
],
+ "terms": [],
"tags": {
- "landuse": "basin"
+ "military": "airfield"
},
- "terms": [],
- "name": "Basin"
+ "name": "Airfield"
},
- "landuse/cemetery": {
- "icon": "cemetery",
- "fields": [
- "religion",
- "denomination"
- ],
+ "military/barracks": {
"geometry": [
"point",
"vertex",
"area"
],
- "tags": {
- "landuse": "cemetery"
- },
"terms": [],
- "name": "Cemetery"
- },
- "landuse/churchyard": {
- "fields": [
- "religion",
- "denomination"
- ],
- "geometry": [
- "area"
- ],
"tags": {
- "landuse": "churchyard"
+ "military": "barracks"
},
- "terms": [],
- "name": "Churchyard"
+ "name": "Barracks"
},
- "landuse/commercial": {
- "icon": "commercial",
+ "military/bunker": {
"geometry": [
"point",
+ "vertex",
"area"
],
+ "terms": [],
"tags": {
- "landuse": "commercial"
+ "military": "bunker"
},
- "terms": [],
- "name": "Commercial"
+ "name": "Bunker"
},
- "landuse/construction": {
- "fields": [
- "construction",
- "operator"
- ],
+ "military/range": {
"geometry": [
"point",
+ "vertex",
"area"
],
+ "terms": [],
"tags": {
- "landuse": "construction"
+ "military": "range"
},
- "terms": [],
- "name": "Construction"
+ "name": "Military Range"
},
- "landuse/farm": {
+ "natural": {
"fields": [
- "crop"
+ "natural"
],
"geometry": [
"point",
+ "vertex",
"area"
],
"tags": {
- "landuse": "farm"
+ "natural": "*"
},
- "terms": [],
- "name": "Farm",
- "icon": "farm"
+ "name": "Natural"
},
- "landuse/farmland": {
- "fields": [
- "crop"
- ],
+ "natural/bay": {
"geometry": [
"point",
"area"
],
+ "terms": [],
"tags": {
- "landuse": "farmland"
+ "natural": "bay"
},
- "terms": [],
- "name": "Farmland",
- "icon": "farm",
- "searchable": false
+ "name": "Bay"
},
- "landuse/farmyard": {
+ "natural/beach": {
"fields": [
- "crop"
+ "surface"
],
"geometry": [
"point",
"area"
],
+ "terms": [],
"tags": {
- "landuse": "farmyard"
+ "natural": "beach"
},
- "terms": [],
- "name": "Farmyard",
- "icon": "farm"
+ "name": "Beach"
},
- "landuse/forest": {
- "fields": [
- "wood"
- ],
- "icon": "park2",
+ "natural/cliff": {
"geometry": [
"point",
+ "vertex",
+ "line",
"area"
],
+ "terms": [],
"tags": {
- "landuse": "forest"
+ "natural": "cliff"
},
- "terms": [],
- "name": "Forest"
+ "name": "Cliff"
},
- "landuse/grass": {
+ "natural/coastline": {
"geometry": [
- "point",
- "area"
+ "line"
+ ],
+ "terms": [
+ "shore"
],
"tags": {
- "landuse": "grass"
+ "natural": "coastline"
},
- "terms": [],
- "name": "Grass"
+ "name": "Coastline"
},
- "landuse/industrial": {
- "icon": "industrial",
+ "natural/fell": {
"geometry": [
- "point",
"area"
],
+ "terms": [],
"tags": {
- "landuse": "industrial"
+ "natural": "fell"
},
- "terms": [],
- "name": "Industrial"
+ "name": "Fell"
},
- "landuse/landfill": {
+ "natural/glacier": {
"geometry": [
"area"
],
+ "terms": [],
"tags": {
- "landuse": "landfill"
+ "natural": "glacier"
},
- "terms": [
- "dump"
- ],
- "name": "Landfill"
+ "name": "Glacier"
},
- "landuse/meadow": {
+ "natural/grassland": {
"geometry": [
"point",
"area"
],
+ "terms": [],
"tags": {
- "landuse": "meadow"
+ "natural": "grassland"
},
- "terms": [],
- "name": "Meadow"
+ "name": "Grassland"
},
- "landuse/military": {
+ "natural/heath": {
"geometry": [
"area"
],
+ "terms": [],
"tags": {
- "landuse": "military"
+ "natural": "heath"
},
- "terms": [],
- "name": "Military"
+ "name": "Heath"
},
- "landuse/orchard": {
+ "natural/peak": {
+ "icon": "triangle",
"fields": [
- "trees"
+ "elevation"
],
"geometry": [
"point",
- "area"
+ "vertex"
+ ],
+ "tags": {
+ "natural": "peak"
+ },
+ "terms": [
+ "acme",
+ "aiguille",
+ "alp",
+ "climax",
+ "crest",
+ "crown",
+ "hill",
+ "mount",
+ "mountain",
+ "pinnacle",
+ "summit",
+ "tip",
+ "top"
],
- "tags": {
- "landuse": "orchard"
- },
- "terms": [],
- "name": "Orchard",
- "icon": "park2"
+ "name": "Peak"
},
- "landuse/quarry": {
+ "natural/scree": {
"geometry": [
- "point",
"area"
],
"tags": {
- "landuse": "quarry"
+ "natural": "scree"
},
- "terms": [],
- "name": "Quarry"
+ "terms": [
+ "loose rocks"
+ ],
+ "name": "Scree"
},
- "landuse/residential": {
- "icon": "building",
+ "natural/scrub": {
"geometry": [
- "point",
"area"
],
"tags": {
- "landuse": "residential"
+ "natural": "scrub"
},
"terms": [],
- "name": "Residential"
+ "name": "Scrub"
},
- "landuse/retail": {
- "icon": "shop",
+ "natural/spring": {
"geometry": [
"point",
- "area"
+ "vertex"
],
+ "terms": [],
"tags": {
- "landuse": "retail"
+ "natural": "spring"
},
- "name": "Retail"
+ "name": "Spring"
},
- "landuse/vineyard": {
+ "natural/tree": {
+ "fields": [
+ "tree_type",
+ "denotation"
+ ],
+ "icon": "park",
"geometry": [
"point",
- "area"
+ "vertex"
],
+ "terms": [],
"tags": {
- "landuse": "vineyard"
+ "natural": "tree"
},
- "terms": [],
- "name": "Vineyard"
+ "name": "Tree"
},
- "leisure": {
+ "natural/water": {
"fields": [
- "leisure"
+ "water"
],
"geometry": [
- "point",
- "vertex",
"area"
],
"tags": {
- "leisure": "*"
+ "natural": "water"
},
- "name": "Leisure"
+ "icon": "water",
+ "name": "Water"
},
- "leisure/common": {
+ "natural/water/lake": {
"geometry": [
- "point",
"area"
],
- "terms": [
- "open space"
- ],
"tags": {
- "leisure": "common"
+ "natural": "water",
+ "water": "lake"
},
- "name": "Common"
- },
- "leisure/dog_park": {
- "geometry": [
- "point",
- "area"
+ "terms": [
+ "lakelet",
+ "loch",
+ "mere"
],
- "terms": [],
- "tags": {
- "leisure": "dog_park"
- },
- "name": "Dog Park",
- "icon": "dog-park"
+ "icon": "water",
+ "name": "Lake"
},
- "leisure/firepit": {
+ "natural/water/pond": {
"geometry": [
- "point",
"area"
],
"tags": {
- "leisure": "firepit"
+ "natural": "water",
+ "water": "pond"
},
"terms": [
- "fireplace",
- "campfire"
+ "lakelet",
+ "millpond",
+ "tarn",
+ "pool",
+ "mere"
],
- "name": "Firepit"
+ "icon": "water",
+ "name": "Pond"
},
- "leisure/garden": {
- "icon": "garden",
+ "natural/water/reservoir": {
"geometry": [
- "point",
- "vertex",
"area"
],
"tags": {
- "leisure": "garden"
+ "natural": "water",
+ "water": "reservoir"
},
- "name": "Garden"
+ "icon": "water",
+ "name": "Reservoir"
},
- "leisure/golf_course": {
- "icon": "golf",
+ "natural/wetland": {
+ "icon": "wetland",
"fields": [
- "operator",
- "address"
+ "wetland"
],
"geometry": [
"point",
"area"
],
"tags": {
- "leisure": "golf_course"
+ "natural": "wetland"
},
- "terms": [
- "links"
- ],
- "name": "Golf Course"
+ "terms": [],
+ "name": "Wetland"
},
- "leisure/ice_rink": {
- "icon": "pitch",
+ "natural/wood": {
"fields": [
- "building_area",
- "seasonal",
- "sport_ice"
+ "wood"
],
+ "icon": "park2",
"geometry": [
"point",
"area"
],
- "terms": [
- "hockey",
- "skating",
- "curling"
- ],
"tags": {
- "leisure": "ice_rink"
+ "natural": "wood"
},
- "name": "Ice Rink"
+ "terms": [],
+ "name": "Wood"
},
- "leisure/marina": {
- "icon": "harbor",
+ "office": {
+ "icon": "commercial",
+ "fields": [
+ "office",
+ "address",
+ "building_area",
+ "opening_hours",
+ "smoking"
+ ],
"geometry": [
"point",
"vertex",
"area"
],
"tags": {
- "leisure": "marina"
+ "office": "*"
},
- "name": "Marina"
+ "terms": [],
+ "name": "Office"
},
- "leisure/park": {
- "icon": "park",
+ "office/accountant": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
"point",
+ "vertex",
"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"
+ "office": "accountant"
},
- "terms": [
- "bench",
- "table"
- ],
- "name": "Picnic Table"
+ "terms": [],
+ "name": "Accountant"
},
- "leisure/pitch": {
- "icon": "pitch",
+ "office/administrative": {
+ "icon": "commercial",
"fields": [
- "sport",
- "surface",
- "lit"
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
+ "vertex",
"area"
],
"tags": {
- "leisure": "pitch"
+ "office": "administrative"
},
"terms": [],
- "name": "Sport Pitch"
+ "name": "Administrative Office"
},
- "leisure/pitch/american_football": {
- "icon": "america-football",
+ "office/architect": {
+ "icon": "commercial",
"fields": [
- "surface",
- "lit"
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
+ "vertex",
"area"
],
"tags": {
- "leisure": "pitch",
- "sport": "american_football"
+ "office": "architect"
},
"terms": [],
- "name": "American Football Field"
+ "name": "Architect"
},
- "leisure/pitch/baseball": {
- "icon": "baseball",
+ "office/company": {
+ "icon": "commercial",
"fields": [
- "lit"
+ "address",
+ "building_area",
+ "opening_hours",
+ "smoking"
],
"geometry": [
"point",
+ "vertex",
"area"
],
"tags": {
- "leisure": "pitch",
- "sport": "baseball"
+ "office": "company"
},
"terms": [],
- "name": "Baseball Diamond"
+ "name": "Company Office"
},
- "leisure/pitch/basketball": {
- "icon": "basketball",
+ "office/educational_institution": {
+ "icon": "commercial",
"fields": [
- "surface",
- "hoops",
- "lit"
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
+ "vertex",
"area"
],
"tags": {
- "leisure": "pitch",
- "sport": "basketball"
+ "office": "educational_institution"
},
"terms": [],
- "name": "Basketball Court"
+ "name": "Educational Institution"
},
- "leisure/pitch/skateboard": {
- "icon": "pitch",
+ "office/employment_agency": {
+ "icon": "commercial",
"fields": [
- "surface",
- "lit"
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
+ "vertex",
"area"
],
"tags": {
- "leisure": "pitch",
- "sport": "skateboard"
+ "office": "employment_agency"
},
- "terms": [],
- "name": "Skate Park"
+ "terms": [
+ "job"
+ ],
+ "name": "Employment Agency"
},
- "leisure/pitch/soccer": {
- "icon": "soccer",
+ "office/estate_agent": {
+ "icon": "commercial",
"fields": [
- "surface",
- "lit"
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
+ "vertex",
"area"
],
"tags": {
- "leisure": "pitch",
- "sport": "soccer"
+ "office": "estate_agent"
},
"terms": [],
- "name": "Soccer Field"
+ "name": "Real Estate Office"
},
- "leisure/pitch/tennis": {
- "icon": "tennis",
+ "office/financial": {
+ "icon": "commercial",
"fields": [
- "surface",
- "lit"
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
+ "vertex",
"area"
],
"tags": {
- "leisure": "pitch",
- "sport": "tennis"
+ "office": "financial"
},
"terms": [],
- "name": "Tennis Court"
+ "name": "Financial Office"
},
- "leisure/pitch/volleyball": {
- "icon": "pitch",
+ "office/government": {
+ "icon": "commercial",
"fields": [
- "surface",
- "lit"
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
+ "vertex",
"area"
],
"tags": {
- "leisure": "pitch",
- "sport": "volleyball"
+ "office": "government"
},
"terms": [],
- "name": "Volleyball Court"
+ "name": "Government Office"
},
- "leisure/playground": {
- "icon": "playground",
+ "office/insurance": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
"point",
+ "vertex",
"area"
],
"tags": {
- "leisure": "playground"
+ "office": "insurance"
},
- "name": "Playground",
- "terms": [
- "jungle gym",
- "play area"
- ]
+ "terms": [],
+ "name": "Insurance Office"
},
- "leisure/slipway": {
+ "office/it": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
"point",
- "line"
+ "vertex",
+ "area"
],
"tags": {
- "leisure": "slipway"
+ "office": "it"
},
- "name": "Slipway"
+ "terms": [],
+ "name": "IT Office"
},
- "leisure/sports_center": {
- "icon": "pitch",
+ "office/lawyer": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
"point",
+ "vertex",
"area"
],
"tags": {
- "leisure": "sports_centre"
+ "office": "lawyer"
},
- "terms": [
- "gym"
- ],
+ "terms": [],
+ "name": "Law Office"
+ },
+ "office/newspaper": {
+ "icon": "commercial",
"fields": [
- "sport"
+ "address",
+ "building_area",
+ "opening_hours"
],
- "name": "Sports Center / Gym"
- },
- "leisure/stadium": {
- "icon": "pitch",
"geometry": [
"point",
+ "vertex",
"area"
],
"tags": {
- "leisure": "stadium"
+ "office": "newspaper"
},
- "fields": [
- "sport"
- ],
- "name": "Stadium"
+ "terms": [],
+ "name": "Newspaper"
},
- "leisure/swimming_pool": {
+ "office/ngo": {
+ "icon": "commercial",
"fields": [
- "access_simple"
+ "address",
+ "building_area",
+ "opening_hours",
+ "smoking"
],
"geometry": [
"point",
"area"
],
"tags": {
- "leisure": "swimming_pool"
+ "office": "ngo"
},
- "icon": "swimming",
- "name": "Swimming Pool"
+ "terms": [],
+ "name": "NGO Office"
},
- "leisure/track": {
- "icon": "pitch",
+ "office/physician": {
+ "icon": "commercial",
"fields": [
- "surface",
- "lit",
- "width"
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "line",
+ "vertex",
"area"
],
"tags": {
- "leisure": "track"
+ "office": "physician"
},
- "name": "Race Track"
- },
- "line": {
- "name": "Line",
- "tags": {},
- "geometry": [
- "line"
- ],
- "matchScore": 0.1
+ "terms": [],
+ "name": "Physician"
},
- "man_made": {
+ "office/political_party": {
+ "icon": "commercial",
"fields": [
- "man_made"
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
"vertex",
- "line",
"area"
],
"tags": {
- "man_made": "*"
+ "office": "political_party"
},
- "name": "Man Made"
+ "terms": [],
+ "name": "Political Party"
},
- "man_made/breakwater": {
+ "office/research": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
- "line",
+ "point",
+ "vertex",
"area"
],
"tags": {
- "man_made": "breakwater"
+ "office": "research"
},
- "name": "Breakwater"
+ "terms": [],
+ "name": "Research Office"
},
- "man_made/cutline": {
- "geometry": [
- "line"
+ "office/telecommunication": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "building_area",
+ "opening_hours"
],
- "tags": {
- "man_made": "cutline"
- },
- "name": "Cut line"
- },
- "man_made/embankment": {
"geometry": [
- "line"
+ "point",
+ "vertex",
+ "area"
],
"tags": {
- "man_made": "embankment"
+ "office": "telecommunication"
},
- "name": "Embankment",
- "searchable": false
+ "terms": [],
+ "name": "Telecom Office"
},
- "man_made/flagpole": {
+ "office/therapist": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
- "point"
+ "point",
+ "vertex",
+ "area"
],
"tags": {
- "man_made": "flagpole"
+ "office": "therapist"
},
- "name": "Flagpole",
- "icon": "embassy"
+ "terms": [],
+ "name": "Therapist"
},
- "man_made/lighthouse": {
+ "office/travel_agent": {
+ "icon": "suitcase",
+ "fields": [
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
"point",
+ "vertex",
"area"
],
"tags": {
- "man_made": "lighthouse"
+ "office": "travel_agent"
},
- "name": "Lighthouse",
- "icon": "lighthouse"
+ "terms": [],
+ "name": "Travel Agency",
+ "searchable": false
},
- "man_made/observation": {
+ "piste": {
+ "icon": "skiing",
+ "fields": [
+ "piste/type",
+ "piste/difficulty",
+ "piste/grooming",
+ "oneway",
+ "lit"
+ ],
"geometry": [
"point",
+ "line",
"area"
],
"terms": [
- "lookout tower",
- "fire tower"
+ "ski",
+ "sled",
+ "sleigh",
+ "snowboard",
+ "nordic",
+ "downhill",
+ "snowmobile"
],
"tags": {
- "man_made": "tower",
- "tower:type": "observation"
+ "piste:type": "*"
},
- "name": "Observation Tower"
+ "name": "Piste/Ski Trail"
},
- "man_made/pier": {
+ "place": {
+ "fields": [
+ "place"
+ ],
"geometry": [
- "line",
+ "point",
+ "vertex",
"area"
],
"tags": {
- "man_made": "pier"
+ "place": "*"
},
- "name": "Pier"
+ "name": "Place"
},
- "man_made/pipeline": {
- "geometry": [
- "line"
- ],
- "tags": {
- "man_made": "pipeline"
- },
+ "place/city": {
+ "icon": "city",
"fields": [
- "location",
- "operator"
+ "population"
],
- "name": "Pipeline",
- "icon": "pipeline"
- },
- "man_made/survey_point": {
- "icon": "monument",
"geometry": [
"point",
- "vertex"
+ "area"
],
"tags": {
- "man_made": "survey_point"
+ "place": "city"
},
+ "name": "City"
+ },
+ "place/hamlet": {
+ "icon": "triangle-stroked",
"fields": [
- "ref"
+ "population"
],
- "name": "Survey Point"
- },
- "man_made/tower": {
"geometry": [
"point",
"area"
],
"tags": {
- "man_made": "tower"
+ "place": "hamlet"
},
- "fields": [
- "towertype"
- ],
- "name": "Tower"
+ "name": "Hamlet"
},
- "man_made/wastewater_plant": {
- "icon": "water",
+ "place/island": {
"geometry": [
"point",
"area"
],
+ "terms": [
+ "archipelago",
+ "atoll",
+ "bar",
+ "cay",
+ "isle",
+ "islet",
+ "key",
+ "reef"
+ ],
"tags": {
- "man_made": "wastewater_plant"
+ "place": "island"
},
- "name": "Wastewater Plant",
- "terms": [
- "sewage works",
- "sewage treatment plant",
- "water treatment plant",
- "reclamation plant"
- ]
+ "name": "Island"
},
- "man_made/water_tower": {
- "icon": "water",
+ "place/isolated_dwelling": {
"geometry": [
"point",
"area"
],
"tags": {
- "man_made": "water_tower"
+ "place": "isolated_dwelling"
},
- "name": "Water Tower"
+ "name": "Isolated Dwelling"
},
- "man_made/water_well": {
+ "place/locality": {
+ "icon": "marker",
+ "fields": [
+ "population"
+ ],
"geometry": [
"point",
"area"
],
"tags": {
- "man_made": "water_well"
+ "place": "locality"
},
- "name": "Water well"
+ "name": "Locality"
},
- "man_made/water_works": {
- "icon": "water",
+ "place/neighbourhood": {
+ "icon": "triangle-stroked",
+ "fields": [
+ "population"
+ ],
"geometry": [
"point",
"area"
],
"tags": {
- "man_made": "water_works"
+ "place": "neighbourhood"
},
- "name": "Water Works"
+ "terms": [
+ "neighbourhood"
+ ],
+ "name": "Neighborhood"
},
- "military/airfield": {
+ "place/suburb": {
+ "icon": "triangle-stroked",
+ "fields": [
+ "population"
+ ],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "military": "airfield"
+ "place": "suburb"
},
- "terms": [],
- "name": "Airfield",
- "icon": "airfield"
+ "terms": [
+ "Boro",
+ "Quarter"
+ ],
+ "name": "Borough"
},
- "military/barracks": {
+ "place/town": {
+ "icon": "town",
+ "fields": [
+ "population"
+ ],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "military": "barracks"
+ "place": "town"
},
- "terms": [],
- "name": "Barracks"
+ "name": "Town"
},
- "military/bunker": {
+ "place/village": {
+ "icon": "village",
+ "fields": [
+ "population"
+ ],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "military": "bunker"
+ "place": "village"
},
- "terms": [],
- "name": "Bunker"
+ "name": "Village"
},
- "military/range": {
+ "point": {
+ "name": "Point",
+ "tags": {},
+ "geometry": [
+ "point"
+ ],
+ "matchScore": 0.1
+ },
+ "power": {
"geometry": [
"point",
"vertex",
+ "line",
"area"
],
"tags": {
- "military": "range"
+ "power": "*"
},
- "terms": [],
- "name": "Military Range"
+ "fields": [
+ "power"
+ ],
+ "name": "Power"
},
- "natural": {
+ "power/generator": {
"fields": [
- "natural"
+ "operator",
+ "generator/source",
+ "generator/method",
+ "generator/type"
],
"geometry": [
"point",
"area"
],
"tags": {
- "natural": "*"
+ "power": "generator"
},
- "name": "Natural"
+ "name": "Power Generator"
},
- "natural/bay": {
+ "power/line": {
"geometry": [
- "point",
- "area"
+ "line"
],
- "terms": [],
"tags": {
- "natural": "bay"
+ "power": "line"
},
- "name": "Bay"
+ "name": "Power Line",
+ "icon": "power-line"
},
- "natural/beach": {
- "fields": [
- "surface"
- ],
+ "power/minor_line": {
"geometry": [
- "point",
- "area"
+ "line"
],
- "terms": [],
"tags": {
- "natural": "beach"
+ "power": "minor_line"
},
- "name": "Beach"
+ "name": "Minor Power Line",
+ "icon": "power-line"
},
- "natural/cliff": {
+ "power/pole": {
"geometry": [
- "point",
- "vertex",
- "line",
- "area"
+ "vertex"
],
- "terms": [],
"tags": {
- "natural": "cliff"
+ "power": "pole"
},
- "name": "Cliff"
+ "name": "Power Pole"
},
- "natural/coastline": {
- "geometry": [
- "line"
+ "power/sub_station": {
+ "fields": [
+ "operator",
+ "building"
],
- "terms": [
- "shore"
+ "geometry": [
+ "point",
+ "area"
],
"tags": {
- "natural": "coastline"
+ "power": "sub_station"
},
- "name": "Coastline"
+ "name": "Substation",
+ "searchable": false
},
- "natural/fell": {
+ "power/substation": {
+ "fields": [
+ "operator",
+ "building"
+ ],
"geometry": [
+ "point",
"area"
],
- "terms": [],
"tags": {
- "natural": "fell"
+ "power": "substation"
},
- "name": "Fell"
+ "name": "Substation"
},
- "natural/glacier": {
+ "power/tower": {
"geometry": [
- "area"
+ "vertex"
],
- "terms": [],
"tags": {
- "natural": "glacier"
+ "power": "tower"
},
- "name": "Glacier"
+ "name": "High-Voltage Tower"
},
- "natural/grassland": {
+ "power/transformer": {
"geometry": [
"point",
+ "vertex",
"area"
],
- "terms": [],
"tags": {
- "natural": "grassland"
+ "power": "transformer"
},
- "name": "Grassland"
+ "name": "Transformer"
},
- "natural/heath": {
+ "public_transport/platform": {
+ "fields": [
+ "ref",
+ "operator",
+ "network",
+ "shelter"
+ ],
"geometry": [
+ "point",
+ "vertex",
+ "line",
"area"
],
- "terms": [],
"tags": {
- "natural": "heath"
+ "public_transport": "platform"
},
- "name": "Heath"
+ "name": "Platform"
},
- "natural/peak": {
- "icon": "triangle",
+ "public_transport/stop_position": {
+ "icon": "bus",
"fields": [
- "elevation"
+ "ref",
+ "operator",
+ "network"
],
"geometry": [
- "point",
"vertex"
],
"tags": {
- "natural": "peak"
+ "public_transport": "stop_position"
},
- "terms": [
- "acme",
- "aiguille",
- "alp",
- "climax",
- "crest",
- "crown",
- "hill",
- "mount",
- "mountain",
- "pinnacle",
- "summit",
- "tip",
- "top"
- ],
- "name": "Peak"
+ "name": "Stop Position"
},
- "natural/scree": {
+ "railway": {
+ "fields": [
+ "railway"
+ ],
"geometry": [
+ "point",
+ "vertex",
+ "line",
"area"
],
"tags": {
- "natural": "scree"
+ "railway": "*"
},
- "terms": [
- "loose rocks"
- ],
- "name": "Scree"
+ "name": "Railway"
},
- "natural/scrub": {
+ "railway/abandoned": {
+ "icon": "railway-abandoned",
"geometry": [
- "area"
+ "line"
],
"tags": {
- "natural": "scrub"
+ "railway": "abandoned"
},
+ "fields": [
+ "structure"
+ ],
"terms": [],
- "name": "Scrub"
+ "name": "Abandoned Railway"
},
- "natural/spring": {
+ "railway/disused": {
+ "icon": "railway-disused",
"geometry": [
- "point",
- "vertex"
+ "line"
],
- "terms": [],
"tags": {
- "natural": "spring"
+ "railway": "disused"
},
- "name": "Spring"
- },
- "natural/tree": {
"fields": [
- "tree_type",
- "denotation"
+ "structure"
],
- "icon": "park",
+ "terms": [],
+ "name": "Disused Railway"
+ },
+ "railway/funicular": {
"geometry": [
- "point",
- "vertex"
+ "line"
+ ],
+ "terms": [
+ "venicular",
+ "cliff railway",
+ "cable car",
+ "cable railway",
+ "funicular railway"
+ ],
+ "fields": [
+ "structure",
+ "gauge"
],
- "terms": [],
"tags": {
- "natural": "tree"
+ "railway": "funicular"
},
- "name": "Tree"
+ "icon": "railway-rail",
+ "name": "Funicular"
},
- "natural/water": {
- "fields": [
- "water"
- ],
+ "railway/halt": {
+ "icon": "rail",
"geometry": [
- "area"
+ "point",
+ "vertex"
],
"tags": {
- "natural": "water"
+ "railway": "halt"
},
- "icon": "water",
- "name": "Water"
+ "name": "Railway Halt",
+ "terms": [
+ "break",
+ "interrupt",
+ "rest",
+ "wait",
+ "interruption"
+ ]
},
- "natural/water/lake": {
+ "railway/level_crossing": {
+ "icon": "cross",
"geometry": [
- "area"
+ "vertex"
],
"tags": {
- "natural": "water",
- "water": "lake"
+ "railway": "level_crossing"
},
"terms": [
- "lakelet",
- "loch",
- "mere"
+ "crossing",
+ "railroad crossing",
+ "railway crossing",
+ "grade crossing",
+ "road through railroad",
+ "train crossing"
],
- "icon": "water",
- "name": "Lake"
+ "name": "Level Crossing"
},
- "natural/water/pond": {
+ "railway/monorail": {
+ "icon": "railway-monorail",
"geometry": [
- "area"
+ "line"
],
"tags": {
- "natural": "water",
- "water": "pond"
+ "railway": "monorail"
},
- "terms": [
- "lakelet",
- "millpond",
- "tarn",
- "pool",
- "mere"
+ "fields": [
+ "structure",
+ "electrified"
],
- "icon": "water",
- "name": "Pond"
+ "terms": [],
+ "name": "Monorail"
},
- "natural/water/reservoir": {
+ "railway/narrow_gauge": {
+ "icon": "railway-rail",
"geometry": [
- "area"
+ "line"
],
"tags": {
- "natural": "water",
- "water": "reservoir"
+ "railway": "narrow_gauge"
},
- "icon": "water",
- "name": "Reservoir"
- },
- "natural/wetland": {
- "icon": "wetland",
"fields": [
- "wetland"
+ "structure",
+ "gauge",
+ "electrified"
+ ],
+ "terms": [
+ "narrow gauge railway",
+ "narrow gauge railroad"
],
+ "name": "Narrow Gauge Rail"
+ },
+ "railway/platform": {
"geometry": [
"point",
+ "vertex",
+ "line",
"area"
],
"tags": {
- "natural": "wetland"
+ "railway": "platform"
},
- "terms": [],
- "name": "Wetland"
+ "name": "Railway Platform"
},
- "natural/wood": {
- "fields": [
- "wood"
- ],
- "icon": "park2",
+ "railway/rail": {
+ "icon": "railway-rail",
"geometry": [
- "point",
- "area"
+ "line"
],
"tags": {
- "natural": "wood"
+ "railway": "rail"
},
+ "fields": [
+ "structure",
+ "gauge",
+ "electrified"
+ ],
"terms": [],
- "name": "Wood"
+ "name": "Rail"
},
- "office": {
- "icon": "commercial",
+ "railway/station": {
+ "icon": "rail",
"fields": [
- "office",
+ "operator",
"address",
- "opening_hours",
- "smoking"
+ "building_area"
],
"geometry": [
"point",
"area"
],
"tags": {
- "office": "*"
+ "railway": "station"
},
- "terms": [],
- "name": "Office"
+ "terms": [
+ "train station",
+ "station"
+ ],
+ "name": "Railway Station"
},
- "office/accountant": {
- "icon": "commercial",
+ "railway/subway": {
+ "icon": "railway-subway",
"fields": [
- "address",
- "opening_hours"
+ "structure",
+ "gauge",
+ "electrified"
],
"geometry": [
- "point",
- "vertex",
- "area"
+ "line"
],
"tags": {
- "office": "accountant"
+ "railway": "subway"
},
"terms": [],
- "name": "Accountant"
+ "name": "Subway"
},
- "office/administrative": {
- "icon": "commercial",
- "fields": [
- "address",
- "opening_hours"
- ],
+ "railway/subway_entrance": {
+ "icon": "rail-metro",
"geometry": [
- "point",
- "vertex",
- "area"
+ "point"
],
"tags": {
- "office": "administrative"
+ "railway": "subway_entrance"
},
"terms": [],
- "name": "Administrative Office"
+ "name": "Subway Entrance"
},
- "office/architect": {
- "icon": "commercial",
- "fields": [
- "address",
- "opening_hours"
- ],
+ "railway/tram": {
+ "icon": "railway-light-rail",
"geometry": [
- "point",
- "vertex",
- "area"
+ "line"
],
"tags": {
- "office": "architect"
+ "railway": "tram"
},
- "terms": [],
- "name": "Architect"
- },
- "office/company": {
- "icon": "commercial",
"fields": [
- "address",
- "opening_hours",
- "smoking"
+ "structure",
+ "gauge",
+ "electrified"
+ ],
+ "terms": [
+ "streetcar"
+ ],
+ "name": "Tram"
+ },
+ "relation": {
+ "name": "Relation",
+ "icon": "relation",
+ "tags": {},
+ "geometry": [
+ "relation"
],
+ "fields": [
+ "relation"
+ ]
+ },
+ "route/ferry": {
+ "icon": "ferry",
"geometry": [
- "point",
- "vertex",
- "area"
+ "line"
],
"tags": {
- "office": "company"
+ "route": "ferry"
},
- "terms": [],
- "name": "Company Office"
+ "name": "Ferry Route"
},
- "office/educational_institution": {
- "icon": "commercial",
+ "shop": {
+ "icon": "shop",
"fields": [
+ "shop",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "office": "educational_institution"
+ "shop": "*"
},
"terms": [],
- "name": "Educational Institution"
+ "name": "Shop"
},
- "office/employment_agency": {
- "icon": "commercial",
+ "shop/alcohol": {
+ "icon": "alcohol-shop",
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "alcohol",
+ "beer",
+ "booze",
+ "wine"
+ ],
"tags": {
- "office": "employment_agency"
+ "shop": "alcohol"
},
- "terms": [],
- "name": "Employment Agency"
+ "name": "Liquor Store"
},
- "office/estate_agent": {
- "icon": "commercial",
+ "shop/anime": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "office": "estate_agent"
+ "shop": "anime"
},
- "terms": [],
- "name": "Real Estate Office"
+ "name": "Anime Shop"
},
- "office/financial": {
- "icon": "commercial",
+ "shop/antiques": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "office": "financial"
+ "shop": "antiques"
},
- "terms": [],
- "name": "Financial Office"
+ "name": "Antiques Shop"
},
- "office/government": {
- "icon": "commercial",
+ "shop/art": {
+ "icon": "art-gallery",
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "office": "government"
+ "shop": "art"
},
- "terms": [],
- "name": "Government Office"
+ "name": "Art Gallery"
},
- "office/insurance": {
- "icon": "commercial",
+ "shop/baby_goods": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "office": "insurance"
+ "shop": "baby_goods"
},
- "terms": [],
- "name": "Insurance Office"
+ "name": "Baby Goods Store"
},
- "office/it": {
- "icon": "commercial",
+ "shop/bag": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "handbag",
+ "purse"
+ ],
"tags": {
- "office": "it"
+ "shop": "bag"
},
- "terms": [],
- "name": "IT Office"
+ "name": "Bag/Luggage Store"
},
- "office/lawyer": {
- "icon": "commercial",
+ "shop/bakery": {
+ "icon": "bakery",
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "office": "lawyer"
+ "shop": "bakery"
},
- "terms": [],
- "name": "Law Office"
+ "name": "Bakery"
},
- "office/newspaper": {
- "icon": "commercial",
+ "shop/bathroom_furnishing": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "office": "newspaper"
+ "shop": "bathroom_furnishing"
},
- "terms": [],
- "name": "Newspaper"
+ "name": "Bathroom Furnishing Store"
},
- "office/ngo": {
- "icon": "commercial",
+ "shop/beauty": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
- "opening_hours",
- "smoking"
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "nail spa",
+ "spa",
+ "salon",
+ "tanning"
+ ],
"tags": {
- "office": "ngo"
+ "shop": "beauty"
},
- "terms": [],
- "name": "NGO Office"
+ "name": "Beauty Shop"
},
- "office/physician": {
- "icon": "commercial",
+ "shop/bed": {
+ "icon": "lodging",
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "office": "physician"
+ "shop": "bed"
},
- "terms": [],
- "name": "Physician"
+ "name": "Bedding/Mattress Store"
},
- "office/political_party": {
- "icon": "commercial",
+ "shop/beverages": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "office": "political_party"
+ "shop": "beverages"
},
- "terms": [],
- "name": "Political Party"
+ "name": "Beverage Store"
},
- "office/research": {
- "icon": "commercial",
+ "shop/bicycle": {
+ "icon": "bicycle",
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "office": "research"
+ "shop": "bicycle"
},
- "terms": [],
- "name": "Research Office"
+ "name": "Bicycle Shop"
},
- "office/telecommunication": {
- "icon": "commercial",
+ "shop/bookmaker": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "office": "telecommunication"
+ "shop": "bookmaker"
},
- "terms": [],
- "name": "Telecom Office"
+ "name": "Bookmaker"
},
- "office/therapist": {
- "icon": "commercial",
+ "shop/books": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "office": "therapist"
+ "shop": "books"
},
- "terms": [],
- "name": "Therapist"
+ "name": "Book Store"
},
- "office/travel_agent": {
- "icon": "suitcase",
+ "shop/boutique": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "office": "travel_agent"
+ "shop": "boutique"
},
- "terms": [],
- "name": "Travel Agency",
- "searchable": false
+ "name": "Boutique"
},
- "piste": {
- "icon": "skiing",
+ "shop/butcher": {
+ "icon": "slaughterhouse",
"fields": [
- "piste/type",
- "piste/difficulty",
- "piste/grooming",
- "oneway",
- "lit"
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "line",
"area"
],
"terms": [
- "ski",
- "sled",
- "sleigh",
- "snowboard",
- "nordic",
- "downhill",
- "snowmobile"
+ "meat"
],
"tags": {
- "piste:type": "*"
+ "shop": "butcher"
},
- "name": "Piste/Ski Trail"
+ "name": "Butcher"
},
- "place": {
+ "shop/candles": {
+ "icon": "shop",
"fields": [
- "place"
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "place": "*"
+ "shop": "candles"
},
- "name": "Place"
+ "name": "Candle Shop"
},
- "place/city": {
- "icon": "city",
+ "shop/car": {
+ "icon": "car",
"fields": [
- "population"
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
"area"
],
+ "terms": [
+ "auto"
+ ],
"tags": {
- "place": "city"
+ "shop": "car"
},
- "name": "City"
+ "name": "Car Dealership"
},
- "place/hamlet": {
- "icon": "triangle-stroked",
+ "shop/car_parts": {
+ "icon": "car",
"fields": [
- "population"
- ],
- "geometry": [
- "point",
- "area"
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
- "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"
+ "auto"
],
"tags": {
- "place": "isolated_dwelling"
+ "shop": "car_parts"
},
- "name": "Isolated Dwelling"
+ "name": "Car Parts Store"
},
- "place/locality": {
- "icon": "marker",
+ "shop/car_repair": {
+ "icon": "car",
"fields": [
- "population"
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
"area"
],
+ "terms": [
+ "auto"
+ ],
"tags": {
- "place": "locality"
+ "shop": "car_repair"
},
- "name": "Locality"
+ "name": "Car Repair Shop"
},
- "place/neighbourhood": {
- "icon": "triangle-stroked",
+ "shop/carpet": {
+ "icon": "shop",
"fields": [
- "population"
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
"area"
],
- "tags": {
- "place": "neighbourhood"
- },
"terms": [
- "neighbourhood"
+ "rug"
],
- "name": "Neighborhood"
+ "tags": {
+ "shop": "carpet"
+ },
+ "name": "Carpet Store"
},
- "place/suburb": {
- "icon": "triangle-stroked",
+ "shop/cheese": {
+ "icon": "shop",
"fields": [
- "population"
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
"area"
],
"tags": {
- "place": "suburb"
+ "shop": "cheese"
},
- "terms": [
- "Boro",
- "Quarter"
- ],
- "name": "Borough"
+ "name": "Cheese Store"
},
- "place/town": {
- "icon": "town",
+ "shop/chemist": {
+ "icon": "chemist",
"fields": [
- "population"
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
"area"
],
"tags": {
- "place": "town"
+ "shop": "chemist"
},
- "name": "Town"
+ "name": "Chemist"
},
- "place/village": {
- "icon": "village",
+ "shop/chocolate": {
+ "icon": "shop",
"fields": [
- "population"
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
"area"
],
"tags": {
- "place": "village"
+ "shop": "chocolate"
},
- "name": "Village"
+ "name": "Chocolate Store"
},
- "point": {
- "name": "Point",
- "tags": {},
- "geometry": [
- "point"
+ "shop/clothes": {
+ "icon": "clothing-store",
+ "fields": [
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
- "matchScore": 0.1
- },
- "power": {
"geometry": [
"point",
- "vertex",
- "line",
"area"
],
"tags": {
- "power": "*"
+ "shop": "clothes"
},
+ "name": "Clothing Store"
+ },
+ "shop/computer": {
+ "icon": "shop",
"fields": [
- "power"
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
- "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"
+ "shop": "computer"
},
- "name": "Minor Power Line",
- "icon": "power-line"
+ "name": "Computer Store"
},
- "power/pole": {
+ "shop/confectionery": {
+ "icon": "shop",
+ "fields": [
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
- "vertex"
+ "point",
+ "area"
],
"tags": {
- "power": "pole"
+ "shop": "confectionery"
},
- "name": "Power Pole"
+ "name": "Candy Store"
},
- "power/sub_station": {
+ "shop/convenience": {
+ "icon": "shop",
"fields": [
"operator",
- "building"
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
"area"
],
"tags": {
- "power": "sub_station"
+ "shop": "convenience"
},
- "name": "Substation"
+ "name": "Convenience Store"
},
- "power/tower": {
- "geometry": [
- "vertex"
+ "shop/copyshop": {
+ "icon": "shop",
+ "fields": [
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
- "tags": {
- "power": "tower"
- },
- "name": "High-Voltage Tower"
- },
- "power/transformer": {
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "power": "transformer"
+ "shop": "copyshop"
},
- "name": "Transformer"
+ "name": "Copy Store"
},
- "public_transport/platform": {
+ "shop/cosmetics": {
+ "icon": "shop",
"fields": [
- "ref",
"operator",
- "network",
- "shelter"
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
- "line",
"area"
],
"tags": {
- "public_transport": "platform"
+ "shop": "cosmetics"
},
- "name": "Platform"
+ "name": "Cosmetics Store"
},
- "public_transport/stop_position": {
- "icon": "bus",
+ "shop/craft": {
+ "icon": "art-gallery",
"fields": [
- "ref",
"operator",
- "network"
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
- "vertex"
+ "point",
+ "area"
],
"tags": {
- "public_transport": "stop_position"
+ "shop": "craft"
},
- "name": "Stop Position"
+ "name": "Arts and Crafts Store"
},
- "railway": {
+ "shop/curtain": {
+ "icon": "shop",
"fields": [
- "railway"
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
- "line",
"area"
],
- "tags": {
- "railway": "*"
- },
- "name": "Railway"
- },
- "railway/abandoned": {
- "icon": "railway-abandoned",
- "geometry": [
- "line"
+ "terms": [
+ "drape*",
+ "window"
],
"tags": {
- "railway": "abandoned"
+ "shop": "curtain"
},
+ "name": "Curtain Store"
+ },
+ "shop/dairy": {
+ "icon": "shop",
"fields": [
- "structure"
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
- "terms": [],
- "name": "Abandoned Railway"
- },
- "railway/disused": {
- "icon": "railway-disused",
"geometry": [
- "line"
+ "point",
+ "area"
+ ],
+ "terms": [
+ "milk",
+ "egg",
+ "cheese"
],
"tags": {
- "railway": "disused"
+ "shop": "dairy"
},
+ "name": "Dairy Store"
+ },
+ "shop/deli": {
+ "icon": "restaurant",
"fields": [
- "structure"
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
- "terms": [],
- "name": "Disused Railway"
- },
- "railway/funicular": {
"geometry": [
- "line"
+ "point",
+ "area"
],
"terms": [
- "venicular",
- "cliff railway",
- "cable car",
- "cable railway",
- "funicular railway"
- ],
- "fields": [
- "structure",
- "gauge"
+ "lunch",
+ "meat",
+ "sandwich"
],
"tags": {
- "railway": "funicular"
+ "shop": "deli"
},
- "icon": "railway-rail",
- "name": "Funicular"
+ "name": "Deli"
},
- "railway/halt": {
- "icon": "rail",
+ "shop/department_store": {
+ "icon": "shop",
+ "fields": [
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
"point",
- "vertex"
+ "area"
],
"tags": {
- "railway": "halt"
+ "shop": "department_store"
},
- "name": "Railway Halt",
- "terms": [
- "break",
- "interrupt",
- "rest",
- "wait",
- "interruption"
- ]
+ "name": "Department Store"
},
- "railway/level_crossing": {
- "icon": "cross",
+ "shop/doityourself": {
+ "icon": "shop",
+ "fields": [
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
- "vertex"
+ "point",
+ "area"
],
"tags": {
- "railway": "level_crossing"
+ "shop": "doityourself"
},
- "terms": [
- "crossing",
- "railroad crossing",
- "railway crossing",
- "grade crossing",
- "road through railroad",
- "train crossing"
- ],
- "name": "Level Crossing"
+ "name": "DIY Store"
},
- "railway/monorail": {
- "icon": "railway-monorail",
+ "shop/dry_cleaning": {
+ "icon": "shop",
+ "fields": [
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
- "line"
+ "point",
+ "area"
],
"tags": {
- "railway": "monorail"
+ "shop": "dry_cleaning"
},
+ "name": "Dry Cleaner"
+ },
+ "shop/electronics": {
+ "icon": "shop",
"fields": [
- "structure",
- "electrified"
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
- "terms": [],
- "name": "Monorail"
- },
- "railway/narrow_gauge": {
- "icon": "railway-rail",
"geometry": [
- "line"
+ "point",
+ "area"
+ ],
+ "terms": [
+ "appliance",
+ "audio",
+ "computer",
+ "tv"
],
"tags": {
- "railway": "narrow_gauge"
+ "shop": "electronics"
},
+ "name": "Electronics Store"
+ },
+ "shop/erotic": {
+ "icon": "shop",
"fields": [
- "structure",
- "gauge",
- "electrified"
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "area"
],
"terms": [
- "narrow gauge railway",
- "narrow gauge railroad"
+ "sex",
+ "porn"
],
- "name": "Narrow Gauge Rail"
+ "tags": {
+ "shop": "erotic"
+ },
+ "name": "Erotic Store"
},
- "railway/platform": {
+ "shop/fabric": {
+ "icon": "shop",
+ "fields": [
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
"point",
- "vertex",
- "line",
"area"
],
+ "terms": [
+ "sew"
+ ],
"tags": {
- "railway": "platform"
+ "shop": "fabric"
},
- "name": "Railway Platform"
+ "name": "Fabric Store"
},
- "railway/rail": {
- "icon": "railway-rail",
+ "shop/farm": {
+ "icon": "shop",
+ "fields": [
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
- "line"
+ "point",
+ "area"
+ ],
+ "terms": [
+ "farm shop",
+ "farm stand"
],
"tags": {
- "railway": "rail"
+ "shop": "farm"
},
- "fields": [
- "structure",
- "gauge",
- "electrified"
- ],
- "terms": [],
- "name": "Rail"
+ "name": "Produce Stand"
},
- "railway/station": {
- "icon": "rail",
+ "shop/fashion": {
+ "icon": "shop",
"fields": [
- "building_area"
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "railway": "station"
+ "shop": "fashion"
},
- "terms": [
- "train station",
- "station"
- ],
- "name": "Railway Station"
+ "name": "Fashion Store"
},
- "railway/subway": {
- "icon": "railway-subway",
+ "shop/fishmonger": {
+ "icon": "shop",
"fields": [
- "structure",
- "gauge",
- "electrified"
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
],
"geometry": [
- "line"
+ "point",
+ "area"
],
"tags": {
- "railway": "subway"
+ "shop": "fishmonger"
},
- "terms": [],
- "name": "Subway"
+ "name": "Fishmonger",
+ "searchable": false
},
- "railway/subway_entrance": {
- "icon": "rail-metro",
+ "shop/florist": {
+ "icon": "shop",
+ "fields": [
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
- "point"
+ "point",
+ "area"
+ ],
+ "terms": [
+ "flower"
],
"tags": {
- "railway": "subway_entrance"
+ "shop": "florist"
},
- "terms": [],
- "name": "Subway Entrance"
+ "name": "Florist"
},
- "railway/tram": {
- "icon": "railway-light-rail",
+ "shop/frame": {
+ "icon": "shop",
+ "fields": [
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
"geometry": [
- "line"
+ "point",
+ "area"
],
"tags": {
- "railway": "tram"
+ "shop": "frame"
},
+ "name": "Framing Shop"
+ },
+ "shop/funeral_directors": {
+ "icon": "cemetery",
"fields": [
- "structure",
- "gauge",
- "electrified"
- ],
- "terms": [
- "streetcar"
+ "operator",
+ "address",
+ "building_area",
+ "religion",
+ "denomination"
],
- "name": "Tram"
- },
- "relation": {
- "name": "Relation",
- "icon": "relation",
- "tags": {},
"geometry": [
- "relation"
+ "point",
+ "area"
],
- "fields": [
- "relation"
- ]
- },
- "route/ferry": {
- "icon": "ferry",
- "geometry": [
- "line"
+ "terms": [
+ "undertaker",
+ "memorial home"
],
"tags": {
- "route": "ferry"
+ "shop": "funeral_directors"
},
- "name": "Ferry Route"
+ "name": "Funeral Home"
},
- "shop": {
+ "shop/furnace": {
"icon": "shop",
"fields": [
- "shop",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "oven",
+ "stove"
+ ],
"tags": {
- "shop": "*"
+ "shop": "furnace"
},
- "terms": [],
- "name": "Shop"
+ "name": "Furnace Store"
},
- "shop/alcohol": {
- "icon": "alcohol-shop",
+ "shop/furniture": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
- "tags": {
- "shop": "alcohol"
- },
"terms": [
- "alcohol"
+ "chair",
+ "sofa",
+ "table"
],
- "name": "Liquor Store"
+ "tags": {
+ "shop": "furniture"
+ },
+ "name": "Furniture Store"
},
- "shop/art": {
- "icon": "art-gallery",
+ "shop/garden_centre": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"terms": [
- "art store",
- "art gallery"
+ "landscape",
+ "mulch",
+ "shrub",
+ "tree"
],
"tags": {
- "shop": "art"
+ "shop": "garden_centre"
},
- "name": "Art Shop"
+ "name": "Garden Center"
},
- "shop/bakery": {
- "icon": "bakery",
+ "shop/gift": {
+ "icon": "gift",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "bakery"
+ "shop": "gift"
},
- "name": "Bakery"
+ "name": "Gift Shop"
},
- "shop/beauty": {
+ "shop/greengrocer": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"terms": [
- "nail spa",
- "spa",
- "salon",
- "tanning"
+ "fruit",
+ "vegetable"
],
"tags": {
- "shop": "beauty"
+ "shop": "greengrocer"
},
- "name": "Beauty Shop"
+ "name": "Greengrocer"
},
- "shop/beverages": {
- "icon": "shop",
+ "shop/hairdresser": {
+ "icon": "hairdresser",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "beverages"
+ "shop": "hairdresser"
},
- "name": "Beverage Store"
+ "name": "Hairdresser"
},
- "shop/bicycle": {
- "icon": "bicycle",
+ "shop/hardware": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "bicycle"
+ "shop": "hardware"
},
- "name": "Bicycle Shop"
+ "name": "Hardware Store"
},
- "shop/bookmaker": {
+ "shop/hearing_aids": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "bookmaker"
+ "shop": "hearing_aids"
},
- "name": "Bookmaker"
+ "name": "Hearing Aids Store"
},
- "shop/books": {
+ "shop/herbalist": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "books"
+ "shop": "herbalist"
},
- "name": "Bookstore"
+ "name": "Herbalist"
},
- "shop/boutique": {
+ "shop/hifi": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "stereo",
+ "video"
+ ],
"tags": {
- "shop": "boutique"
+ "shop": "hifi"
},
- "name": "Boutique"
+ "name": "Hifi Store"
},
- "shop/butcher": {
- "icon": "slaughterhouse",
+ "shop/interior_decoration": {
+ "icon": "shop",
"fields": [
+ "operator",
+ "address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
- "terms": [],
"tags": {
- "shop": "butcher"
+ "shop": "interior_decoration"
},
- "name": "Butcher"
+ "name": "Interior Decoration Store"
},
- "shop/car": {
- "icon": "car",
+ "shop/jewelry": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "diamond",
+ "gem",
+ "ring"
+ ],
"tags": {
- "shop": "car"
+ "shop": "jewelry"
},
- "name": "Car Dealership"
+ "name": "Jeweler"
},
- "shop/car_parts": {
- "icon": "car",
+ "shop/kiosk": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "car_parts"
+ "shop": "kiosk"
},
- "name": "Car Parts Store"
+ "name": "News Kiosk"
},
- "shop/car_repair": {
- "icon": "car",
+ "shop/kitchen": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "car_repair"
+ "shop": "kitchen"
},
- "name": "Car Repair Shop"
+ "name": "Kitchen Design Store"
},
- "shop/chemist": {
- "icon": "chemist",
+ "shop/laundry": {
+ "icon": "laundry",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "chemist"
+ "shop": "laundry"
},
- "name": "Chemist"
+ "name": "Laundry"
},
- "shop/clothes": {
- "icon": "clothing-store",
+ "shop/leather": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "clothes"
+ "shop": "leather"
},
- "name": "Clothing Store"
+ "name": "Leather Store"
},
- "shop/computer": {
+ "shop/locksmith": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "key",
+ "lockpick"
+ ],
"tags": {
- "shop": "computer"
+ "shop": "locksmith"
},
- "name": "Computer Store"
+ "name": "Locksmith"
},
- "shop/confectionery": {
+ "shop/lottery": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "confectionery"
+ "shop": "lottery"
},
- "name": "Confectionery"
+ "name": "Lottery Shop"
},
- "shop/convenience": {
+ "shop/mall": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "convenience"
+ "shop": "mall"
},
- "name": "Convenience Store"
+ "name": "Mall"
},
- "shop/deli": {
- "icon": "restaurant",
+ "shop/massage": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "deli"
+ "shop": "massage"
},
- "name": "Deli"
+ "name": "Massage Shop"
},
- "shop/department_store": {
+ "shop/medical_supply": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "department_store"
+ "shop": "medical_supply"
},
- "name": "Department Store"
+ "name": "Medical Supply Store"
},
- "shop/doityourself": {
- "icon": "shop",
+ "shop/mobile_phone": {
+ "icon": "mobilephone",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "doityourself"
+ "shop": "mobile_phone"
},
- "name": "DIY Store"
+ "name": "Mobile Phone Store"
},
- "shop/dry_cleaning": {
- "icon": "shop",
+ "shop/money_lender": {
+ "icon": "bank",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "dry_cleaning"
+ "shop": "money_lender"
},
- "name": "Dry Cleaners"
+ "name": "Money Lender"
},
- "shop/electronics": {
- "icon": "shop",
+ "shop/motorcycle": {
+ "icon": "scooter",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "electronics"
+ "shop": "motorcycle"
},
- "name": "Electronics Store"
+ "name": "Motorcycle Dealership"
},
- "shop/farm": {
- "icon": "shop",
+ "shop/music": {
+ "icon": "music",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
- "tags": {
- "shop": "farm"
- },
"terms": [
- "farm shop",
- "farm stand"
+ "CD",
+ "vinyl"
],
- "name": "Produce Stand"
+ "tags": {
+ "shop": "music"
+ },
+ "name": "Music Store"
},
- "shop/fishmonger": {
- "icon": "shop",
+ "shop/musical_instrument": {
+ "icon": "music",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "fishmonger"
+ "shop": "musical_instrument"
},
- "name": "Fishmonger",
- "searchable": false
+ "name": "Musical Instrument Store"
},
- "shop/florist": {
+ "shop/newsagent": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "florist"
+ "shop": "newsagent"
},
- "name": "Florist"
+ "name": "Newspaper/Magazine Shop"
},
- "shop/funeral_directors": {
- "icon": "cemetery",
+ "shop/optician": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
- "religion",
- "denomination"
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
- "tags": {
- "shop": "funeral_directors"
- },
"terms": [
- "undertaker",
- "funeral parlour",
- "funeral parlor",
- "memorial home"
+ "eye",
+ "glasses"
],
- "name": "Funeral Home"
+ "tags": {
+ "shop": "optician"
+ },
+ "name": "Optician"
},
- "shop/furniture": {
+ "shop/organic": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "furniture"
+ "shop": "supermarket",
+ "organic": "only"
},
- "name": "Furniture Store"
+ "name": "Organic Goods Store"
},
- "shop/garden_centre": {
+ "shop/outdoor": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"terms": [
- "garden centre"
+ "camping",
+ "climbing",
+ "hiking"
],
"tags": {
- "shop": "garden_centre"
+ "shop": "outdoor"
},
- "name": "Garden Center"
+ "name": "Outdoors Store"
},
- "shop/gift": {
- "icon": "shop",
+ "shop/paint": {
+ "icon": "water",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "gift"
+ "shop": "paint"
},
- "name": "Gift Shop"
+ "name": "Paint Store"
},
- "shop/greengrocer": {
+ "shop/pawnbroker": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "greengrocer"
+ "shop": "pawnbroker"
},
- "name": "Greengrocer"
+ "name": "Pawn Shop"
},
- "shop/hairdresser": {
- "icon": "hairdresser",
+ "shop/pet": {
+ "icon": "dog-park",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "cat",
+ "dog",
+ "fish"
+ ],
"tags": {
- "shop": "hairdresser"
+ "shop": "pet"
},
- "name": "Hairdresser"
+ "name": "Pet Store"
},
- "shop/hardware": {
- "icon": "shop",
+ "shop/photo": {
+ "icon": "camera",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "camera",
+ "film"
+ ],
"tags": {
- "shop": "hardware"
+ "shop": "photo"
},
- "name": "Hardware Store"
+ "name": "Photography Store"
},
- "shop/hifi": {
+ "shop/pyrotechnics": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "hifi"
+ "shop": "pyrotechnics"
},
- "name": "Hifi Store"
+ "name": "Fireworks Store"
},
- "shop/jewelry": {
+ "shop/radiotechnics": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "jewelry"
+ "shop": "radiotechnics"
},
- "name": "Jeweler"
+ "name": "Radio/Electronic Component Store"
},
- "shop/kiosk": {
+ "shop/religion": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
- "opening_hours"
+ "opening_hours",
+ "religion",
+ "denomination"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "kiosk"
+ "shop": "religion"
},
- "name": "Kiosk"
+ "name": "Religious Store"
},
- "shop/laundry": {
- "icon": "laundry",
+ "shop/scuba_diving": {
+ "icon": "swimming",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "laundry"
+ "shop": "scuba_diving"
},
- "name": "Laundry"
+ "name": "Scuba Diving Shop"
},
- "shop/locksmith": {
+ "shop/seafood": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"terms": [
- "keys"
+ "fishmonger"
],
"tags": {
- "shop": "locksmith"
+ "shop": "seafood"
},
- "name": "Locksmith"
+ "name": "Seafood Shop"
},
- "shop/lottery": {
+ "shop/second_hand": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "secondhand",
+ "second hand",
+ "resale",
+ "thrift",
+ "used"
+ ],
"tags": {
- "shop": "lottery"
+ "shop": "second_hand"
},
- "name": "Lottery Shop"
+ "name": "Consignment/Thrift Store"
},
- "shop/mall": {
+ "shop/shoes": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "mall"
+ "shop": "shoes"
},
- "name": "Mall"
+ "name": "Shoe Store"
},
- "shop/mobile_phone": {
- "icon": "mobilephone",
+ "shop/sports": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "mobile_phone"
+ "shop": "sports"
},
- "name": "Mobile Phone Store"
+ "name": "Sporting Goods Store"
},
- "shop/motorcycle": {
- "icon": "scooter",
+ "shop/stationery": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "card",
+ "paper"
+ ],
"tags": {
- "shop": "motorcycle"
+ "shop": "stationery"
},
- "name": "Motorcycle Dealership"
+ "name": "Stationery Store"
},
- "shop/music": {
- "icon": "music",
+ "shop/supermarket": {
+ "icon": "grocery",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "grocery",
+ "store",
+ "shop"
+ ],
"tags": {
- "shop": "music"
+ "shop": "supermarket"
},
- "name": "Music Store"
+ "name": "Supermarket"
},
- "shop/newsagent": {
- "icon": "shop",
+ "shop/tailor": {
+ "icon": "clothing-store",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "clothes",
+ "suit"
+ ],
"tags": {
- "shop": "newsagent"
+ "shop": "tailor"
},
- "name": "Newsagent"
+ "name": "Tailor"
},
- "shop/optician": {
+ "shop/tattoo": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "optician"
+ "shop": "tattoo"
},
- "name": "Optician"
+ "name": "Tattoo Parlor"
},
- "shop/outdoor": {
- "icon": "shop",
+ "shop/tea": {
+ "icon": "cafe",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "outdoor"
+ "shop": "tea"
},
- "name": "Outdoor Store"
+ "name": "Tea Store"
},
- "shop/pet": {
- "icon": "dog-park",
+ "shop/ticket": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "pet"
+ "shop": "ticket"
},
- "name": "Pet Store"
+ "name": "Ticket Seller"
},
- "shop/photo": {
- "icon": "camera",
+ "shop/tobacco": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "photo"
+ "shop": "tobacco"
},
- "name": "Photography Store"
+ "name": "Tobacco Shop"
},
- "shop/seafood": {
+ "shop/toys": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "seafood"
+ "shop": "toys"
},
- "terms": [
- "fishmonger"
- ],
- "name": "Seafood Shop"
+ "name": "Toy Store"
},
- "shop/shoes": {
- "icon": "shop",
+ "shop/travel_agency": {
+ "icon": "suitcase",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "shoes"
+ "shop": "travel_agency"
},
- "name": "Shoe Store"
+ "name": "Travel Agency"
},
- "shop/sports": {
+ "shop/tyres": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "sports"
+ "shop": "tyres"
},
- "name": "Sporting Goods Store"
+ "name": "Tire Store"
},
- "shop/stationery": {
+ "shop/vacant": {
"icon": "shop",
"fields": [
"address",
- "building_area",
- "opening_hours"
+ "building_area"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "stationery"
+ "shop": "vacant"
},
- "name": "Stationery Store"
+ "name": "Vacant Shop",
+ "searchable": false
},
- "shop/supermarket": {
- "icon": "grocery",
+ "shop/vacuum_cleaner": {
+ "icon": "shop",
"fields": [
"operator",
+ "address",
"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"
+ "opening_hours"
],
- "tags": {
- "shop": "supermarket"
- },
- "name": "Supermarket"
- },
- "shop/tailor": {
- "name": "Tailor",
"geometry": [
"point",
"area"
],
- "terms": [
- "tailor",
- "clothes"
- ],
"tags": {
- "shop": "tailor"
+ "shop": "vacuum_cleaner"
},
- "icon": "clothing-store",
- "fields": [
- "building_area",
- "address",
- "operator",
- "opening_hours"
- ]
+ "name": "Vacuum Cleaner Store"
},
- "shop/toys": {
+ "shop/variety_store": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "toys"
+ "shop": "variety_store"
},
- "name": "Toy Store"
+ "name": "Variety Store"
},
- "shop/travel_agency": {
- "icon": "suitcase",
+ "shop/video": {
+ "icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "DVD"
+ ],
"tags": {
- "shop": "travel_agency"
+ "shop": "video"
},
- "name": "Travel Agency"
+ "name": "Video Store"
},
- "shop/tyres": {
+ "shop/video_games": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "tyres"
+ "shop": "video_games"
},
- "name": "Tire Store"
+ "name": "Video Game Store"
},
- "shop/vacant": {
+ "shop/water_sports": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "vacant"
+ "shop": "water_sports"
},
- "name": "Vacant Shop"
+ "name": "Watersport/Swim Shop"
},
- "shop/variety_store": {
+ "shop/weapons": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
+ "terms": [
+ "ammo",
+ "gun",
+ "knife",
+ "knives"
+ ],
"tags": {
- "shop": "variety_store"
+ "shop": "weapons"
},
- "name": "Variety Store"
+ "name": "Weapon Shop"
},
- "shop/video": {
+ "shop/window_blind": {
"icon": "shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "shop": "video"
+ "shop": "window_blind"
},
- "name": "Video Store"
+ "name": "Window Blind Store"
},
"shop/wine": {
"icon": "alcohol-shop",
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
"shop": "wine"
},
- "terms": [
- "winery"
- ],
"name": "Wine Shop"
},
"tourism": {
"icon": "lodging",
"fields": [
"operator",
- "address"
+ "address",
+ "building_area"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
"name": "Alpine Hut"
},
"tourism/artwork": {
+ "icon": "art-gallery",
"fields": [
"artwork_type",
"artist"
],
- "icon": "art-gallery",
"geometry": [
"point",
"vertex",
"icon": "campsite",
"fields": [
"operator",
- "address",
- "smoking"
+ "address"
],
"geometry": [
"point",
"vertex",
"area"
],
- "terms": [
- "camping"
- ],
"tags": {
"tourism": "camp_site"
},
"icon": "lodging",
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"smoking"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
"fields": [
"operator",
"address",
+ "building_area",
"smoking"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
},
"terms": [
"B&B",
- "Bed & Breakfast",
"Bed and Breakfast"
],
"name": "Guest House"
"icon": "lodging",
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"smoking"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
"icon": "lodging",
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"smoking"
],
"geometry": [
"point",
- "vertex",
"area"
],
- "terms": [],
"tags": {
"tourism": "hotel"
},
"tourism/information": {
"fields": [
"information",
- "building_area",
+ "operator",
"address",
- "operator"
+ "building_area"
],
"geometry": [
"point",
"icon": "lodging",
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"smoking"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
"icon": "museum",
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"terms": [
"exhibition",
- "exhibits archive",
"foundation",
"gallery",
"hall",
- "institution",
- "library",
- "menagerie",
- "repository",
- "salon",
- "storehouse",
- "treasury",
- "vault"
+ "institution"
],
"tags": {
"tourism": "museum"
"vertex",
"area"
],
- "terms": [],
+ "terms": [
+ "camp"
+ ],
"tags": {
"tourism": "picnic_site"
},
"tourism/theme_park": {
"fields": [
"operator",
- "address"
+ "address",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
"icon": "zoo",
"fields": [
"operator",
- "address"
+ "address",
+ "opening_hours"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
},
"name": "Zoo"
},
+ "traffic_calming/bump": {
+ "fields": [
+ "surface"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "traffic_calming": "bump"
+ },
+ "terms": [
+ "speed hump"
+ ],
+ "name": "Speed Bump"
+ },
+ "traffic_calming/hump": {
+ "fields": [
+ "surface"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "traffic_calming": "hump"
+ },
+ "terms": [
+ "speed bump"
+ ],
+ "name": "Speed Hump"
+ },
+ "traffic_calming/rumble_strip": {
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "traffic_calming": "rumble_strip"
+ },
+ "terms": [
+ "sleeper lines",
+ "audible lines",
+ "growlers"
+ ],
+ "name": "Rumble Strip"
+ },
+ "traffic_calming/table": {
+ "fields": [
+ "surface"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "highway": "crossing",
+ "traffic_calming": "table"
+ },
+ "terms": [
+ "speed table",
+ "flat top hump"
+ ],
+ "name": "Raised Pedestrian Crossing"
+ },
"type/boundary": {
"geometry": [
"relation"
"name": "Road Route",
"icon": "route-road",
"fields": [
- "ref"
+ "ref",
+ "network"
]
},
"type/route/train": {
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "fuel",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
"address",
- "building_area"
+ "building_area",
+ "opening_hours"
],
"suggestion": true
},
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "beer",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "fast-food",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "restaurant",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"capacity",
"smoking"
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "bank",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"atm",
- "building_area",
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "pharmacy",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
- "building_area",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "cafe",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"cuisine",
"internet_access",
- "building_area",
"address",
+ "building_area",
"opening_hours",
"smoking"
],
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "grocery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
"operator",
+ "address",
"building_area",
- "address"
+ "opening_hours"
],
"suggestion": true
},
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "chemist",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "chemist",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "chemist",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "chemist",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "chemist",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "chemist",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "chemist",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "chemist",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "chemist",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "chemist",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "car",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
+ "building_area",
"opening_hours"
],
"suggestion": true
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "clothing-store",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "alcohol-shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "alcohol-shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "alcohol-shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "alcohol-shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "alcohol-shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "alcohol-shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "alcohol-shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "alcohol-shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "alcohol-shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "alcohol-shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "alcohol-shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "alcohol-shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "bakery",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "dog-park",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "dog-park",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "dog-park",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "dog-park",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "dog-park",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "dog-park",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "suitcase",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "suitcase",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "mobilephone",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "mobilephone",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "mobilephone",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "mobilephone",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "mobilephone",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "mobilephone",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "mobilephone",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "mobilephone",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "mobilephone",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "mobilephone",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "mobilephone",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "mobilephone",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "mobilephone",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "mobilephone",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "mobilephone",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "mobilephone",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "mobilephone",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "mobilephone",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "mobilephone",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "mobilephone",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "mobilephone",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "hairdresser",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "hairdresser",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "hairdresser",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "hairdresser",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "hairdresser",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "hairdresser",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "hairdresser",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "hairdresser",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "hairdresser",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "shop",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"icon": "scooter",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
+ "operator",
"address",
"building_area",
"opening_hours"
"type": "check",
"label": "Covered"
},
+ "craft": {
+ "key": "craft",
+ "type": "typeCombo",
+ "label": "Type"
+ },
"crop": {
"key": "crop",
"type": "combo",
"advanced": "Advanced (black diamond)",
"expert": "Expert (double black diamond)",
"freeride": "Freeride (off-piste)",
- "extreme": "Extreme (climing equipment required)"
+ "extreme": "Extreme (climbing equipment required)"
}
}
},
"ice_stock"
]
},
+ "sport_racing": {
+ "key": "sport",
+ "type": "combo",
+ "label": "Sport",
+ "options": [
+ "cycling",
+ "dog_racing",
+ "horse_racing",
+ "karting",
+ "motor",
+ "motocross",
+ "running"
+ ]
+ },
"structure": {
"type": "radio",
"keys": [
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",
"da",
"nl",
"en-GB",
+ "eo",
"et",
"fi",
"fr",
"it",
"ja",
"kn",
+ "km",
+ "km-KH",
"ko",
"ko-KR",
"lv",
},
"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.",
"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",
"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",
},
"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}'.**",
"covered": {
"label": "Covered"
},
+ "craft": {
+ "label": "Type"
+ },
"crop": {
"label": "Crop"
},
"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": {
"sport_ice": {
"label": "Sport"
},
+ "sport_racing": {
+ "label": "Sport"
+ },
"structure": {
"label": "Structure",
"placeholder": "Unknown",
},
"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/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",
},
"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/ranger_station": {
"name": "Ranger Station",
},
"amenity/recycling": {
"name": "Recycling",
- "terms": ""
+ "terms": "can,bottle,garbage,scrap,trash"
},
"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"
+ "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",
},
"leisure/marina": {
"name": "Marina",
- "terms": ""
+ "terms": "boat"
},
"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": {
},
"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/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