X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/45d9e051f52c4c61a6510bfd74897d60bf15f1cf..2b4f8e92c969a5508b73ae7af45811a118fda6b1:/vendor/assets/iD/iD.js
diff --git a/vendor/assets/iD/iD.js b/vendor/assets/iD/iD.js
index 0b0a39008..a19dc713e 100644
--- a/vendor/assets/iD/iD.js
+++ b/vendor/assets/iD/iD.js
@@ -15378,6 +15378,7 @@ if (typeof exports === 'object') {
}).call(function() {
return this || (typeof window !== 'undefined' ? window : global);
}());
+/* jshint ignore:start */
(function () {
'use strict';
window.iD = function () {
@@ -15406,7 +15407,9 @@ window.iD = function () {
else storage.setItem(k, v);
} catch(e) {
// localstorage quota exceeded
+ /* jshint devel:true */
if (typeof console !== 'undefined') console.error('localStorage quota exceeded');
+ /* jshint devel:false */
}
};
@@ -15489,7 +15492,7 @@ window.iD = function () {
var result = fn.apply(history, arguments);
debouncedSave();
return result;
- }
+ };
}
context.perform = withDebouncedSave(history.perform);
@@ -15690,13 +15693,13 @@ window.iD = function () {
return d3.rebind(context, dispatch, 'on');
};
-iD.version = '1.3.0';
+iD.version = '1.3.2';
(function() {
var detected = {};
var ua = navigator.userAgent,
- msie = new RegExp("MSIE ([0-9]{1,}[\\.0-9]{0,})");
+ msie = new RegExp('MSIE ([0-9]{1,}[\\.0-9]{0,})');
if (msie.exec(ua) !== null) {
var rv = parseFloat(RegExp.$1);
@@ -15940,7 +15943,7 @@ iD.util.entityOrMemberSelector = function(ids, graph) {
var entity = graph.hasEntity(id);
if (entity && entity.type === 'relation') {
entity.members.forEach(function(member) {
- s += ',.' + member.id
+ s += ',.' + member.id;
});
}
});
@@ -16025,7 +16028,7 @@ iD.util.editDistance = function(a, b) {
for (var j = 0; j <= a.length; j++) { matrix[0][j] = j; }
for (i = 1; i <= b.length; i++) {
for (j = 1; j <= a.length; j++) {
- if (b.charAt(i-1) == a.charAt(j-1)) {
+ if (b.charAt(i-1) === a.charAt(j-1)) {
matrix[i][j] = matrix[i-1][j-1];
} else {
matrix[i][j] = Math.min(matrix[i-1][j-1] + 1, // substitution
@@ -16053,6 +16056,7 @@ iD.util.fastMouse = function(container) {
};
};
+/* jshint -W103 */
iD.util.getPrototypeOf = Object.getPrototypeOf || function(obj) { return obj.__proto__; };
iD.util.asyncMap = function(inputs, func, callback) {
@@ -16092,7 +16096,7 @@ iD.util.SessionMutex = function(name) {
mutex.lock = function() {
if (intervalID) return true;
- var cookie = document.cookie.replace(new RegExp("(?:(?:^|.*;)\\s*" + name + "\\s*\\=\\s*([^;]*).*$)|^.*$"), "$1");
+ var cookie = document.cookie.replace(new RegExp('(?:(?:^|.*;)\\s*' + name + '\\s*\\=\\s*([^;]*).*$)|^.*$'), '$1');
if (cookie) return false;
renew();
intervalID = window.setInterval(renew, 4000);
@@ -16112,6 +16116,34 @@ iD.util.SessionMutex = function(name) {
return mutex;
};
+iD.util.SuggestNames = function(preset, suggestions) {
+ preset = preset.id.split('/', 2);
+ var k = preset[0],
+ v = preset[1];
+
+ return function(value, callback) {
+ var result = [];
+ if (value && value.length > 2) {
+ if (suggestions[k] && suggestions[k][v]) {
+ for (var sugg in suggestions[k][v]) {
+ var dist = iD.util.editDistance(value, sugg.substring(0, value.length));
+ if (dist < 3) {
+ result.push({
+ title: sugg,
+ value: sugg,
+ dist: dist
+ });
+ }
+ }
+ }
+ result.sort(function(a, b) {
+ return a.dist - b.dist;
+ });
+ }
+ result = result.slice(0,3);
+ callback(result);
+ };
+};
iD.geo = {};
iD.geo.roundCoords = function(c) {
@@ -16204,7 +16236,7 @@ iD.geo.pointInPolygon = function(point, polygon) {
var xi = polygon[i][0], yi = polygon[i][1];
var xj = polygon[j][0], yj = polygon[j][1];
- var intersect = ((yi > y) != (yj > y)) &&
+ var intersect = ((yi > y) !== (yj > y)) &&
(x < (xj - xi) * (y - yi) / (yj - yi) + xi);
if (intersect) inside = !inside;
}
@@ -16270,7 +16302,7 @@ _.extend(iD.geo.Extent.prototype, {
[this[1][0], this[1][1]],
[this[1][0], this[0][1]],
[this[0][0], this[0][1]]
- ]
+ ];
},
intersects: function(obj) {
@@ -16531,7 +16563,7 @@ iD.actions.AddMember = function(relationId, member, memberIndex) {
}
return graph.replace(relation.addMember(member, memberIndex));
- }
+ };
};
iD.actions.AddMidpoint = function(midpoint, node) {
return function(graph) {
@@ -16565,7 +16597,7 @@ iD.actions.AddVertex = function(wayId, nodeId, index) {
iD.actions.ChangeMember = function(relationId, member, memberIndex) {
return function(graph) {
return graph.replace(graph.entity(relationId).updateMember(member, memberIndex));
- }
+ };
};
iD.actions.ChangePreset = function(entityId, oldPreset, newPreset) {
return function(graph) {
@@ -16591,7 +16623,7 @@ iD.actions.Circularize = function(wayId, projection, maxAngle) {
var action = function(graph) {
var way = graph.entity(wayId),
nodes = _.uniq(graph.childNodes(way)),
- keyNodes = nodes.filter(function(n) { return graph.parentWays(n).length != 1; }),
+ keyNodes = nodes.filter(function(n) { return graph.parentWays(n).length !== 1; }),
points = nodes.map(function(n) { return projection(n.loc); }),
keyPoints = keyNodes.map(function(n) { return projection(n.loc); }),
centroid = d3.geom.polygon(points).centroid(),
@@ -16605,7 +16637,7 @@ iD.actions.Circularize = function(wayId, projection, maxAngle) {
keyPoints = [points[0]];
}
- if (keyNodes.length == 1) {
+ if (keyNodes.length === 1) {
var index = nodes.indexOf(keyNodes[0]),
oppositeIndex = Math.floor((index + nodes.length / 2) % nodes.length);
@@ -16715,6 +16747,7 @@ iD.actions.Connect = function(nodeIds) {
for (var i = 0; i < nodeIds.length - 1; i++) {
var node = graph.entity(nodeIds[i]);
+ /*jshint -W083 */
graph.parentWays(node).forEach(function(parent) {
if (!parent.areAdjacent(node.id, survivor.id)) {
graph = graph.replace(parent.replaceNode(node.id, survivor.id));
@@ -16724,6 +16757,7 @@ iD.actions.Connect = function(nodeIds) {
graph.parentRelations(node).forEach(function(parent) {
graph = graph.replace(parent.replaceMember(node, survivor));
});
+ /*jshint +W083 */
survivor = survivor.mergeTags(node.tags);
graph = iD.actions.DeleteNode(node.id)(graph);
@@ -16929,7 +16963,7 @@ iD.actions.DiscardTags = function(difference) {
difference.created().forEach(discardTags);
return graph;
- }
+ };
};
// Disconect the ways at the given node.
//
@@ -16955,7 +16989,7 @@ iD.actions.Disconnect = function(nodeId, newNodeId) {
replacements.forEach(function(replacement) {
var newNode = iD.Node({id: newNodeId, loc: node.loc, tags: node.tags});
graph = graph.replace(newNode);
- graph = graph.replace(replacement.way.updateNode(newNode.id, replacement.index));
+ graph = graph.replace(graph.entity(replacement.wayID).updateNode(newNode.id, replacement.index));
});
return graph;
@@ -16974,7 +17008,7 @@ iD.actions.Disconnect = function(nodeId, newNodeId) {
parent.nodes.forEach(function(waynode, index) {
if (waynode === nodeId) {
- candidates.push({way: parent, index: index});
+ candidates.push({wayID: parent.id, index: index});
}
});
});
@@ -17168,7 +17202,7 @@ iD.actions.MergePolygon = function(ids, newRelationId) {
return _.any(contained[i]);
}
- function filterContained(d, i) {
+ function filterContained(d) {
return d.filter(isContained);
}
@@ -17325,7 +17359,7 @@ iD.actions.Orthogonalize = function(wayId, projection) {
for (i = 0; i < points.length; i++) {
// only move the points that actually moved
- if (originalPoints[i][0] != points[i][0] || originalPoints[i][1] != points[i][1]) {
+ if (originalPoints[i][0] !== points[i][0] || originalPoints[i][1] !== points[i][1]) {
graph = graph.replace(graph.entity(nodes[i].id)
.move(projection.invert(points[i])));
}
@@ -17335,8 +17369,8 @@ iD.actions.Orthogonalize = function(wayId, projection) {
for (i = 0; i < points.length; i++) {
var node = nodes[i];
- if (graph.parentWays(node).length > 1 ||
- graph.parentRelations(node).length ||
+ if (graph.parentWays(node).length > 1 ||
+ graph.parentRelations(node).length ||
node.hasInterestingTags()) {
continue;
@@ -17490,9 +17524,9 @@ iD.actions.Reverse = function(wayId) {
}
function reverseValue(key, value) {
- if (key === "incline" && numeric.test(value)) {
+ if (key === 'incline' && numeric.test(value)) {
return value.replace(numeric, function(_, sign) { return sign === '-' ? '' : '-'; });
- } else if (key === "incline" || key === "direction") {
+ } else if (key === 'incline' || key === 'direction') {
return {up: 'down', down: 'up'}[value] || value;
} else {
return {left: 'right', right: 'left'}[value] || value;
@@ -17590,13 +17624,13 @@ iD.actions.Split = function(nodeId, newWayIds) {
// calculate lengths
length = 0;
- for (i = wrap(idxA+1); i != idxA; i = wrap(i+1)) {
+ for (i = wrap(idxA+1); i !== idxA; i = wrap(i+1)) {
length += dist(nodes[i], nodes[wrap(i-1)]);
lengths[i] = length;
}
length = 0;
- for (i = wrap(idxA-1); i != idxA; i = wrap(i-1)) {
+ for (i = wrap(idxA-1); i !== idxA; i = wrap(i-1)) {
length += dist(nodes[i], nodes[wrap(i+1)]);
if (length < lengths[i])
lengths[i] = length;
@@ -17753,22 +17787,22 @@ iD.actions.Straighten = function(wayId, projection) {
i;
for (i = 1; i < points.length-1; i++) {
- var node = nodes[i],
+ var node = nodes[i],
point = points[i];
- if (graph.parentWays(node).length > 1 ||
- graph.parentRelations(node).length ||
+ if (graph.parentWays(node).length > 1 ||
+ graph.parentRelations(node).length ||
node.hasInterestingTags()) {
var u = positionAlongWay(point, startPoint, endPoint),
p0 = startPoint[0] + u * (endPoint[0] - startPoint[0]),
- p1 = startPoint[1] + u * (endPoint[1] - startPoint[1]),
+ p1 = startPoint[1] + u * (endPoint[1] - startPoint[1]);
graph = graph.replace(graph.entity(node.id)
.move(projection.invert([p0, p1])));
} else {
// safe to delete
- if (toDelete.indexOf(node) == -1) {
+ if (toDelete.indexOf(node) === -1) {
toDelete.push(node);
}
}
@@ -17792,7 +17826,7 @@ iD.actions.Straighten = function(wayId, projection) {
i;
for (i = 1; i < points.length-1; i++) {
- var point = points[i],
+ var point = points[i],
u = positionAlongWay(point, startPoint, endPoint),
p0 = startPoint[0] + u * (endPoint[0] - startPoint[0]),
p1 = startPoint[1] + u * (endPoint[1] - startPoint[1]),
@@ -17866,7 +17900,7 @@ iD.behavior.drag = function() {
d3.event.preventDefault();
}
- var event = d3.dispatch("start", "move", "end"),
+ var event = d3.dispatch('start', 'move', 'end'),
origin = null,
selector = '',
filter = null,
@@ -17874,10 +17908,10 @@ iD.behavior.drag = function() {
event.of = function(thiz, argumentz) {
return function(e1) {
+ var e0 = e1.sourceEvent = d3.event;
+ e1.target = drag;
+ d3.event = e1;
try {
- var e0 = e1.sourceEvent = d3.event;
- e1.target = drag;
- d3.event = e1;
event[e1.type].apply(thiz, argumentz);
} finally {
d3.event = e0;
@@ -17885,7 +17919,7 @@ iD.behavior.drag = function() {
};
};
- var d3_event_userSelectProperty = iD.util.prefixCSSProperty("UserSelect"),
+ var d3_event_userSelectProperty = iD.util.prefixCSSProperty('UserSelect'),
d3_event_userSelectSuppress = d3_event_userSelectProperty ?
function () {
var selection = d3.selection(),
@@ -17896,9 +17930,9 @@ iD.behavior.drag = function() {
};
} :
function (type) {
- var w = d3.select(window).on("selectstart." + type, d3_eventCancel);
+ var w = d3.select(window).on('selectstart.' + type, d3_eventCancel);
return function () {
- w.on("selectstart." + type, null);
+ w.on('selectstart.' + type, null);
};
};
@@ -17910,11 +17944,11 @@ iD.behavior.drag = function() {
offset,
origin_ = point(),
started = false,
- selectEnable = d3_event_userSelectSuppress(touchId != null ? "drag-" + touchId : "drag");
+ selectEnable = d3_event_userSelectSuppress(touchId !== null ? 'drag-' + touchId : 'drag');
var w = d3.select(window)
- .on(touchId !== null ? "touchmove.drag-" + touchId : "mousemove.drag", dragmove)
- .on(touchId !== null ? "touchend.drag-" + touchId : "mouseup.drag", dragend, true);
+ .on(touchId !== null ? 'touchmove.drag-' + touchId : 'mousemove.drag', dragmove)
+ .on(touchId !== null ? 'touchend.drag-' + touchId : 'mouseup.drag', dragend, true);
if (origin) {
offset = origin.apply(target, arguments);
@@ -17941,7 +17975,7 @@ iD.behavior.drag = function() {
if (!started) {
started = true;
event_({
- type: "start"
+ type: 'start'
});
}
@@ -17949,7 +17983,7 @@ iD.behavior.drag = function() {
d3_eventCancel();
event_({
- type: "move",
+ type: 'move',
point: [p[0] + offset[0], p[1] + offset[1]],
delta: [dx, dy]
});
@@ -17958,21 +17992,21 @@ iD.behavior.drag = function() {
function dragend() {
if (started) {
event_({
- type: "end"
+ type: 'end'
});
d3_eventCancel();
- if (d3.event.target === eventTarget) w.on("click.drag", click, true);
+ if (d3.event.target === eventTarget) w.on('click.drag', click, true);
}
- w.on(touchId !== null ? "touchmove.drag-" + touchId : "mousemove.drag", null)
- .on(touchId !== null ? "touchend.drag-" + touchId : "mouseup.drag", null);
+ w.on(touchId !== null ? 'touchmove.drag-' + touchId : 'mousemove.drag', null)
+ .on(touchId !== null ? 'touchend.drag-' + touchId : 'mouseup.drag', null);
selectEnable();
}
function click() {
d3_eventCancel();
- w.on("click.drag", null);
+ w.on('click.drag', null);
}
}
@@ -17993,13 +18027,13 @@ iD.behavior.drag = function() {
};
}
- selection.on("mousedown.drag" + selector, delegate)
- .on("touchstart.drag" + selector, delegate);
+ selection.on('mousedown.drag' + selector, delegate)
+ .on('touchstart.drag' + selector, delegate);
}
drag.off = function(selection) {
- selection.on("mousedown.drag" + selector, null)
- .on("touchstart.drag" + selector, null);
+ selection.on('mousedown.drag' + selector, null)
+ .on('touchstart.drag' + selector, null);
};
drag.delegate = function(_) {
@@ -18022,8 +18056,8 @@ iD.behavior.drag = function() {
drag.cancel = function() {
d3.select(window)
- .on("mousemove.drag", null)
- .on("mouseup.drag", null);
+ .on('mousemove.drag', null)
+ .on('mouseup.drag', null);
return drag;
};
@@ -18040,7 +18074,7 @@ iD.behavior.drag = function() {
return drag;
};
- return d3.rebind(drag, event, "on");
+ return d3.rebind(drag, event, 'on');
};
iD.behavior.Draw = function(context) {
var event = d3.dispatch('move', 'click', 'clickWay',
@@ -18068,8 +18102,7 @@ iD.behavior.Draw = function(context) {
})[0] : d3.mouse(p);
}
- var eventTarget = d3.event.target,
- element = d3.select(this),
+ var element = d3.select(this),
touchId = d3.event.touches ? d3.event.changedTouches[0].identifier : null,
time = +new Date(),
pos = point();
@@ -18404,7 +18437,7 @@ iD.behavior.Hash = function(context) {
var parser = function(map, s) {
var q = iD.util.stringQs(s);
- var args = (q.map || '').split("/").map(Number);
+ var args = (q.map || '').split('/').map(Number);
if (args.length < 3 || args.some(isNaN)) {
return true; // replace bogus hash
} else if (s !== formatter(map).slice(1)) {
@@ -18459,7 +18492,7 @@ iD.behavior.Hash = function(context) {
d3.select(window)
.on('hashchange.hash', null);
- location.hash = "";
+ location.hash = '';
};
return hash;
@@ -18473,7 +18506,7 @@ iD.behavior.Hash = function(context) {
Only one of these elements can have the :hover pseudo-class, but all of them will
have the .hover class.
*/
-iD.behavior.Hover = function(context) {
+iD.behavior.Hover = function() {
var dispatch = d3.dispatch('hover'),
selection,
altDisables,
@@ -18547,7 +18580,7 @@ iD.behavior.Hover = function(context) {
function mousedown() {
down = true;
d3.select(window)
- .on('mouseup.hover', mouseup)
+ .on('mouseup.hover', mouseup);
}
function mouseup() {
@@ -18580,7 +18613,7 @@ iD.behavior.Hover = function(context) {
d3.select(window)
.on('keydown.hover', null)
.on('keyup.hover', null)
- .on('mouseup.hover', null)
+ .on('mouseup.hover', null);
};
hover.altDisables = function(_) {
@@ -18728,25 +18761,25 @@ iD.behavior.Tail = function() {
var text,
container,
xmargin = 25,
- tooltip_size = [0, 0],
- selection_size = [0, 0],
+ tooltipSize = [0, 0],
+ selectionSize = [0, 0],
transformProp = iD.util.prefixCSSProperty('Transform');
function tail(selection) {
if (!text) return;
d3.select(window)
- .on('resize.tail', function() { selection_size = selection.dimensions(); });
+ .on('resize.tail', function() { selectionSize = selection.dimensions(); });
function show() {
container.style('display', 'block');
- tooltip_size = container.dimensions();
+ tooltipSize = container.dimensions();
}
function mousemove() {
if (container.style('display') === 'none') show();
- var xoffset = ((d3.event.clientX + tooltip_size[0] + xmargin) > selection_size[0]) ?
- -tooltip_size[0] - xmargin : xmargin;
+ var xoffset = ((d3.event.clientX + tooltipSize[0] + xmargin) > selectionSize[0]) ?
+ -tooltipSize[0] - xmargin : xmargin;
container.classed('left', xoffset > 0);
container.style(transformProp, 'translate(' +
(~~d3.event.clientX + xoffset) + 'px,' +
@@ -18781,8 +18814,8 @@ iD.behavior.Tail = function() {
container
.on('mousemove.tail', mousemove);
- tooltip_size = container.dimensions();
- selection_size = selection.dimensions();
+ tooltipSize = container.dimensions();
+ selectionSize = selection.dimensions();
}
tail.off = function(selection) {
@@ -18969,7 +19002,7 @@ iD.modes.AddPoint = function(context) {
.newFeature(true));
}
- function addWay(loc, edge) {
+ function addWay(loc) {
add(loc);
}
@@ -19013,7 +19046,7 @@ iD.modes.Browse = function(context) {
});
// Get focus on the body.
- if (document.activeElement) {
+ if (document.activeElement && document.activeElement.blur) {
document.activeElement.blur();
}
@@ -19207,7 +19240,7 @@ iD.modes.DragNode = function(context) {
}
var behavior = iD.behavior.drag()
- .delegate("g.node, g.point, g.midpoint")
+ .delegate('g.node, g.point, g.midpoint')
.surface(context.surface().node())
.origin(origin)
.on('start', start)
@@ -19598,7 +19631,7 @@ iD.modes.Save = function(context) {
context.install(behavior);
});
- context.connection().authenticate(function(err) {
+ context.connection().authenticate(function() {
context.ui().sidebar.show(ui);
});
};
@@ -19814,7 +19847,7 @@ iD.modes.Select = function(context, selectedIDs) {
context.surface()
.call(radialMenu.close)
.on('dblclick.select', null)
- .selectAll(".selected")
+ .selectAll('.selected')
.classed('selected', false);
context.map().on('drawn.select', null);
@@ -19850,7 +19883,7 @@ iD.operations.Circularize = function(selectedIDs, context) {
t('operations.circularize.description.' + geometry);
};
- operation.id = "circularize";
+ operation.id = 'circularize';
operation.keys = [t('operations.circularize.key')];
operation.title = t('operations.circularize.title');
@@ -19899,7 +19932,7 @@ iD.operations.Continue = function(selectedIDs, context) {
t('operations.continue.description');
};
- operation.id = "continue";
+ operation.id = 'continue';
operation.keys = [t('operations.continue.key')];
operation.title = t('operations.continue.title');
@@ -19969,7 +20002,7 @@ iD.operations.Delete = function(selectedIDs, context) {
t('operations.delete.description');
};
- operation.id = "delete";
+ operation.id = 'delete';
operation.keys = [iD.ui.cmd('ââ«'), iD.ui.cmd('ââ¦')];
operation.title = t('operations.delete.title');
@@ -20006,7 +20039,7 @@ iD.operations.Disconnect = function(selectedIDs, context) {
t('operations.disconnect.description');
};
- operation.id = "disconnect";
+ operation.id = 'disconnect';
operation.keys = [t('operations.disconnect.key')];
operation.title = t('operations.disconnect.title');
@@ -20058,7 +20091,7 @@ iD.operations.Merge = function(selectedIDs, context) {
return t('operations.merge.description');
};
- operation.id = "merge";
+ operation.id = 'merge';
operation.keys = [t('operations.merge.key')];
operation.title = t('operations.merge.title');
@@ -20086,7 +20119,7 @@ iD.operations.Move = function(selectedIDs, context) {
t('operations.move.description');
};
- operation.id = "move";
+ operation.id = 'move';
operation.keys = [t('operations.move.key')];
operation.title = t('operations.move.title');
@@ -20121,7 +20154,7 @@ iD.operations.Orthogonalize = function(selectedIDs, context) {
t('operations.orthogonalize.description.' + geometry);
};
- operation.id = "orthogonalize";
+ operation.id = 'orthogonalize';
operation.keys = [t('operations.orthogonalize.key')];
operation.title = t('operations.orthogonalize.title');
@@ -20149,7 +20182,7 @@ iD.operations.Reverse = function(selectedIDs, context) {
return t('operations.reverse.description');
};
- operation.id = "reverse";
+ operation.id = 'reverse';
operation.keys = [t('operations.reverse.key')];
operation.title = t('operations.reverse.title');
@@ -20176,7 +20209,7 @@ iD.operations.Rotate = function(selectedIDs, context) {
return t('operations.rotate.description');
};
- operation.id = "rotate";
+ operation.id = 'rotate';
operation.keys = [t('operations.rotate.key')];
operation.title = t('operations.rotate.title');
@@ -20230,7 +20263,7 @@ iD.operations.Split = function(selectedIDs, context) {
}
};
- operation.id = "split";
+ operation.id = 'split';
operation.keys = [t('operations.split.key')];
operation.title = t('operations.split.title');
@@ -20264,7 +20297,7 @@ iD.operations.Straighten = function(selectedIDs, context) {
t('operations.straighten.description');
};
- operation.id = "straighten";
+ operation.id = 'straighten';
operation.keys = [t('operations.straighten.key')];
operation.title = t('operations.straighten.title');
@@ -20306,7 +20339,7 @@ iD.Connection = function() {
};
connection.userURL = function(username) {
- return url + "/user/" + username;
+ return url + '/user/' + username;
};
connection.loadFromURL = function(url, callback) {
@@ -20324,7 +20357,7 @@ iD.Connection = function() {
url + '/api/0.6/' + type + '/' + osmID + (type !== 'node' ? '/full' : ''),
function(err, entities) {
event.load(err, {data: entities});
- if (callback) callback(err, entities && entities[id]);
+ if (callback) callback(err, entities && _.find(entities, function(e) { return e.id === id; }));
});
};
@@ -20409,15 +20442,13 @@ iD.Connection = function() {
var root = dom.childNodes[0],
children = root.childNodes,
- entities = {};
+ entities = [];
- var i, o, l;
- for (i = 0, l = children.length; i < l; i++) {
+ for (var i = 0, l = children.length; i < l; i++) {
var child = children[i],
parser = parsers[child.nodeName];
if (parser) {
- o = parser(child);
- entities[o.id] = o;
+ entities.push(parser(child));
}
}
@@ -20587,7 +20618,7 @@ iD.Connection = function() {
extent: iD.geo.Extent(
projection.invert([x, y + ts]),
projection.invert([x + ts, y]))
- }
+ };
});
function bboxUrl(tile) {
@@ -20754,14 +20785,6 @@ iD.Difference = function(base, head) {
return result;
};
- difference.addParents = function(entities) {
- for (var i in entities) {
- addParents(head.parentWays(entities[i]), entities);
- addParents(head.parentRelations(entities[i]), entities);
- }
- return entities;
- };
-
difference.summary = function() {
var relevant = {};
@@ -20957,18 +20980,12 @@ iD.Entity.prototype = {
resolver.parentRelations(this).length > 0;
},
- area: function(resolver) {
- return resolver.transient(this, 'area', function() {
- return d3.geo.area(this.asGeoJSON(resolver, true));
- });
- },
-
hasInterestingTags: function() {
return _.keys(this.tags).some(function(key) {
- return key != 'attribution' &&
- key != 'created_by' &&
- key != 'source' &&
- key != 'odbl' &&
+ return key !== 'attribution' &&
+ key !== 'created_by' &&
+ key !== 'source' &&
+ key !== 'odbl' &&
key.indexOf('tiger:') !== 0;
});
},
@@ -20980,8 +20997,8 @@ iD.Entity.prototype = {
iD.data.deprecated.forEach(function(d) {
var match = _.pairs(d.old)[0];
tags.forEach(function(t) {
- if (t[0] == match[0] &&
- (t[1] == match[1] || match[1] == '*')) {
+ if (t[0] === match[0] &&
+ (t[1] === match[1] || match[1] === '*')) {
deprecated[t[0]] = t[1];
}
});
@@ -21001,17 +21018,10 @@ iD.Graph = function(other, mutable) {
this.inherited = true;
} else {
- if (Array.isArray(other)) {
- var entities = {};
- for (var i = 0; i < other.length; i++) {
- entities[other[i].id] = other[i];
- }
- other = entities;
- }
this.entities = Object.create({});
this._parentWays = Object.create({});
this._parentRels = Object.create({});
- this.rebase(other || {});
+ this.rebase(other || []);
}
this.transients = {};
@@ -21100,11 +21110,12 @@ iD.Graph.prototype = {
// Merging of data only needed if graph is the base graph
if (!this.inherited) {
- for (i in entities) {
- if (!base.entities[i]) {
- base.entities[i] = entities[i];
- this._updateCalculated(undefined, entities[i],
- base.parentWays, base.parentRels);
+ for (i = 0; i < entities.length; i++) {
+ var entity = entities[i];
+ if (!base.entities[entity.id]) {
+ base.entities[entity.id] = entity;
+ this._updateCalculated(undefined, entity,
+ base.parentWays, base.parentRels);
}
}
}
@@ -21172,7 +21183,6 @@ iD.Graph.prototype = {
ways.push(entity.id);
parentWays[added[i]] = ways;
}
- } else if (type === 'node') {
} else if (type === 'relation') {
@@ -21235,24 +21245,6 @@ iD.Graph.prototype = {
return this;
},
- hasAllChildren: function(entity) {
- // we're only checking changed entities, since we assume fetched data
- // must have all children present
- var i;
- if (this.entities.hasOwnProperty(entity.id)) {
- if (entity.type === 'way') {
- for (i = 0; i < entity.nodes.length; i++) {
- if (!this.entities[entity.nodes[i]]) return false;
- }
- } else if (entity.type === 'relation') {
- for (i = 0; i < entity.members.length; i++) {
- if (!this.entities[entity.members[i].id]) return false;
- }
- }
- }
- return true;
- },
-
// Obliterates any existing entities
load: function(entities) {
var base = this.base();
@@ -21310,17 +21302,11 @@ iD.History = function(context) {
},
merge: function(entities, extent) {
-
- var base = stack[0].graph.base(),
- newentities = Object.keys(entities).filter(function(i) {
- return !base.entities[i];
- });
-
for (var i = 0; i < stack.length; i++) {
stack[i].graph.rebase(entities);
}
- tree.rebase(newentities);
+ tree.rebase(entities);
dispatch.change(undefined, extent);
},
@@ -21501,14 +21487,18 @@ iD.History = function(context) {
stack = h.stack.map(function(d) {
var entities = {}, entity;
- d.modified && d.modified.forEach(function(key) {
- entity = allEntities[key];
- entities[entity.id] = entity;
- });
+ if (d.modified) {
+ d.modified.forEach(function(key) {
+ entity = allEntities[key];
+ entities[entity.id] = entity;
+ });
+ }
- d.deleted && d.deleted.forEach(function(id) {
- entities[id] = undefined;
- });
+ if (d.deleted) {
+ d.deleted.forEach(function(id) {
+ entities[id] = undefined;
+ });
+ }
return {
graph: iD.Graph(stack[0].graph).load(entities),
@@ -21589,7 +21579,7 @@ iD.Node = iD.Entity.node = function iD_Node() {
iD.Node.prototype = Object.create(iD.Entity.prototype);
_.extend(iD.Node.prototype, {
- type: "node",
+ type: 'node',
extent: function() {
return new iD.geo.Extent(this.loc);
@@ -21651,7 +21641,7 @@ iD.Relation = iD.Entity.relation = function iD_Relation() {
iD.Relation.prototype = Object.create(iD.Entity.prototype);
_.extend(iD.Relation.prototype, {
- type: "relation",
+ type: 'relation',
members: [],
extent: function(resolver) {
@@ -21682,7 +21672,7 @@ _.extend(iD.Relation.prototype, {
indexedMembers: function() {
var result = new Array(this.members.length);
for (var i = 0; i < this.members.length; i++) {
- result[i] = _.extend({}, this.members[i], {index: i})
+ result[i] = _.extend({}, this.members[i], {index: i});
}
return result;
},
@@ -21798,6 +21788,12 @@ _.extend(iD.Relation.prototype, {
});
},
+ area: function(resolver) {
+ return resolver.transient(this, 'area', function() {
+ return d3.geo.area(this.asGeoJSON(resolver));
+ });
+ },
+
isMultipolygon: function() {
return this.tags.type === 'multipolygon';
},
@@ -21874,14 +21870,9 @@ _.extend(iD.Relation.prototype, {
return result;
}
});
-iD.Tree = function(graph) {
-
+iD.Tree = function(head) {
var rtree = rbush(),
- head = graph,
- queuedCreated = [],
- queuedModified = [],
- rectangles = {},
- rebased;
+ rectangles = {};
function extentRectangle(extent) {
return [
@@ -21899,90 +21890,69 @@ iD.Tree = function(graph) {
return rect;
}
- function remove(entity) {
- rtree.remove(rectangles[entity.id]);
- delete rectangles[entity.id];
- }
-
- function bulkInsert(entities) {
- for (var i = 0, rects = []; i < entities.length; i++) {
- rects.push(entityRectangle(entities[i]));
- }
- rtree.load(rects);
- }
-
- function bulkReinsert(entities) {
- entities.forEach(remove);
- bulkInsert(entities);
- }
-
- var tree = {
-
- rebase: function(entities) {
- for (var i = 0, inserted = []; i < entities.length; i++) {
- if (!graph.entities.hasOwnProperty(entities[i])) {
- inserted.push(graph.entity(entities[i]));
- }
+ function updateParents(entity, insertions) {
+ head.parentWays(entity).forEach(function(parent) {
+ if (rectangles[parent.id]) {
+ rtree.remove(rectangles[parent.id]);
+ insertions.push(entityRectangle(parent));
}
- bulkInsert(inserted);
- rebased = true;
- return tree;
- },
+ });
- intersects: function(extent, g) {
+ head.parentRelations(entity).forEach(function(parent) {
+ if (rectangles[parent.id]) {
+ rtree.remove(rectangles[parent.id]);
+ insertions.push(entityRectangle(parent));
+ }
+ updateParents(parent, insertions);
+ });
+ }
- head = g;
+ var tree = {};
- if (graph !== head || rebased) {
- var diff = iD.Difference(graph, head),
- modified = {};
+ tree.rebase = function(entities) {
+ var insertions = [];
- diff.modified().forEach(function(d) {
- var loc = graph.entities[d.id].loc;
- if (!loc || loc[0] !== d.loc[0] || loc[1] !== d.loc[1]) {
- modified[d.id] = d;
- }
- });
+ entities.forEach(function(entity) {
+ if (head.entities.hasOwnProperty(entity.id) || rectangles[entity.id])
+ return;
- var created = diff.created().concat(queuedCreated);
- modified = d3.values(diff.addParents(modified))
- // some parents might be created, not modified
- .filter(function(d) { return !!graph.hasEntity(d.id); })
- .concat(queuedModified);
- queuedCreated = [];
- queuedModified = [];
+ insertions.push(entityRectangle(entity));
+ updateParents(entity, insertions);
+ });
- var reinserted = [],
- inserted = [];
+ rtree.load(insertions);
- modified.forEach(function(d) {
- if (head.hasAllChildren(d)) reinserted.push(d);
- else queuedModified.push(d);
- });
+ return tree;
+ };
- created.forEach(function(d) {
- if (head.hasAllChildren(d)) inserted.push(d);
- else queuedCreated.push(d);
- });
+ tree.intersects = function(extent, graph) {
+ if (graph !== head) {
+ var diff = iD.Difference(head, graph),
+ insertions = [];
- bulkReinsert(reinserted);
- bulkInsert(inserted);
+ head = graph;
- diff.deleted().forEach(remove);
+ diff.deleted().forEach(function(entity) {
+ rtree.remove(rectangles[entity.id]);
+ delete rectangles[entity.id];
+ });
- graph = head;
- rebased = false;
- }
+ diff.modified().forEach(function(entity) {
+ rtree.remove(rectangles[entity.id]);
+ insertions.push(entityRectangle(entity));
+ updateParents(entity, insertions);
+ });
- return rtree.search(extentRectangle(extent)).map(function (rect) {
- return graph.entities[rect.id];
+ diff.created().forEach(function(entity) {
+ insertions.push(entityRectangle(entity));
});
- },
- graph: function() {
- return graph;
+ rtree.load(insertions);
}
+ return rtree.search(extentRectangle(extent)).map(function(rect) {
+ return head.entity(rect.id);
+ });
};
return tree;
@@ -21998,13 +21968,18 @@ iD.Way = iD.Entity.way = function iD_Way() {
iD.Way.prototype = Object.create(iD.Entity.prototype);
_.extend(iD.Way.prototype, {
- type: "way",
+ type: 'way',
nodes: [],
extent: function(resolver) {
return resolver.transient(this, 'extent', function() {
return this.nodes.reduce(function(extent, id) {
- return extent.extend(resolver.entity(id).extent(resolver));
+ var node = resolver.hasEntity(id);
+ if (node) {
+ return extent.extend(node.extent());
+ } else {
+ return extent;
+ }
}, iD.geo.Extent());
});
},
@@ -22100,13 +22075,13 @@ _.extend(iD.Way.prototype, {
for (var i = 0; i < this.nodes.length; i++) {
var node = this.nodes[i];
- if (node != id && nodes[nodes.length - 1] != node) {
+ if (node !== id && nodes[nodes.length - 1] !== node) {
nodes.push(node);
}
}
// Preserve circularity
- if (this.nodes.length > 1 && this.first() === id && this.last() === id && nodes[nodes.length - 1] != nodes[0]) {
+ if (this.nodes.length > 1 && this.first() === id && this.last() === id && nodes[nodes.length - 1] !== nodes[0]) {
nodes.push(nodes[0]);
}
@@ -22130,34 +22105,47 @@ _.extend(iD.Way.prototype, {
return r;
},
- asGeoJSON: function(resolver, polygon) {
+ asGeoJSON: function(resolver) {
return resolver.transient(this, 'GeoJSON', function() {
- var nodes = resolver.childNodes(this);
-
- if (this.isArea() && polygon && nodes.length >= 4) {
- if (!this.isClosed()) {
- nodes = nodes.concat([nodes[0]]);
- }
-
- var json = {
+ var coordinates = _.pluck(resolver.childNodes(this), 'loc');
+ if (this.isArea() && this.isClosed()) {
+ return {
type: 'Polygon',
- coordinates: [_.pluck(nodes, 'loc')]
+ coordinates: [coordinates]
};
-
- // Heuristic for detecting counterclockwise winding order. Assumes
- // that OpenStreetMap polygons are not hemisphere-spanning.
- if (d3.geo.area(json) > 2 * Math.PI) {
- json.coordinates[0] = json.coordinates[0].reverse();
- }
-
- return json;
} else {
return {
type: 'LineString',
- coordinates: _.pluck(nodes, 'loc')
+ coordinates: coordinates
};
}
});
+ },
+
+ area: function(resolver) {
+ 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')]
+ };
+
+ 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) {
+ json.coordinates[0] = json.coordinates[0].reverse();
+ area = d3.geo.area(json);
+ }
+
+ return isNaN(area) ? 0 : area;
+ });
}
});
@@ -22216,7 +22204,7 @@ iD.Background = function(context) {
q = iD.util.stringQs(location.hash.substring(1));
var id = b.id;
- if (!id && b.name === 'Custom') {
+ if (id === 'custom') {
id = 'custom:' + b.template;
}
@@ -22234,17 +22222,12 @@ iD.Background = function(context) {
location.replace('#' + iD.util.qsString(q, true));
- var imageryUsed = [];
- if (b.name === 'Custom') {
- imageryUsed.push('Custom (' + b.template + ')');
- } else {
- imageryUsed.push(b.id || b.name);
- }
+ var imageryUsed = [b.imageryUsed()];
overlayLayers.forEach(function (d) {
var source = d.source();
if (!source.isLocatorOverlay()) {
- imageryUsed.push(source.id || source.name);
+ imageryUsed.push(source.imageryUsed());
}
});
@@ -22273,7 +22256,7 @@ iD.Background = function(context) {
gpx.call(gpxLayer);
var overlays = selection.selectAll('.overlay-layer')
- .data(overlayLayers, function(d) { return d.source().name });
+ .data(overlayLayers, function(d) { return d.source().name(); });
overlays.enter().insert('div', '.layer-data')
.attr('class', 'layer-layer overlay-layer');
@@ -22312,7 +22295,7 @@ iD.Background = function(context) {
};
background.bing = function() {
- background.baseLayerSource(findSource("Bing"));
+ background.baseLayerSource(findSource('Bing'));
};
background.hasGpxLayer = function() {
@@ -22354,7 +22337,7 @@ iD.Background = function(context) {
background.showsLayer = function(d) {
return d === baseLayer.source() ||
- (d.name === 'Custom' && baseLayer.source().name === 'Custom') ||
+ (d.id === 'custom' && baseLayer.source().id === 'custom') ||
overlayLayers.some(function(l) { return l.source() === d; });
};
@@ -22402,12 +22385,9 @@ iD.Background = function(context) {
chosen = q.background || q.layer;
if (chosen && chosen.indexOf('custom:') === 0) {
- background.baseLayerSource(iD.BackgroundSource({
- template: chosen.replace(/^custom:/, ''),
- name: 'Custom'
- }));
+ background.baseLayerSource(iD.BackgroundSource.Custom(chosen.replace(/^custom:/, '')));
} else {
- background.baseLayerSource(findSource(chosen) || findSource("Bing"));
+ background.baseLayerSource(findSource(chosen) || findSource('Bing'));
}
var locator = _.find(backgroundSources, function(d) {
@@ -22428,7 +22408,8 @@ iD.Background = function(context) {
};
iD.BackgroundSource = function(data) {
var source = _.clone(data),
- offset = [0, 0];
+ offset = [0, 0],
+ name = source.name;
source.scaleExtent = data.scaleExtent || [0, 20];
@@ -22444,6 +22425,14 @@ iD.BackgroundSource = function(data) {
return source;
};
+ source.name = function() {
+ return name;
+ };
+
+ source.imageryUsed = function() {
+ return source.id || name;
+ };
+
source.url = function(coord) {
return data.template
.replace('{x}', coord[0])
@@ -22470,7 +22459,7 @@ iD.BackgroundSource = function(data) {
};
source.isLocatorOverlay = function() {
- return source.name === 'Locator Overlay';
+ return name === 'Locator Overlay';
};
source.copyrightNotices = function() {};
@@ -22503,7 +22492,7 @@ iD.BackgroundSource.Bing = function(data, dispatch) {
dispatch.change();
});
- var template = "http://ecn.t{t}.tiles.virtualearth.net/tiles/a{u}.jpeg?g=587&mkt=en-gb&n=z",
+ var template = 'http://ecn.t{t}.tiles.virtualearth.net/tiles/a{u}.jpeg?g=587&mkt=en-gb&n=z',
subdomains = [0, 1, 2, 3];
bing.url = function(coord) {
@@ -22535,16 +22524,40 @@ iD.BackgroundSource.Bing = function(data, dispatch) {
}).join(', ');
};
- bing.logo = "bing_maps.png";
- bing.terms_url = "http://opengeodata.org/microsoft-imagery-details";
+ bing.logo = 'bing_maps.png';
+ bing.terms_url = 'http://opengeodata.org/microsoft-imagery-details';
return bing;
};
iD.BackgroundSource.None = function() {
- return iD.BackgroundSource({ name: t('background.none'), id: 'None', template: '' });
+ var source = iD.BackgroundSource({id: 'none', template: ''});
+
+ source.name = function() {
+ return t('background.none');
+ };
+
+ source.imageryUsed = function() {
+ return 'None';
+ };
+
+ return source;
+};
+
+iD.BackgroundSource.Custom = function(template) {
+ var source = iD.BackgroundSource({id: 'custom', template: template});
+
+ source.name = function() {
+ return t('background.custom');
+ };
+
+ source.imageryUsed = function() {
+ return 'Custom (' + template + ')';
+ };
+
+ return source;
};
-iD.GpxLayer = function(context, dispatch) {
+iD.GpxLayer = function(context) {
var projection,
gj = {},
enable = true,
@@ -22690,7 +22703,7 @@ iD.Map = function(context) {
map.surface = surface = dataLayer.append('svg')
.on('mousedown.zoom', function() {
- if (d3.event.button == 2) {
+ if (d3.event.button === 2) {
d3.event.stopPropagation();
}
}, true)
@@ -22861,7 +22874,8 @@ iD.Map = function(context) {
var zoom = String(~~map.zoom());
if (surface.attr('data-zoom') !== zoom) {
- surface.attr('data-zoom', zoom);
+ surface.attr('data-zoom', zoom)
+ .classed('low-zoom', zoom <= 16);
}
if (!difference) {
@@ -22902,7 +22916,7 @@ iD.Map = function(context) {
map.mouse = function() {
var e = mousemove || d3.event, s;
- while (s = e.sourceEvent) e = s;
+ while ((s = e.sourceEvent)) e = s;
return mouse(e);
};
@@ -23027,7 +23041,7 @@ iD.Map = function(context) {
d3.timer(function() {
if (stop) return true;
map.center(iD.geo.interp(from, loc, (t += 1) / 10));
- return t == 10;
+ return t === 10;
}, 20);
return map;
};
@@ -23266,7 +23280,7 @@ iD.svg = {
if (entity.id in cache) {
return cache[entity.id];
} else {
- return cache[entity.id] = path(entity.asGeoJSON(graph, polygon));
+ return cache[entity.id] = path(entity.asGeoJSON(graph)); // jshint ignore:line
}
};
},
@@ -23379,7 +23393,8 @@ iD.svg.Areas = function(projection) {
var entity = entities[i];
if (entity.geometry(graph) !== 'area') continue;
- if (multipolygon = iD.geo.isSimpleMultipolygonOuterMember(entity, graph)) {
+ multipolygon = iD.geo.isSimpleMultipolygonOuterMember(entity, graph);
+ if (multipolygon) {
areas[multipolygon.id] = {
entity: multipolygon.mergeTags(entity.tags),
area: Math.abs(entity.area(graph))
@@ -23481,11 +23496,11 @@ iD.svg.Labels = function(projection, context) {
var font_sizes = label_stack.map(function(d) {
var style = iD.util.getStyle('text.' + d[0] + '.tag-' + d[1]),
- m = style && style.cssText.match("font-size: ([0-9]{1,2})px;");
+ m = style && style.cssText.match('font-size: ([0-9]{1,2})px;');
if (m) return parseInt(m[1], 10);
style = iD.util.getStyle('text.' + d[0]);
- m = style && style.cssText.match("font-size: ([0-9]{1,2})px;");
+ m = style && style.cssText.match('font-size: ([0-9]{1,2})px;');
if (m) return parseInt(m[1], 10);
return default_size;
@@ -23538,19 +23553,18 @@ iD.svg.Labels = function(projection, context) {
}
function drawLineLabels(group, entities, filter, classes, labels) {
-
var texts = group.selectAll('text.' + classes)
.filter(filter)
.data(entities, iD.Entity.key);
- var tp = texts.enter()
+ texts.enter()
.append('text')
.attr('class', function(d, i) { return classes + ' ' + labels[i].classes + ' ' + d.id; })
.append('textPath')
.attr('class', 'textpath');
- var tps = texts.selectAll('.textpath')
+ texts.selectAll('.textpath')
.filter(filter)
.data(entities, iD.Entity.key)
.attr({
@@ -23560,11 +23574,9 @@ iD.svg.Labels = function(projection, context) {
.text(iD.util.displayName);
texts.exit().remove();
-
}
function drawLinePaths(group, entities, filter, classes, labels) {
-
var halos = group.selectAll('path')
.filter(filter)
.data(entities, iD.Entity.key);
@@ -24153,7 +24165,7 @@ iD.svg.Restrictions = function(context) {
}
drawRestrictions.turns = function (graph, selectedIDs) {
- if (selectedIDs.length != 1)
+ if (selectedIDs.length !== 1)
return [];
var from = graph.entity(selectedIDs[0]);
@@ -24194,7 +24206,7 @@ iD.svg.Restrictions = function(context) {
to: to,
restriction: restriction,
angle: Math.atan2(b[1] - a[1], b[0] - a[0])
- }
+ };
};
return drawRestrictions;
@@ -24222,7 +24234,7 @@ iD.svg.Surface = function(context) {
.data(data)
.enter().append('use')
.attr('id', function(d) { return d.key; })
- .attr('transform', function(d) { return "translate(-" + d.value[0] + ",-" + d.value[1] + ")"; })
+ .attr('transform', function(d) { return 'translate(-' + d.value[0] + ',-' + d.value[1] + ')'; })
.attr('xlink:href', '#' + id);
};
}
@@ -24320,8 +24332,8 @@ iD.svg.Surface = function(context) {
iD.svg.TagClasses = function() {
var primary = [
'highway', 'railway', 'waterway', 'aeroway', 'motorway',
- 'power', 'amenity', 'natural', 'landuse', 'building', 'leisure',
- 'place', 'boundary'
+ 'boundary', 'power', 'amenity', 'natural', 'landuse',
+ 'building', 'leisure', 'place'
],
secondary = [
'oneway', 'bridge', 'tunnel', 'construction'
@@ -24434,9 +24446,10 @@ iD.svg.Vertices = function(projection, context) {
var icons = {};
function icon(entity) {
if (entity.id in icons) return icons[entity.id];
- return icons[entity.id] = (zoom !== 0 &&
+ icons[entity.id] = zoom !== 0 &&
entity.hasInterestingTags() &&
- context.presets().match(entity, graph).icon);
+ context.presets().match(entity, graph).icon;
+ return icons[entity.id];
}
function circle(klass) {
@@ -24449,7 +24462,7 @@ iD.svg.Vertices = function(projection, context) {
this.setAttribute('cx', c);
this.setAttribute('cy', -c);
this.setAttribute('r', r);
- }
+ };
}
var enter = groups.enter().append('g')
@@ -24494,7 +24507,7 @@ iD.svg.Vertices = function(projection, context) {
if (entity.id in selected ||
entity.hasInterestingTags() ||
entity.isIntersection(graph)) {
- vertices.push(entity)
+ vertices.push(entity);
}
}
@@ -24523,8 +24536,7 @@ iD.svg.Vertices = function(projection, context) {
};
iD.ui = function(context) {
function render(container) {
- var history = context.history(),
- map = context.map();
+ var map = context.map();
if (iD.detect().opera) container.classed('opera', true);
@@ -24552,7 +24564,7 @@ iD.ui = function(context) {
.attr('id', 'map')
.call(map);
- var spacer = bar.append('div')
+ bar.append('div')
.attr('class', 'spacer col4');
var limiter = bar.append('div')
@@ -24579,7 +24591,7 @@ iD.ui = function(context) {
content.append('div')
.style('display', 'none')
- .attr('class', 'help-wrap fillL col5 content');
+ .attr('class', 'help-wrap map-overlay fillL col5 content');
var controls = bar.append('div')
.attr('class', 'map-controls');
@@ -24773,7 +24785,7 @@ iD.ui.Attribution = function(context) {
.attr('class', klass);
var background = div.selectAll('.attribution')
- .data(data, function(d) { return d.name; });
+ .data(data, function(d) { return d.name(); });
background.enter()
.append('span')
@@ -24785,7 +24797,7 @@ iD.ui.Attribution = function(context) {
return;
}
- var source = d.terms_text || d.id || d.name;
+ var source = d.terms_text || d.id || d.name();
if (d.logo) {
source = '
';
@@ -24849,9 +24861,12 @@ iD.ui.Background = function(context) {
['top', [0, -1]],
['right', [-1, 0]],
['bottom', [0, 1]]],
- opacityDefault = (context.storage('background-opacity') !== undefined) ?
+ opacityDefault = (context.storage('background-opacity') !== null) ?
(+context.storage('background-opacity')) : 0.5;
+ // Can be 0 from <1.3.0 use or due to issue #1923.
+ if (opacityDefault === 0) opacityDefault = 0.5;
+
function background(selection) {
function setOpacity(d) {
@@ -24892,10 +24907,7 @@ iD.ui.Background = function(context) {
selectLayer();
return;
}
- context.background().baseLayerSource(iD.BackgroundSource({
- template: template,
- name: 'Custom'
- }));
+ context.background().baseLayerSource(iD.BackgroundSource.Custom(template));
selectLayer();
}
@@ -24916,7 +24928,7 @@ iD.ui.Background = function(context) {
.filter(filter);
var layerLinks = layerList.selectAll('li.layer')
- .data(sources, function(d) { return d.name; });
+ .data(sources, function(d) { return d.name(); });
var enter = layerLinks.enter()
.insert('li', '.custom_layer')
@@ -24926,7 +24938,7 @@ iD.ui.Background = function(context) {
enter.filter(function(d) { return d.description; })
.call(bootstrap.tooltip()
.title(function(d) { return d.description; })
- .placement('left'));
+ .placement('top'));
var label = enter.append('label');
@@ -24936,7 +24948,7 @@ iD.ui.Background = function(context) {
.on('change', change);
label.append('span')
- .text(function(d) { return d.name; });
+ .text(function(d) { return d.name(); });
layerLinks.exit()
.remove();
@@ -24982,7 +24994,7 @@ iD.ui.Background = function(context) {
}
var content = selection.append('div')
- .attr('class', 'fillL map-overlay content hide'),
+ .attr('class', 'fillL map-overlay col3 content hide'),
tooltip = bootstrap.tooltip()
.placement('left')
.html(true)
@@ -25006,16 +25018,16 @@ iD.ui.Background = function(context) {
return d3.event.stopPropagation();
});
content.style('display', 'block')
- .style('left', '0px')
+ .style('right', '-300px')
.transition()
.duration(200)
- .style('left', '-260px');
+ .style('right', '0px');
} else {
content.style('display', 'block')
- .style('left', '-260px')
+ .style('right', '0px')
.transition()
.duration(200)
- .style('left', '0px')
+ .style('right', '-300px')
.each('end', function() {
d3.select(this).style('display', 'none');
});
@@ -25050,9 +25062,9 @@ iD.ui.Background = function(context) {
return t('background.percent_brightness', { opacity: (d * 100) });
})
.on('click.set-opacity', setOpacity)
- .html("
")
+ .html('')
.call(bootstrap.tooltip()
- .placement('top'))
+ .placement('left'))
.append('div')
.attr('class', 'opacity')
.style('opacity', String);
@@ -25062,7 +25074,7 @@ iD.ui.Background = function(context) {
var custom = backgroundList.append('li')
.attr('class', 'custom_layer')
- .datum({name: 'Custom'});
+ .datum(iD.BackgroundSource.Custom());
var label = custom.append('label');
@@ -25115,7 +25127,7 @@ iD.ui.Background = function(context) {
label = gpxLayerItem.append('label')
.call(bootstrap.tooltip()
.title(t('gpx.drag_drop'))
- .placement('left'));
+ .placement('top'));
label.append('input')
.attr('type', 'checkbox')
@@ -25160,10 +25172,6 @@ iD.ui.Background = function(context) {
resetButton.append('div')
.attr('class', 'icon undo');
- resetButton.call(bootstrap.tooltip()
- .title(t('background.reset'))
- .placement('bottom'));
-
context.map()
.on('move.background-update', _.debounce(update, 1000));
update();
@@ -25413,16 +25421,16 @@ iD.ui.confirm = function(selection) {
var section = modal.select('.content');
- var modalHeader = section.append('div')
+ section.append('div')
.attr('class', 'modal-section header');
- var description = section.append('div')
+ section.append('div')
.attr('class', 'modal-section message-text');
var buttonwrap = section.append('div')
.attr('class', 'modal-section buttons cf');
- var okbutton = buttonwrap.append('button')
+ buttonwrap.append('button')
.attr('class', 'col2 action')
.on('click.confirm', function() {
modal.remove();
@@ -26137,9 +26145,6 @@ iD.ui.Help = function(context) {
return d3.event.stopPropagation();
});
- selection.on('mousedown.help-inside', function() {
- return d3.event.stopPropagation();
- });
}
return help;
@@ -26264,7 +26269,7 @@ iD.ui.intro = function(context) {
for (var key in introGraph) {
introGraph[key] = iD.Entity(introGraph[key]);
}
- context.history().merge(iD.Graph().load(introGraph).entities);
+ context.history().merge(d3.values(iD.Graph().load(introGraph).entities));
context.background().bing();
// Block saving
@@ -26300,7 +26305,7 @@ iD.ui.intro = function(context) {
navwrap.remove();
d3.select('.background-layer').style('opacity', opacity);
context.connection().toggle(true).flush().loadedTiles(loadedTiles);
- context.history().reset().merge(baseEntities);
+ context.history().reset().merge(d3.values(baseEntities));
context.background().baseLayerSource(background);
if (history) context.history().fromJSON(history);
window.location.replace(hash);
@@ -26514,7 +26519,7 @@ iD.ui.modal = function(selection, blocking) {
.attr('class', 'modal fillL col6');
shaded.on('click.remove-modal', function() {
- if (d3.event.target == this && !blocking) shaded.close();
+ if (d3.event.target === this && !blocking) shaded.close();
});
modal.append('button')
@@ -26587,12 +26592,12 @@ iD.ui.Modes = function(context) {
context.on('enter.editor', function(entered) {
buttons.classed('active', function(mode) { return entered.button === mode.button; });
context.container()
- .classed("mode-" + entered.id, true);
+ .classed('mode-' + entered.id, true);
});
context.on('exit.editor', function(exited) {
context.container()
- .classed("mode-" + exited.id, false);
+ .classed('mode-' + exited.id, false);
});
var keybinding = d3.keybinding('mode-buttons');
@@ -26649,11 +26654,7 @@ iD.ui.preset = function(context) {
field.input = iD.ui.preset[field.type](field, context)
.on('change', event.change);
- if (field.type === 'address' ||
- field.type === 'wikipedia' ||
- field.type === 'maxspeed') {
- field.input.entity(entity);
- }
+ if (field.input.entity) field.input.entity(entity);
field.keys = field.keys || [field.key];
@@ -27029,7 +27030,7 @@ iD.ui.PresetList = function(context) {
function drawList(list, presets) {
var collection = presets.collection.map(function(preset) {
- return preset.members ? CategoryItem(preset) : PresetItem(preset)
+ return preset.members ? CategoryItem(preset) : PresetItem(preset);
});
var items = list.selectAll('.preset-list-item')
@@ -27186,7 +27187,7 @@ iD.ui.RadialMenu = function(context, operations) {
menu = selection.append('g')
.attr('class', 'radial-menu')
- .attr('transform', "translate(" + center + ")")
+ .attr('transform', 'translate(' + center + ')')
.attr('opacity', 0);
menu.transition()
@@ -27485,7 +27486,7 @@ iD.ui.RawMembershipEditor = function(context) {
if (member.id === entity.id) {
memberships.push({relation: relation, member: member, index: index});
}
- })
+ });
});
selection.call(iD.ui.Disclosure()
@@ -28243,7 +28244,7 @@ iD.ui.Success = function(context) {
.attr('class', 'fr')
.append('span')
.attr('class', 'icon close')
- .on('click', function() { event.cancel(success) });
+ .on('click', function() { event.cancel(success); });
header.append('h3')
.text(t('success.just_edited'));
@@ -28340,7 +28341,7 @@ iD.ui.TagReference = function(tag) {
body
.append('img')
.attr('class', 'wiki-image')
- .attr('src', docs.image.thumb_url_prefix + "100" + docs.image.thumb_url_suffix)
+ .attr('src', docs.image.thumb_url_prefix + '100' + docs.image.thumb_url_suffix)
.on('load', function() { show(); })
.on('error', function() { d3.select(this).remove(); show(); });
} else {
@@ -28584,9 +28585,8 @@ iD.ui.Zoom = function(context) {
.call(keybinding);
};
};
-iD.ui.preset.access = function(field, context) {
+iD.ui.preset.access = function(field) {
var event = d3.dispatch('change'),
- entity,
items;
function access(selection) {
@@ -28638,7 +28638,7 @@ iD.ui.preset.access = function(field, context) {
access.options = function(type) {
var options = ['no', 'permissive', 'private', 'designated', 'destination'];
- if (type != 'access') {
+ if (type !== 'access') {
options.unshift('yes');
}
@@ -28650,18 +28650,84 @@ iD.ui.preset.access = function(field, context) {
});
};
- access.entity = function(_) {
- if (!arguments.length) return entity;
- entity = _;
- return access;
+ var placeholders = {
+ footway: {
+ foot: 'yes',
+ motor_vehicle: 'no'
+ },
+ steps: {
+ foot: 'yes',
+ motor_vehicle: 'no'
+ },
+ pedestrian: {
+ foot: 'yes',
+ motor_vehicle: 'no'
+ },
+ cycleway: {
+ bicycle: 'yes',
+ motor_vehicle: 'no'
+ },
+ bridleway: {
+ horse: 'yes'
+ },
+ path: {
+ motor_vehicle: 'no'
+ },
+ motorway: {
+ motor_vehicle: 'yes'
+ },
+ trunk: {
+ motor_vehicle: 'yes'
+ },
+ primary: {
+ motor_vehicle: 'yes'
+ },
+ secondary: {
+ motor_vehicle: 'yes'
+ },
+ tertiary: {
+ motor_vehicle: 'yes'
+ },
+ residential: {
+ motor_vehicle: 'yes'
+ },
+ unclassified: {
+ motor_vehicle: 'yes'
+ },
+ service: {
+ motor_vehicle: 'yes'
+ },
+ motorway_link: {
+ motor_vehicle: 'yes'
+ },
+ trunk_link: {
+ motor_vehicle: 'yes'
+ },
+ primary_link: {
+ motor_vehicle: 'yes'
+ },
+ secondary_link: {
+ motor_vehicle: 'yes'
+ },
+ tertiary_link: {
+ motor_vehicle: 'yes'
+ }
};
access.tags = function(tags) {
items.selectAll('.preset-input-access')
.value(function(d) { return tags[d] || ''; })
- .attr('placeholder', function(d) {
- return d !== 'access' && tags.access ? tags.access : field.placeholder();
+ .attr('placeholder', function() {
+ return tags.access ? tags.access : field.placeholder();
});
+
+ items.selectAll('#preset-input-access-access')
+ .attr('placeholder', 'yes');
+
+ _.forEach(placeholders[tags.highway], function(value, key) {
+ items.selectAll('#preset-input-access-' + key)
+ .attr('placeholder', value);
+ });
};
access.focus = function() {
@@ -29027,7 +29093,7 @@ iD.ui.preset.url = function(field) {
.on('blur', change)
.on('change', change);
- if (field.type == 'number') {
+ if (field.type === 'number') {
input.attr('type', 'text');
var spinControl = selection.selectAll('.spin-control')
@@ -29074,7 +29140,8 @@ iD.ui.preset.localized = function(field, context) {
var event = d3.dispatch('change'),
wikipedia = iD.wikipedia(),
- input, localizedInputs, wikiTitles;
+ input, localizedInputs, wikiTitles,
+ entity;
function i(selection) {
input = selection.selectAll('.localized-main')
@@ -29090,6 +29157,13 @@ iD.ui.preset.localized = function(field, context) {
.on('blur', change)
.on('change', change);
+ if (field.id === 'name') {
+ var preset = context.presets().match(entity, context.graph());
+ input.call(d3.combobox().fetcher(
+ iD.util.SuggestNames(preset, iD.data.suggestions)
+ ));
+ }
+
var translateButton = selection.selectAll('.localized-add')
.data([0]);
@@ -29285,7 +29359,11 @@ iD.ui.preset.localized = function(field, context) {
};
i.focus = function() {
- title.node().focus();
+ input.node().focus();
+ };
+
+ i.entity = function(_) {
+ entity = _;
};
return d3.rebind(i, event, 'on');
@@ -29598,7 +29676,7 @@ iD.ui.preset.wikipedia = function(field, context) {
function change() {
var value = title.value(),
- m = value.match(/http:\/\/([a-z]+)\.wikipedia\.org\/wiki\/(.+)/),
+ m = value.match(/https?:\/\/([a-z]+)\.wikipedia\.org\/wiki\/(.+)/),
l = m && _.find(iD.data.wikipedia, function(d) { return m[1] === d[2]; });
if (l) {
@@ -29736,10 +29814,6 @@ iD.ui.intro.line = function(context, reveal) {
title: 'intro.lines.title'
};
- function one(target, e, f) {
- d3.selection.prototype.one.call(target, e, f);
- }
-
function timeout(f, t) {
timeouts.push(window.setTimeout(f, t));
}
@@ -29848,7 +29922,7 @@ iD.ui.intro.line = function(context, reveal) {
}
// selected wrong road type
- function retryPreset(mode) {
+ function retryPreset() {
timeout(function() {
var preset = d3.select('.entity-editor-pane .preset-list-button');
reveal(preset.node(), t('intro.lines.wrong_preset'));
@@ -30547,6 +30621,7 @@ iD.validate = function(changes, graph) {
return warnings;
};
+/* jshint ignore:start */
})();
window.locale = { _current: 'en' };
@@ -33487,14913 +33562,15085 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"terms_text": "Fugro Aerial Mapping"
},
{
- "name": "Imagerie Drone (Haiti)",
+ "name": "Geoimage.at MaxRes",
"type": "tms",
- "template": "http://wms.openstreetmap.fr/tms/1.0.0/iomhaiti/{zoom}/{x}/{y}",
+ "template": "http://geoimage.openstreetmap.at/4d80de696cd562a63ce463a58a61488d/{zoom}/{x}/{y}.jpg",
"polygon": [
[
[
- -72.1547401,
- 19.6878969
+ 16.5073284,
+ 46.9929304
],
[
- -72.162234,
- 19.689011
+ 16.283417,
+ 46.9929304
],
[
- -72.164995,
- 19.6932445
+ 16.135839,
+ 46.8713046
],
[
- -72.1657838,
- 19.6979977
+ 15.9831722,
+ 46.8190947
],
[
- -72.161603,
- 19.7035677
+ 16.0493278,
+ 46.655175
],
[
- -72.1487449,
- 19.7028993
+ 15.8610387,
+ 46.7180116
],
[
- -72.1477194,
- 19.7026765
+ 15.7592608,
+ 46.6900933
],
[
- -72.1485082,
- 19.7001514
+ 15.5607938,
+ 46.6796202
],
[
- -72.1436963,
- 19.7011169
+ 15.5760605,
+ 46.6342132
],
[
- -72.1410143,
- 19.7000029
+ 15.4793715,
+ 46.6027553
],
[
- -72.139476,
- 19.6973664
+ 15.4335715,
+ 46.6516819
],
[
- -72.1382533,
- 19.6927617
+ 15.2249267,
+ 46.6342132
],
[
- -72.1386872,
- 19.6923161
+ 15.0468154,
+ 46.6481886
],
[
- -72.1380561,
- 19.6896423
+ 14.9908376,
+ 46.5887681
],
[
- -72.1385294,
- 19.6894938
+ 14.9603042,
+ 46.6237293
],
[
- -72.1388055,
- 19.6901251
+ 14.8534374,
+ 46.6027553
],
[
- -72.1388844,
- 19.6876741
+ 14.8330818,
+ 46.5012666
],
[
- -72.1378195,
- 19.6872656
+ 14.7516595,
+ 46.4977636
],
[
- -72.13778,
- 19.6850003
+ 14.6804149,
+ 46.4381781
],
[
- -72.1369517,
- 19.6855945
+ 14.6142593,
+ 46.4381781
],
[
- -72.136794,
- 19.6840719
+ 14.578637,
+ 46.3785275
],
[
- -72.135729,
- 19.6835148
+ 14.4412369,
+ 46.4311638
],
[
- -72.1355713,
- 19.6740817
+ 14.1613476,
+ 46.4276563
],
[
- -72.1366362,
- 19.6708133
+ 14.1257253,
+ 46.4767409
],
[
- -72.1487843,
- 19.6710733
+ 14.0188585,
+ 46.4767409
],
[
- -72.1534779,
- 19.6763843
+ 13.9119917,
+ 46.5257813
],
[
- -72.1530835,
- 19.6769414
+ 13.8254805,
+ 46.5047694
],
[
- -72.1533251,
- 19.6769768
+ 13.4438134,
+ 46.560783
],
[
- -72.1532807,
- 19.6796525
+ 13.3064132,
+ 46.5502848
],
[
- -72.1523834,
- 19.6797175
+ 13.1283019,
+ 46.5887681
],
[
- -72.1522749,
- 19.6803488
+ 12.8433237,
+ 46.6132433
],
[
- -72.1519101,
- 19.6803395
+ 12.7262791,
+ 46.6412014
],
[
- -72.1518608,
- 19.6805067
+ 12.5125455,
+ 46.6656529
],
[
- -72.1528173,
- 19.6806552
+ 12.3598787,
+ 46.7040543
],
[
- -72.1522299,
- 19.6833011
+ 12.3649676,
+ 46.7703197
],
[
- -72.1507801,
- 19.6831499
+ 12.2886341,
+ 46.7772902
],
[
- -72.1504457,
- 19.6847862
+ 12.2733674,
+ 46.8852187
],
[
- -72.1508591,
- 19.6843492
+ 12.2072118,
+ 46.8747835
],
[
- -72.1530087,
- 19.6849898
+ 12.1308784,
+ 46.9026062
],
[
- -72.1546258,
- 19.6854354
+ 12.1156117,
+ 46.9998721
],
[
- -72.1543103,
- 19.6870694
+ 12.2530119,
+ 47.0657733
],
[
- -72.1547244,
- 19.6868466
+ 12.2123007,
+ 47.0934969
],
[
- -72.1548501,
- 19.6877564
+ 11.9833004,
+ 47.0449712
],
[
- -72.1545814,
- 19.6877982
- ]
- ],
- [
+ 11.7339445,
+ 46.9616816
+ ],
[
- -72.1310601,
- 19.6718929
+ 11.6321666,
+ 47.010283
],
[
- -72.1259842,
- 19.6772765
+ 11.5405665,
+ 46.9755722
],
[
- -72.1255379,
- 19.6776179
+ 11.4998553,
+ 47.0068129
],
[
- -72.1216891,
- 19.6776442
+ 11.418433,
+ 46.9651546
],
[
- -72.1149677,
- 19.672602
+ 11.2555884,
+ 46.9755722
],
[
- -72.1152745,
- 19.6687152
+ 11.1130993,
+ 46.913036
],
[
- -72.1198205,
- 19.6627535
+ 11.0418548,
+ 46.7633482
],
[
- -72.1227768,
- 19.6625696
+ 10.8891879,
+ 46.7598621
],
[
- -72.1248965,
- 19.662701
+ 10.7416099,
+ 46.7842599
],
[
- -72.1285779,
- 19.6645394
+ 10.7059877,
+ 46.8643462
],
[
- -72.1308091,
- 19.6661677
+ 10.5787653,
+ 46.8399847
],
[
- -72.1316737,
- 19.668794
+ 10.4566318,
+ 46.8504267
],
[
- -72.1315621,
- 19.671
- ]
- ],
- [
+ 10.4769874,
+ 46.9269392
+ ],
[
- -71.845795,
- 19.6709758
+ 10.3853873,
+ 46.9894592
],
[
- -71.8429354,
- 19.6759525
+ 10.2327204,
+ 46.8643462
],
[
- -71.8410027,
- 19.6759525
+ 10.1207647,
+ 46.8330223
],
[
- -71.8380249,
- 19.6755254
+ 9.8663199,
+ 46.9408389
],
[
- -71.8378671,
- 19.6745041
+ 9.9019422,
+ 47.0033426
],
[
- -71.8390504,
- 19.6743927
+ 9.6831197,
+ 47.0588402
],
[
- -71.8390109,
- 19.6741141
+ 9.6118752,
+ 47.0380354
],
[
- -71.8398392,
- 19.673947
+ 9.6322307,
+ 47.128131
],
[
- -71.8389123,
- 19.6736127
+ 9.5813418,
+ 47.1662025
],
[
- -71.8380249,
- 19.67209
+ 9.5406306,
+ 47.2664422
],
[
- -71.8380052,
- 19.6726285
+ 9.6067863,
+ 47.3492559
],
[
- -71.8376699,
- 19.6727214
+ 9.6729419,
+ 47.369939
],
[
- -71.8376305,
- 19.672545
+ 9.6424085,
+ 47.4457079
],
[
- -71.8354414,
- 19.6732135
+ 9.5660751,
+ 47.4801122
],
[
- -71.835333,
- 19.6729999
+ 9.7136531,
+ 47.5282405
],
[
- -71.8331242,
- 19.6734642
+ 9.7848976,
+ 47.5969187
],
[
- -71.8326706,
- 19.6716815
+ 9.8357866,
+ 47.5454185
],
[
- -71.8321579,
- 19.67209
+ 9.9477423,
+ 47.538548
],
[
- -71.8307183,
- 19.6694902
+ 10.0902313,
+ 47.4491493
],
[
- -71.8306009,
- 19.6697594
+ 10.1105869,
+ 47.3664924
],
[
- -71.8302174,
- 19.6698907
+ 10.2428982,
+ 47.3871688
],
[
- -71.8291833,
- 19.6672095
+ 10.1869203,
+ 47.2698953
],
[
- -71.8290749,
- 19.6672095
+ 10.3243205,
+ 47.2975125
],
[
- -71.8289122,
- 19.6667916
+ 10.4820763,
+ 47.4491493
],
[
- -71.8289516,
- 19.6666199
+ 10.4311873,
+ 47.4869904
],
[
- -71.8288333,
- 19.6663506
+ 10.4413651,
+ 47.5900549
],
[
- -71.8285572,
- 19.6664759
+ 10.4871652,
+ 47.5522881
],
[
- -71.8288678,
- 19.6672466
+ 10.5482319,
+ 47.5351124
],
[
- -71.8287593,
- 19.6674138
+ 10.5991209,
+ 47.5660246
],
[
- -71.8277979,
- 19.6678177
+ 10.7568766,
+ 47.5316766
],
[
- -71.8277112,
- 19.6678586
+ 10.8891879,
+ 47.5454185
],
[
- -71.8278263,
- 19.6679637
+ 10.9400769,
+ 47.4869904
],
[
- -71.8271831,
- 19.6681212
+ 10.9960547,
+ 47.3906141
],
[
- -71.8271761,
- 19.6680917
+ 11.2352328,
+ 47.4422662
],
[
- -71.8264405,
- 19.6683921
+ 11.2810328,
+ 47.3975039
],
[
- -71.8264074,
- 19.6683231
+ 11.4235219,
+ 47.5144941
],
[
- -71.8261954,
- 19.6684253
+ 11.5761888,
+ 47.5076195
],
[
- -71.8261806,
- 19.6683556
+ 11.6067221,
+ 47.5900549
],
[
- -71.8258946,
- 19.6684206
+ 11.8357224,
+ 47.5866227
],
[
- -71.8258897,
- 19.6686574
+ 12.003656,
+ 47.6243647
],
[
- -71.8251551,
- 19.6687549
+ 12.2072118,
+ 47.6037815
],
[
- -71.8254509,
- 19.6691588
+ 12.1614117,
+ 47.6963421
],
[
- -71.8229332,
- 19.6695739
+ 12.2581008,
+ 47.7442718
],
[
- -71.822713,
- 19.6696658
+ 12.2530119,
+ 47.6792136
],
[
- -71.8227688,
- 19.6697577
+ 12.4311232,
+ 47.7100408
],
[
- -71.8201751,
- 19.6709855
+ 12.4921899,
+ 47.631224
],
[
- -71.8198474,
- 19.6704537
+ 12.5685234,
+ 47.6277944
],
[
- -71.8197985,
- 19.6706014
+ 12.6295901,
+ 47.6894913
],
[
- -71.8194674,
- 19.6707557
+ 12.7720792,
+ 47.6689338
],
[
- -71.8182472,
- 19.6713433
+ 12.8331459,
+ 47.5419833
],
[
- -71.8181426,
- 19.6711431
+ 12.975635,
+ 47.4732332
],
[
- -71.8175813,
- 19.6714254
+ 13.0417906,
+ 47.4938677
],
[
- -71.816959,
- 19.6707672
+ 13.0367017,
+ 47.5557226
],
[
- -71.8176388,
- 19.6718965
+ 13.0977685,
+ 47.6415112
],
[
- -71.8171403,
- 19.6720376
+ 13.0316128,
+ 47.7100408
],
[
- -71.8158225,
- 19.6718045
+ 12.9043905,
+ 47.7203125
],
[
- -71.8138354,
- 19.6711874
+ 13.0061684,
+ 47.84683
],
[
- -71.8123259,
- 19.6706982
+ 12.9451016,
+ 47.9355501
],
[
- -71.8121759,
- 19.6704258
+ 12.8636793,
+ 47.9594103
],
[
- -71.8124304,
- 19.6701467
+ 12.8636793,
+ 48.0036929
],
[
- -71.8119184,
- 19.6700141
+ 12.7517236,
+ 48.0989418
],
[
- -71.8118765,
- 19.6705828
+ 12.8738571,
+ 48.2109733
],
[
- -71.811169,
- 19.6703483
+ 12.9603683,
+ 48.2109733
],
[
- -71.8095938,
- 19.6698516
+ 13.0417906,
+ 48.2652035
],
[
- -71.8077992,
- 19.6692829
+ 13.1842797,
+ 48.2990682
],
[
- -71.8056028,
- 19.668612
+ 13.2606131,
+ 48.2922971
],
[
- -71.8051443,
- 19.6668942
+ 13.3980133,
+ 48.3565867
],
[
- -71.8051196,
- 19.6652322
+ 13.4438134,
+ 48.417418
],
[
- -71.8052315,
- 19.661979
+ 13.4387245,
+ 48.5523383
],
[
- -71.8065603,
- 19.6523921
+ 13.509969,
+ 48.5860123
],
[
- -71.8073412,
- 19.6482946
+ 13.6117469,
+ 48.5725454
],
[
- -71.8099686,
- 19.6468292
+ 13.7287915,
+ 48.5118999
],
[
- -71.8147517,
- 19.6454502
+ 13.7847694,
+ 48.5725454
],
[
- -71.8147726,
- 19.6455619
+ 13.8203916,
+ 48.6263915
],
[
- -71.8150027,
- 19.6455093
+ 13.7949471,
+ 48.7171267
],
[
- -71.8149469,
- 19.6453846
+ 13.850925,
+ 48.7741724
],
[
- -71.8159928,
- 19.6450234
+ 14.0595697,
+ 48.6633774
],
[
- -71.8158882,
- 19.6448855
+ 14.0137696,
+ 48.6331182
],
[
- -71.8165854,
- 19.6446097
+ 14.0748364,
+ 48.5927444
],
[
- -71.8190119,
- 19.643802
+ 14.2173255,
+ 48.5961101
],
[
- -71.8211524,
- 19.643454
+ 14.3649034,
+ 48.5489696
],
[
- -71.8221564,
- 19.6433292
+ 14.4666813,
+ 48.6499311
],
[
- -71.8269046,
- 19.643211
+ 14.5582815,
+ 48.5961101
],
[
- -71.8280481,
- 19.6432241
+ 14.5989926,
+ 48.6263915
],
[
- -71.8304466,
- 19.6440778
+ 14.7211261,
+ 48.5759124
],
[
- -71.8306419,
- 19.6448592
+ 14.7211261,
+ 48.6868997
],
[
- -71.8295263,
- 19.6450365
+ 14.822904,
+ 48.7271983
],
[
- -71.8296064,
- 19.6456111
+ 14.8178151,
+ 48.777526
],
[
- -71.8299411,
- 19.6455651
+ 14.9647227,
+ 48.7851754
],
[
- -71.8303699,
- 19.6451744
+ 14.9893637,
+ 49.0126611
],
[
- -71.830471,
- 19.6453452
+ 15.1485933,
+ 48.9950306
],
[
- -71.8308092,
- 19.6451974
+ 15.1943934,
+ 48.9315502
],
[
- -71.8310184,
- 19.6451088
+ 15.3063491,
+ 48.9850128
],
[
- -71.8312519,
- 19.6458541
+ 15.3928603,
+ 48.9850128
],
[
- -71.8311125,
- 19.6458245
+ 15.4844604,
+ 48.9282069
],
[
- -71.831367,
- 19.6465862
+ 15.749083,
+ 48.8545973
],
[
- -71.8328939,
- 19.646189
+ 15.8406831,
+ 48.8880697
],
[
- -71.8344566,
- 19.6457062
+ 16.0086166,
+ 48.7808794
],
[
- -71.8344664,
- 19.6463052
+ 16.2070835,
+ 48.7339115
],
[
- -71.834215,
- 19.6461938
+ 16.3953727,
+ 48.7372678
],
[
- -71.8342002,
- 19.6465513
+ 16.4920617,
+ 48.8110498
],
[
- -71.8346702,
- 19.6463
+ 16.6905286,
+ 48.7741724
],
[
- -71.8349118,
- 19.6463905
+ 16.7057953,
+ 48.7339115
],
[
- -71.8347984,
- 19.6462187
+ 16.8991733,
+ 48.713769
],
[
- -71.8354393,
- 19.6458496
+ 16.9755067,
+ 48.515271
],
[
- -71.8355034,
- 19.6458032
+ 16.8482844,
+ 48.4511817
],
[
- -71.8364747,
- 19.6461328
+ 16.8533733,
+ 48.3464411
],
[
- -71.8376382,
- 19.6472658
+ 16.9551512,
+ 48.2516513
],
[
- -71.8379143,
- 19.647888
+ 16.9907734,
+ 48.1498955
],
[
- -71.8390483,
- 19.6508039
+ 17.0925513,
+ 48.1397088
],
[
- -71.8456942,
- 19.6696203
- ]
- ],
- [
- [
- -72.098878,
- 18.54843
+ 17.0823736,
+ 48.0241182
],
[
- -72.096993,
- 18.5501994
+ 17.1739737,
+ 48.0207146
],
[
- -72.0972888,
- 18.5503209
+ 17.0823736,
+ 47.8741447
],
[
- -72.0968451,
- 18.5503489
+ 16.9856845,
+ 47.8673174
],
[
- -72.0955632,
- 18.551854
+ 17.0823736,
+ 47.8092489
],
[
- -72.0956428,
- 18.5526742
+ 17.0925513,
+ 47.7031919
],
[
- -72.0959914,
- 18.5533748
+ 16.7414176,
+ 47.6792136
],
[
- -72.0962145,
- 18.553203
+ 16.7057953,
+ 47.7511153
],
[
- -72.0962842,
- 18.5535665
+ 16.5378617,
+ 47.7545368
],
[
- -72.0964446,
- 18.5535533
+ 16.5480395,
+ 47.7066164
],
[
- -72.0965352,
- 18.5539764
+ 16.4208172,
+ 47.6689338
],
[
- -72.0965056,
- 18.554173
+ 16.573484,
+ 47.6175045
],
[
- -72.0966085,
- 18.5541747
+ 16.670173,
+ 47.631224
],
[
- -72.0965178,
- 18.5542127
+ 16.7108842,
+ 47.538548
],
[
- -72.0968769,
- 18.5546588
+ 16.6599952,
+ 47.4491493
],
[
- -72.0979018,
- 18.5552141
+ 16.5429506,
+ 47.3940591
],
[
- -72.1006211,
- 18.5555875
+ 16.4615283,
+ 47.3940591
],
[
- -72.1014926,
- 18.5556206
+ 16.4920617,
+ 47.276801
],
[
- -72.1024339,
- 18.5555016
+ 16.425906,
+ 47.1973317
],
[
- -72.103417,
- 18.5543515
+ 16.4717061,
+ 47.1489007
],
[
- -72.1034798,
- 18.5516215
+ 16.5480395,
+ 47.1489007
],
[
- -72.1030789,
- 18.5516149
+ 16.476795,
+ 47.0796369
],
[
- -72.1033752,
- 18.5515224
- ],
+ 16.527684,
+ 47.0588402
+ ]
+ ]
+ ],
+ "terms_text": "geoimage.at",
+ "id": "geoimage.at"
+ },
+ {
+ "name": "Imagerie Drone (Haiti)",
+ "type": "tms",
+ "template": "http://wms.openstreetmap.fr/tms/1.0.0/iomhaiti/{zoom}/{x}/{y}",
+ "polygon": [
+ [
[
- -72.1035042,
- 18.5515224
+ -72.1547401,
+ 19.6878969
],
[
- -72.1035239,
- 18.5502417
+ -72.162234,
+ 19.689011
],
[
- -72.1028701,
- 18.5503062
+ -72.164995,
+ 19.6932445
],
[
- -72.1029015,
- 18.55025
+ -72.1657838,
+ 19.6979977
],
[
- -72.1028457,
- 18.5501773
+ -72.161603,
+ 19.7035677
],
[
- -72.1035081,
- 18.5500252
+ -72.1487449,
+ 19.7028993
],
[
- -72.103491,
- 18.5497396
+ -72.1477194,
+ 19.7026765
],
[
- -72.1035181,
- 18.5497361
+ -72.1485082,
+ 19.7001514
],
[
- -72.1035398,
- 18.5489039
+ -72.1436963,
+ 19.7011169
],
[
- -72.1034317,
- 18.5487056
+ -72.1410143,
+ 19.7000029
],
[
- -72.102717,
- 18.5481437
+ -72.139476,
+ 19.6973664
],
[
- -72.1025601,
- 18.5481536
+ -72.1382533,
+ 19.6927617
],
[
- -72.10229,
- 18.5482751
+ -72.1386872,
+ 19.6923161
],
[
- -72.1022891,
- 18.5482569
+ -72.1380561,
+ 19.6896423
],
[
- -72.1025201,
- 18.5481396
+ -72.1385294,
+ 19.6894938
],
[
- -72.1023388,
- 18.5481321
+ -72.1388055,
+ 19.6901251
],
[
- -72.0999082,
- 18.5480901
+ -72.1388844,
+ 19.6876741
],
[
- -72.09907,
- 18.5483799
- ]
- ],
- [
- [
- -72.2542503,
- 18.568262
+ -72.1378195,
+ 19.6872656
],
[
- -72.2560252,
- 18.5717765
+ -72.13778,
+ 19.6850003
],
[
- -72.2557886,
- 18.5748049
+ -72.1369517,
+ 19.6855945
],
[
- -72.2535009,
- 18.5755526
+ -72.136794,
+ 19.6840719
],
[
- -72.2522782,
- 18.5755526
+ -72.135729,
+ 19.6835148
],
[
- -72.2499906,
- 18.5740945
+ -72.1355713,
+ 19.6740817
],
[
- -72.2473874,
- 18.5698323
+ -72.1366362,
+ 19.6708133
],
[
- -72.2460069,
- 18.566729
+ -72.1487843,
+ 19.6710733
],
[
- -72.2458492,
- 18.5629527
+ -72.1534779,
+ 19.6763843
],
[
- -72.2479396,
- 18.5625414
+ -72.1530835,
+ 19.6769414
],
[
- -72.2501483,
- 18.5628031
+ -72.1533251,
+ 19.6769768
],
[
- -72.2519232,
- 18.5650839
- ]
- ],
- [
- [
- -72.303145,
- 18.5332749
+ -72.1532807,
+ 19.6796525
],
[
- -72.3031275,
- 18.5331799
+ -72.1523834,
+ 19.6797175
],
[
- -72.3048311,
- 18.5311081
+ -72.1522749,
+ 19.6803488
],
[
- -72.3097397,
- 18.5311081
+ -72.1519101,
+ 19.6803395
],
[
- -72.3164332,
- 18.5324302
+ -72.1518608,
+ 19.6805067
],
[
- -72.3234056,
- 18.5366083
+ -72.1528173,
+ 19.6806552
],
[
- -72.3261388,
- 18.5387765
+ -72.1522299,
+ 19.6833011
],
[
- -72.3261946,
- 18.5426371
+ -72.1507801,
+ 19.6831499
],
[
- -72.3170468,
- 18.5540596
+ -72.1504457,
+ 19.6847862
],
[
- -72.3130864,
- 18.5540596
+ -72.1508591,
+ 19.6843492
],
[
- -72.2987511,
- 18.5453342
+ -72.1530087,
+ 19.6849898
],
[
- -72.2988627,
- 18.5407333
+ -72.1546258,
+ 19.6854354
],
[
- -72.2962969,
- 18.5404689
+ -72.1543103,
+ 19.6870694
],
[
- -72.2954602,
- 18.5395169
+ -72.1547244,
+ 19.6868466
],
[
- -72.2961853,
- 18.5338582
+ -72.1548501,
+ 19.6877564
],
[
- -72.2971893,
- 18.5332235
- ],
+ -72.1545814,
+ 19.6877982
+ ]
+ ],
+ [
[
- -72.3007034,
- 18.5332764
+ -72.1310601,
+ 19.6718929
],
[
- -72.3022652,
- 18.5342284
+ -72.1259842,
+ 19.6772765
],
[
- -72.3028486,
- 18.5335189
+ -72.1255379,
+ 19.6776179
],
[
- -72.303104,
- 18.5333361
+ -72.1216891,
+ 19.6776442
],
[
- -72.303181,
- 18.5334007
+ -72.1149677,
+ 19.672602
],
[
- -72.3035793,
- 18.5335614
+ -72.1152745,
+ 19.6687152
],
[
- -72.3030793,
- 18.5346463
+ -72.1198205,
+ 19.6627535
],
[
- -72.303715,
- 18.5339873
+ -72.1227768,
+ 19.6625696
],
[
- -72.3045286,
- 18.5344052
+ -72.1248965,
+ 19.662701
],
[
- -72.3044015,
- 18.5345097
+ -72.1285779,
+ 19.6645394
],
[
- -72.3062747,
- 18.5352571
+ -72.1308091,
+ 19.6661677
],
[
- -72.3063107,
- 18.5352741
+ -72.1316737,
+ 19.668794
],
[
- -72.3061219,
- 18.5357628
- ],
+ -72.1315621,
+ 19.671
+ ]
+ ],
+ [
[
- -72.3061219,
- 18.5358196
+ -71.845795,
+ 19.6709758
],
[
- -72.30637,
- 18.5358928
+ -71.8429354,
+ 19.6759525
],
[
- -72.3062726,
- 18.5354869
+ -71.8410027,
+ 19.6759525
],
[
- -72.3066688,
- 18.5350891
+ -71.8380249,
+ 19.6755254
],
[
- -72.3061963,
- 18.5349706
+ -71.8378671,
+ 19.6745041
],
[
- -72.3058869,
- 18.5349385
+ -71.8390504,
+ 19.6743927
],
[
- -72.3055373,
- 18.5346833
+ -71.8390109,
+ 19.6741141
],
[
- -72.3054864,
- 18.534613
+ -71.8398392,
+ 19.673947
],
[
- -72.3055585,
- 18.5345065
+ -71.8389123,
+ 19.6736127
],
[
- -72.3046749,
- 18.5342293
+ -71.8380249,
+ 19.67209
],
[
- -72.3047617,
- 18.5338817
+ -71.8380052,
+ 19.6726285
],
[
- -72.3043252,
- 18.5337511
+ -71.8376699,
+ 19.6727214
],
[
- -72.3042595,
- 18.5336346
- ]
- ],
- [
+ -71.8376305,
+ 19.672545
+ ],
[
- -72.2981405,
- 18.477502
+ -71.8354414,
+ 19.6732135
],
[
- -72.2935652,
- 18.4948587
+ -71.835333,
+ 19.6729999
],
[
- -72.2922242,
- 18.4964297
+ -71.8331242,
+ 19.6734642
],
[
- -72.2931708,
- 18.4972526
+ -71.8326706,
+ 19.6716815
],
[
- -72.2892266,
- 18.5057058
+ -71.8321579,
+ 19.67209
],
[
- -72.2878067,
- 18.5080996
+ -71.8307183,
+ 19.6694902
],
[
- -72.2850458,
- 18.5119893
+ -71.8306009,
+ 19.6697594
],
[
- -72.2840203,
- 18.5113161
+ -71.8302174,
+ 19.6698907
],
[
- -72.2808649,
- 18.515879
+ -71.8291833,
+ 19.6672095
],
[
- -72.2773151,
- 18.5175994
+ -71.8290749,
+ 19.6672095
],
[
- -72.2723454,
- 18.5175246
+ -71.8289122,
+ 19.6667916
],
[
- -72.2662714,
- 18.5144578
+ -71.8289516,
+ 19.6666199
],
[
- -72.2665869,
- 18.5066783
+ -71.8288333,
+ 19.6663506
],
[
- -72.2692643,
- 18.5046154
+ -71.8285572,
+ 19.6664759
],
[
- -72.2661965,
- 18.5029756
+ -71.8288678,
+ 19.6672466
],
[
- -72.2688181,
- 18.4965222
+ -71.8287593,
+ 19.6674138
],
[
- -72.2691528,
- 18.4959403
+ -71.8277979,
+ 19.6678177
],
[
- -72.2702684,
- 18.4961519
+ -71.8277112,
+ 19.6678586
],
[
- -72.2702684,
- 18.4955964
+ -71.8278263,
+ 19.6679637
],
[
- -72.2690691,
- 18.49557
+ -71.8271831,
+ 19.6681212
],
[
- -72.2692922,
- 18.4937714
+ -71.8271761,
+ 19.6680917
],
[
- -72.2736988,
- 18.4859951
+ -71.8264405,
+ 19.6683921
],
[
- -72.2746749,
- 18.4850429
+ -71.8264074,
+ 19.6683231
],
[
- -72.2751769,
- 18.483403
+ -71.8261954,
+ 19.6684253
],
[
- -72.2765435,
- 18.4813398
+ -71.8261806,
+ 19.6683556
],
[
- -72.2773523,
- 18.4814985
+ -71.8258946,
+ 19.6684206
],
[
- -72.2783006,
- 18.4809694
+ -71.8258897,
+ 19.6686574
],
[
- -72.2778544,
- 18.4807049
+ -71.8251551,
+ 19.6687549
],
[
- -72.2771013,
- 18.480123
+ -71.8254509,
+ 19.6691588
],
[
- -72.2789978,
- 18.4775836
+ -71.8229332,
+ 19.6695739
],
[
- -72.279723,
- 18.4772927
+ -71.822713,
+ 19.6696658
],
[
- -72.2806433,
- 18.4776365
+ -71.8227688,
+ 19.6697577
],
[
- -72.2813685,
- 18.4771604
+ -71.8201751,
+ 19.6709855
],
[
- -72.2808386,
- 18.4769752
+ -71.8198474,
+ 19.6704537
],
[
- -72.2812848,
- 18.4758378
+ -71.8197985,
+ 19.6706014
],
[
- -72.2823167,
- 18.4751765
+ -71.8194674,
+ 19.6707557
],
[
- -72.2851615,
- 18.4750971
+ -71.8182472,
+ 19.6713433
],
[
- -72.2849941,
- 18.4763668
+ -71.8181426,
+ 19.6711431
],
[
- -72.2854404,
- 18.4769752
+ -71.8175813,
+ 19.6714254
],
[
- -72.286277,
- 18.4756262
+ -71.816959,
+ 19.6707672
],
[
- -72.2869325,
- 18.4754675
+ -71.8176388,
+ 19.6718965
],
[
- -72.2865978,
- 18.4751897
+ -71.8171403,
+ 19.6720376
],
[
- -72.2865978,
- 18.4750046
+ -71.8158225,
+ 19.6718045
],
[
- -72.2909765,
- 18.4747268
+ -71.8138354,
+ 19.6711874
],
[
- -72.2946579,
- 18.4749384
+ -71.8123259,
+ 19.6706982
],
[
- -72.2973911,
- 18.476843
- ]
- ],
- [
- [
- -72.3466657,
- 18.5222375
+ -71.8121759,
+ 19.6704258
],
[
- -72.346833,
- 18.5244325
+ -71.8124304,
+ 19.6701467
],
[
- -72.3475303,
- 18.5277645
+ -71.8119184,
+ 19.6700141
],
[
- -72.3455501,
- 18.5291131
+ -71.8118765,
+ 19.6705828
],
[
- -72.3403069,
- 18.5292189
+ -71.811169,
+ 19.6703483
],
[
- -72.3383267,
- 18.5280289
+ -71.8095938,
+ 19.6698516
],
[
- -72.3369043,
- 18.530118
+ -71.8077992,
+ 19.6692829
],
[
- -72.3338086,
- 18.5296684
+ -71.8056028,
+ 19.668612
],
[
- -72.3289279,
- 18.5270769
+ -71.8051443,
+ 19.6668942
],
[
- -72.328649,
- 18.5253316
+ -71.8051196,
+ 19.6652322
],
[
- -72.3292068,
- 18.5232689
+ -71.8052315,
+ 19.661979
],
[
- -72.330406,
- 18.5220524
+ -71.8065603,
+ 19.6523921
],
[
- -72.3321631,
- 18.5221847
+ -71.8073412,
+ 19.6482946
],
[
- -72.3322467,
- 18.5191963
+ -71.8099686,
+ 19.6468292
],
[
- -72.3369183,
- 18.5183633
+ -71.8147517,
+ 19.6454502
],
[
- -72.3382012,
- 18.5184691
+ -71.8147726,
+ 19.6455619
],
[
- -72.3381454,
- 18.5181782
+ -71.8150027,
+ 19.6455093
],
[
- -72.3411993,
- 18.5177947
+ -71.8149469,
+ 19.6453846
],
[
- -72.3454943,
- 18.5171997
+ -71.8159928,
+ 19.6450234
],
[
- -72.3492595,
- 18.517279
+ -71.8158882,
+ 19.6448855
],
[
- -72.3504308,
- 18.5188922
+ -71.8165854,
+ 19.6446097
],
[
- -72.3503472,
- 18.5206112
+ -71.8190119,
+ 19.643802
],
[
- -72.3496778,
- 18.5220392
- ]
- ],
- [
- [
- -72.3303078,
- 18.5486462
+ -71.8211524,
+ 19.643454
],
[
- -72.3429687,
- 18.5508149
+ -71.8221564,
+ 19.6433292
],
[
- -72.3433236,
- 18.5530585
+ -71.8269046,
+ 19.643211
],
[
- -72.3413121,
- 18.5614341
+ -71.8280481,
+ 19.6432241
],
[
- -72.3390639,
- 18.5613593
+ -71.8304466,
+ 19.6440778
],
[
- -72.3384723,
- 18.5638271
+ -71.8306419,
+ 19.6448592
],
[
- -72.3375257,
- 18.5654348
+ -71.8295263,
+ 19.6450365
],
[
- -72.3348436,
- 18.5650609
+ -71.8296064,
+ 19.6456111
],
[
- -72.3311755,
- 18.5638271
+ -71.8299411,
+ 19.6455651
],
[
- -72.3312149,
- 18.5616211
+ -71.8303699,
+ 19.6451744
],
[
- -72.3232082,
- 18.5606863
+ -71.830471,
+ 19.6453452
],
[
- -72.3212361,
- 18.559602
+ -71.8308092,
+ 19.6451974
],
[
- -72.3208023,
- 18.5587046
+ -71.8310184,
+ 19.6451088
],
[
- -72.3208811,
- 18.557882
+ -71.8312519,
+ 19.6458541
],
[
- -72.3259493,
- 18.5580274
+ -71.8311125,
+ 19.6458245
],
[
- -72.3266186,
- 18.5581993
+ -71.831367,
+ 19.6465862
],
[
- -72.3259214,
- 18.5577498
+ -71.8328939,
+ 19.646189
],
[
- -72.3250986,
- 18.5573797
+ -71.8344566,
+ 19.6457062
],
[
- -72.3233767,
- 18.552263
+ -71.8344664,
+ 19.6463052
],
[
- -72.3245994,
- 18.5478507
+ -71.834215,
+ 19.6461938
],
[
- -72.3288986,
- 18.5483742
+ -71.8342002,
+ 19.6465513
],
[
- -72.329979,
- 18.5489548
- ]
- ],
- [
+ -71.8346702,
+ 19.6463
+ ],
[
- -72.3231383,
- 18.5269828
+ -71.8349118,
+ 19.6463905
],
[
- -72.3223434,
- 18.528067
+ -71.8347984,
+ 19.6462187
],
[
- -72.3209629,
- 18.5279745
+ -71.8354393,
+ 19.6458496
],
[
- -72.3207816,
- 18.5271282
+ -71.8355034,
+ 19.6458032
],
[
- -72.3208513,
- 18.5253697
+ -71.8364747,
+ 19.6461328
],
[
- -72.3214649,
- 18.5249598
+ -71.8376382,
+ 19.6472658
],
[
- -72.3225666,
- 18.5248937
+ -71.8379143,
+ 19.647888
],
[
- -72.3228454,
- 18.52533
+ -71.8390483,
+ 19.6508039
],
[
- -72.3232359,
- 18.5264804
+ -71.8456942,
+ 19.6696203
]
],
[
[
- -72.2160832,
- 18.6457752
+ -72.098878,
+ 18.54843
],
[
- -72.2159649,
- 18.6553795
+ -72.096993,
+ 18.5501994
],
[
- -72.2030279,
- 18.6558279
+ -72.0972888,
+ 18.5503209
],
[
- -72.1947057,
- 18.6553421
+ -72.0968451,
+ 18.5503489
],
[
- -72.1922208,
- 18.6545573
+ -72.0955632,
+ 18.551854
],
[
- -72.1920631,
- 18.6521283
+ -72.0956428,
+ 18.5526742
],
[
- -72.193483,
- 18.6477559
+ -72.0959914,
+ 18.5533748
],
[
- -72.201253,
- 18.6385249
+ -72.0962145,
+ 18.553203
],
[
- -72.2069327,
- 18.6388239
+ -72.0962842,
+ 18.5535665
],
[
- -72.2120996,
- 18.6424117
+ -72.0964446,
+ 18.5535533
],
[
- -72.2118068,
- 18.6430591
+ -72.0965352,
+ 18.5539764
],
[
- -72.2121693,
- 18.6426892
+ -72.0965056,
+ 18.554173
],
[
- -72.2127968,
- 18.6427552
+ -72.0966085,
+ 18.5541747
],
[
- -72.2134662,
- 18.6431252
+ -72.0965178,
+ 18.5542127
],
[
- -72.2135638,
- 18.6437462
+ -72.0968769,
+ 18.5546588
],
[
- -72.2154176,
- 18.6443947
+ -72.0979018,
+ 18.5552141
],
[
- -72.2158909,
- 18.6450301
- ]
- ],
- [
- [
- -72.2867654,
- 18.6482017
+ -72.1006211,
+ 18.5555875
],
[
- -72.2900977,
- 18.6527446
+ -72.1014926,
+ 18.5556206
],
[
- -72.28981,
- 18.6536532
+ -72.1024339,
+ 18.5555016
],
[
- -72.2900738,
- 18.6542664
+ -72.103417,
+ 18.5543515
],
[
- -72.290721,
- 18.6537667
+ -72.1034798,
+ 18.5516215
],
[
- -72.2910327,
- 18.6544709
+ -72.1030789,
+ 18.5516149
],
[
- -72.2912485,
- 18.654221
+ -72.1033752,
+ 18.5515224
],
[
- -72.29168,
- 18.6558905
+ -72.1035042,
+ 18.5515224
],
[
- -72.2912245,
- 18.656606
+ -72.1035239,
+ 18.5502417
],
[
- -72.2922673,
- 18.65597
+ -72.1028701,
+ 18.5503062
],
[
- -72.2926869,
- 18.6567536
+ -72.1029015,
+ 18.55025
],
[
- -72.2930705,
- 18.6567309
+ -72.1028457,
+ 18.5501773
],
[
- -72.2941253,
- 18.6581846
+ -72.1035081,
+ 18.5500252
],
[
- -72.2960192,
- 18.6608421
+ -72.103491,
+ 18.5497396
],
[
- -72.2959713,
- 18.6619096
+ -72.1035181,
+ 18.5497361
],
[
- -72.2932862,
- 18.664567
+ -72.1035398,
+ 18.5489039
],
[
- -72.2906731,
- 18.6659979
+ -72.1034317,
+ 18.5487056
],
[
- -72.2895943,
- 18.6661342
+ -72.102717,
+ 18.5481437
],
[
- -72.2895943,
- 18.6665657
+ -72.1025601,
+ 18.5481536
],
[
- -72.2877004,
- 18.6664749
+ -72.10229,
+ 18.5482751
],
[
- -72.2875805,
- 18.6676559
+ -72.1022891,
+ 18.5482569
],
[
- -72.2831214,
- 18.6697227
+ -72.1025201,
+ 18.5481396
],
[
- -72.2796453,
- 18.6696546
+ -72.1023388,
+ 18.5481321
],
[
- -72.2784311,
- 18.6690787
+ -72.0999082,
+ 18.5480901
],
[
- -72.2783972,
- 18.6687736
+ -72.09907,
+ 18.5483799
+ ]
+ ],
+ [
+ [
+ -72.2542503,
+ 18.568262
],
[
- -72.277736,
- 18.6691671
+ -72.2560252,
+ 18.5717765
],
[
- -72.2774394,
- 18.669143
+ -72.2557886,
+ 18.5748049
],
[
- -72.2770071,
- 18.6683159
+ -72.2535009,
+ 18.5755526
],
[
- -72.2765575,
- 18.6681125
+ -72.2522782,
+ 18.5755526
],
[
- -72.2765385,
- 18.6680583
+ -72.2499906,
+ 18.5740945
],
[
- -72.2752319,
- 18.6685239
+ -72.2473874,
+ 18.5698323
],
[
- -72.2749292,
- 18.6674649
+ -72.2460069,
+ 18.566729
],
[
- -72.2746416,
- 18.6674309
+ -72.2458492,
+ 18.5629527
],
[
- -72.2734668,
- 18.6682145
+ -72.2479396,
+ 18.5625414
],
[
- -72.2732271,
- 18.6682712
+ -72.2501483,
+ 18.5628031
],
[
- -72.2726757,
- 18.6671583
- ],
+ -72.2519232,
+ 18.5650839
+ ]
+ ],
+ [
[
- -72.2719147,
- 18.6674288
+ -72.303145,
+ 18.5332749
],
[
- -72.2718808,
- 18.6673405
+ -72.3031275,
+ 18.5331799
],
[
- -72.2688149,
- 18.6681868
+ -72.3048311,
+ 18.5311081
],
[
- -72.2688269,
- 18.6671761
+ -72.3097397,
+ 18.5311081
],
[
- -72.2690786,
- 18.6668241
+ -72.3164332,
+ 18.5324302
],
[
- -72.2688149,
- 18.66679
+ -72.3234056,
+ 18.5366083
],
[
- -72.2681077,
- 18.6670739
+ -72.3261388,
+ 18.5387765
],
[
- -72.2676282,
- 18.6673805
+ -72.3261946,
+ 18.5426371
],
[
- -72.2675563,
- 18.6666878
+ -72.3170468,
+ 18.5540596
],
[
- -72.266861,
- 18.666949
+ -72.3130864,
+ 18.5540596
],
[
- -72.2655904,
- 18.6673578
+ -72.2987511,
+ 18.5453342
],
[
- -72.2654466,
- 18.6670058
+ -72.2988627,
+ 18.5407333
],
[
- -72.2647514,
- 18.6674146
+ -72.2962969,
+ 18.5404689
],
[
- -72.2629893,
- 18.6681868
+ -72.2954602,
+ 18.5395169
],
[
- -72.2628455,
- 18.6681754
+ -72.2961853,
+ 18.5338582
],
[
- -72.2626537,
- 18.6676076
+ -72.2971893,
+ 18.5332235
],
[
- -72.2623001,
- 18.6677098
+ -72.3007034,
+ 18.5332764
],
[
- -72.2624799,
- 18.6679199
+ -72.3022652,
+ 18.5342284
],
[
- -72.2624799,
- 18.6682322
+ -72.3028486,
+ 18.5335189
],
[
- -72.262306,
- 18.6682606
+ -72.303104,
+ 18.5333361
],
[
- -72.2620963,
- 18.6679654
+ -72.303181,
+ 18.5334007
],
[
- -72.2622761,
- 18.6689193
+ -72.3035793,
+ 18.5335614
],
[
- -72.2601484,
- 18.6688966
+ -72.3030793,
+ 18.5346463
],
[
- -72.2542749,
- 18.6687944
+ -72.303715,
+ 18.5339873
],
[
- -72.2505388,
- 18.6683476
+ -72.3045286,
+ 18.5344052
],
[
- -72.2504371,
- 18.669536
+ -72.3044015,
+ 18.5345097
],
[
- -72.2477926,
- 18.6698893
+ -72.3062747,
+ 18.5352571
],
[
- -72.2415204,
- 18.669793
+ -72.3063107,
+ 18.5352741
],
[
- -72.2414187,
- 18.6741933
+ -72.3061219,
+ 18.5357628
],
[
- -72.2389167,
- 18.6739759
+ -72.3061219,
+ 18.5358196
],
[
- -72.2387249,
- 18.6734649
+ -72.30637,
+ 18.5358928
],
[
- -72.2383653,
- 18.6733059
+ -72.3062726,
+ 18.5354869
],
[
- -72.2387009,
- 18.6739532
+ -72.3066688,
+ 18.5350891
],
[
- -72.2375502,
- 18.6738964
+ -72.3061963,
+ 18.5349706
],
[
- -72.2374183,
- 18.6735103
+ -72.3058869,
+ 18.5349385
],
[
- -72.237742,
- 18.67334
+ -72.3055373,
+ 18.5346833
],
[
- -72.2375142,
- 18.6732605
+ -72.3054864,
+ 18.534613
],
[
- -72.236843,
- 18.6734876
+ -72.3055585,
+ 18.5345065
],
[
- -72.2364354,
- 18.6724088
+ -72.3046749,
+ 18.5342293
],
[
- -72.2355124,
- 18.6726019
+ -72.3047617,
+ 18.5338817
],
[
- -72.2354045,
- 18.6724202
+ -72.3043252,
+ 18.5337511
],
[
- -72.2353027,
- 18.6729028
- ],
+ -72.3042595,
+ 18.5336346
+ ]
+ ],
+ [
[
- -72.2345475,
- 18.6726871
+ -72.2981405,
+ 18.477502
],
[
- -72.2343077,
- 18.6724599
+ -72.2935652,
+ 18.4948587
],
[
- -72.2342358,
- 18.6734706
+ -72.2922242,
+ 18.4964297
],
[
- -72.2334087,
- 18.6734592
+ -72.2931708,
+ 18.4972526
],
[
- -72.2332889,
- 18.6733003
+ -72.2892266,
+ 18.5057058
],
[
- -72.2327375,
- 18.6732889
+ -72.2878067,
+ 18.5080996
],
[
- -72.2327135,
- 18.6735047
+ -72.2850458,
+ 18.5119893
],
[
- -72.227703,
- 18.6725281
+ -72.2840203,
+ 18.5113161
],
[
- -72.2265283,
- 18.6716537
+ -72.2808649,
+ 18.515879
],
[
- -72.226804,
- 18.6715742
+ -72.2773151,
+ 18.5175994
],
[
- -72.2274993,
- 18.6715855
+ -72.2723454,
+ 18.5175246
],
[
- -72.2274873,
- 18.6714493
+ -72.2662714,
+ 18.5144578
],
[
- -72.2272899,
- 18.6714623
+ -72.2665869,
+ 18.5066783
],
[
- -72.2272814,
- 18.6712977
+ -72.2692643,
+ 18.5046154
],
[
- -72.2272094,
- 18.671358
+ -72.2661965,
+ 18.5029756
],
[
- -72.2261785,
- 18.6713693
+ -72.2688181,
+ 18.4965222
],
[
- -72.2256032,
- 18.670881
+ -72.2691528,
+ 18.4959403
],
[
- -72.2255073,
- 18.6694502
+ -72.2702684,
+ 18.4961519
],
[
- -72.2261066,
- 18.6696886
+ -72.2702684,
+ 18.4955964
],
[
- -72.2261785,
- 18.6695949
+ -72.2690691,
+ 18.49557
],
[
- -72.2259837,
- 18.6695495
+ -72.2692922,
+ 18.4937714
],
[
- -72.225777,
- 18.6691379
+ -72.2736988,
+ 18.4859951
],
[
- -72.2253335,
- 18.6694643
+ -72.2746749,
+ 18.4850429
],
[
- -72.2249739,
- 18.66947
+ -72.2751769,
+ 18.483403
],
[
- -72.2245783,
- 18.6678802
+ -72.2765435,
+ 18.4813398
],
[
- -72.2235525,
- 18.6677046
+ -72.2773523,
+ 18.4814985
],
[
- -72.2235907,
- 18.6675921
+ -72.2783006,
+ 18.4809694
],
[
- -72.2224634,
- 18.6676283
+ -72.2778544,
+ 18.4807049
],
[
- -72.2223659,
- 18.667022
+ -72.2771013,
+ 18.480123
],
[
- -72.2223277,
- 18.6670943
+ -72.2789978,
+ 18.4775836
],
[
- -72.2219209,
- 18.667026
+ -72.279723,
+ 18.4772927
],
[
- -72.2208105,
- 18.6669015
+ -72.2806433,
+ 18.4776365
],
[
- -72.220809,
- 18.6665325
+ -72.2813685,
+ 18.4771604
],
[
- -72.2208705,
- 18.6663593
+ -72.2808386,
+ 18.4769752
],
[
- -72.2206023,
- 18.6668107
+ -72.2812848,
+ 18.4758378
],
[
- -72.2203895,
- 18.6666361
+ -72.2823167,
+ 18.4751765
],
[
- -72.2184341,
- 18.6650535
+ -72.2851615,
+ 18.4750971
],
[
- -72.21829,
- 18.6640979
+ -72.2849941,
+ 18.4763668
],
[
- -72.2183493,
- 18.6608376
+ -72.2854404,
+ 18.4769752
],
[
- -72.2187223,
- 18.6606541
+ -72.286277,
+ 18.4756262
],
[
- -72.2186894,
- 18.660603
+ -72.2869325,
+ 18.4754675
],
[
- -72.2187253,
- 18.6604525
+ -72.2865978,
+ 18.4751897
],
[
- -72.2189771,
- 18.6603247
+ -72.2865978,
+ 18.4750046
],
[
- -72.2187823,
- 18.6601998
+ -72.2909765,
+ 18.4747268
],
[
- -72.2186984,
- 18.6602367
+ -72.2946579,
+ 18.4749384
],
[
- -72.2185815,
- 18.6600352
- ],
+ -72.2973911,
+ 18.476843
+ ]
+ ],
+ [
[
- -72.2186085,
- 18.6600039
+ -72.3466657,
+ 18.5222375
],
[
- -72.2187823,
- 18.6601345
+ -72.346833,
+ 18.5244325
],
[
- -72.218995,
- 18.6600181
+ -72.3475303,
+ 18.5277645
],
[
- -72.2189111,
- 18.6599131
+ -72.3455501,
+ 18.5291131
],
[
- -72.2189681,
- 18.6597938
+ -72.3403069,
+ 18.5292189
],
[
- -72.2183807,
- 18.6595837
+ -72.3383267,
+ 18.5280289
],
[
- -72.2184728,
- 18.6539662
+ -72.3369043,
+ 18.530118
],
[
- -72.2201001,
- 18.6511554
+ -72.3338086,
+ 18.5296684
],
[
- -72.225796,
- 18.6469472
+ -72.3289279,
+ 18.5270769
],
[
- -72.2283048,
- 18.6457265
+ -72.328649,
+ 18.5253316
],
[
- -72.2379335,
- 18.645855
+ -72.3292068,
+ 18.5232689
],
[
- -72.237764,
- 18.6446985
+ -72.330406,
+ 18.5220524
],
[
- -72.2400355,
- 18.6432529
+ -72.3321631,
+ 18.5221847
],
[
- -72.2455958,
- 18.6433493
+ -72.3322467,
+ 18.5191963
],
[
- -72.2482742,
- 18.6450358
+ -72.3369183,
+ 18.5183633
],
[
- -72.2487488,
- 18.6436705
+ -72.3382012,
+ 18.5184691
],
[
- -72.2511067,
- 18.6429775
+ -72.3381454,
+ 18.5181782
],
[
- -72.2512385,
- 18.6433409
+ -72.3411993,
+ 18.5177947
],
[
- -72.2512625,
- 18.6431592
+ -72.3454943,
+ 18.5171997
],
[
- -72.2514843,
- 18.6431365
+ -72.3492595,
+ 18.517279
],
[
- -72.2513284,
- 18.6429718
+ -72.3504308,
+ 18.5188922
],
[
- -72.2533602,
- 18.6423471
+ -72.3503472,
+ 18.5206112
],
[
- -72.253516,
- 18.6426765
- ],
+ -72.3496778,
+ 18.5220392
+ ]
+ ],
+ [
[
- -72.2539535,
- 18.6425402
+ -72.3303078,
+ 18.5486462
],
[
- -72.2541453,
- 18.642932
+ -72.3429687,
+ 18.5508149
],
[
- -72.2543851,
- 18.6428696
+ -72.3433236,
+ 18.5530585
],
[
- -72.2543791,
- 18.6427503
+ -72.3413121,
+ 18.5614341
],
[
- -72.2564168,
- 18.6423244
+ -72.3390639,
+ 18.5613593
],
[
- -72.2566925,
- 18.6431365
+ -72.3384723,
+ 18.5638271
],
[
- -72.2568783,
- 18.6428582
+ -72.3375257,
+ 18.5654348
],
[
- -72.2568184,
- 18.6425288
+ -72.3348436,
+ 18.5650609
],
[
- -72.258843,
- 18.6420991
+ -72.3311755,
+ 18.5638271
],
[
- -72.258885,
- 18.6422467
+ -72.3312149,
+ 18.5616211
],
[
- -72.2592626,
- 18.6422297
+ -72.3232082,
+ 18.5606863
],
[
- -72.2596461,
- 18.6424057
+ -72.3212361,
+ 18.559602
],
[
- -72.2592206,
- 18.6406907
+ -72.3208023,
+ 18.5587046
],
[
- -72.2599545,
- 18.6404815
+ -72.3208811,
+ 18.557882
],
[
- -72.2601156,
- 18.6406341
+ -72.3259493,
+ 18.5580274
],
[
- -72.2601156,
- 18.6399393
+ -72.3266186,
+ 18.5581993
],
[
- -72.2615268,
- 18.6394669
+ -72.3259214,
+ 18.5577498
],
[
- -72.2626056,
- 18.6391034
+ -72.3250986,
+ 18.5573797
],
[
- -72.2654465,
- 18.6387286
+ -72.3233767,
+ 18.552263
],
[
- -72.2719433,
- 18.6386832
+ -72.3245994,
+ 18.5478507
],
[
- -72.272201,
- 18.6388649
+ -72.3288986,
+ 18.5483742
],
[
- -72.2730341,
- 18.6394158
- ],
+ -72.329979,
+ 18.5489548
+ ]
+ ],
+ [
[
- -72.273166,
- 18.6412558
+ -72.3231383,
+ 18.5269828
],
[
- -72.2738732,
- 18.6410286
+ -72.3223434,
+ 18.528067
],
[
- -72.2742208,
- 18.6416079
+ -72.3209629,
+ 18.5279745
],
[
- -72.2752187,
- 18.6416987
+ -72.3207816,
+ 18.5271282
],
[
- -72.2754524,
- 18.6415738
+ -72.3208513,
+ 18.5253697
],
[
- -72.2755513,
- 18.6416874
+ -72.3214649,
+ 18.5249598
],
[
- -72.2755394,
- 18.6417527
+ -72.3225666,
+ 18.5248937
],
[
- -72.2764713,
- 18.6418634
+ -72.3228454,
+ 18.52533
],
[
- -72.276753,
- 18.6418975
+ -72.3232359,
+ 18.5264804
+ ]
+ ],
+ [
+ [
+ -72.2160832,
+ 18.6457752
],
[
- -72.2762953,
- 18.6426002
+ -72.2159649,
+ 18.6553795
],
[
- -72.2774226,
- 18.6429978
+ -72.2030279,
+ 18.6558279
],
[
- -72.277982,
- 18.6427247
+ -72.1947057,
+ 18.6553421
],
[
- -72.2785796,
- 18.6431303
+ -72.1922208,
+ 18.6545573
],
[
- -72.2785669,
- 18.6432307
+ -72.1920631,
+ 18.6521283
],
[
- -72.2789017,
- 18.6433471
+ -72.193483,
+ 18.6477559
],
[
- -72.279851,
- 18.6439655
+ -72.201253,
+ 18.6385249
],
[
- -72.2858703,
- 18.6469651
- ]
- ],
- [
+ -72.2069327,
+ 18.6388239
+ ],
[
- -72.5557247,
- 18.5305893
+ -72.2120996,
+ 18.6424117
],
[
- -72.5555866,
- 18.5367036
+ -72.2118068,
+ 18.6430591
],
[
- -72.554995,
- 18.537975
+ -72.2121693,
+ 18.6426892
],
[
- -72.5488026,
- 18.537919
+ -72.2127968,
+ 18.6427552
],
[
- -72.5486646,
- 18.5372832
+ -72.2134662,
+ 18.6431252
],
[
- -72.548842,
- 18.5306267
+ -72.2135638,
+ 18.6437462
],
[
- -72.5493745,
- 18.5301031
+ -72.2154176,
+ 18.6443947
],
[
- -72.555133,
- 18.5301218
+ -72.2158909,
+ 18.6450301
]
],
[
[
- -72.6235278,
- 18.5079877
+ -72.2867654,
+ 18.6482017
],
[
- -72.6234441,
- 18.5095217
+ -72.2900977,
+ 18.6527446
],
[
- -72.6226074,
- 18.5104341
+ -72.28981,
+ 18.6536532
],
[
- -72.6204878,
- 18.511849
+ -72.2900738,
+ 18.6542664
],
[
- -72.6183403,
- 18.5107514
+ -72.290721,
+ 18.6537667
],
[
- -72.6162207,
- 18.5083183
+ -72.2910327,
+ 18.6544709
],
[
- -72.6162625,
- 18.506467
+ -72.2912485,
+ 18.654221
],
[
- -72.618661,
- 18.5044438
+ -72.29168,
+ 18.6558905
],
[
- -72.6204041,
- 18.5044967
+ -72.2912245,
+ 18.656606
],
[
- -72.6228305,
- 18.506996
- ]
- ]
- ]
- },
- {
- "name": "Ireland Bartholomew Quarter-Inch 1940",
- "type": "tms",
- "template": "http://geo.nls.uk/maps/ireland/bartholomew/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 5,
- 13
- ],
- "polygon": [
- [
- [
- -8.8312773,
- 55.3963337
+ -72.2922673,
+ 18.65597
],
[
- -7.3221271,
- 55.398605
+ -72.2926869,
+ 18.6567536
],
[
- -7.2891331,
- 55.4333162
+ -72.2930705,
+ 18.6567309
],
[
- -7.2368042,
- 55.4530757
+ -72.2941253,
+ 18.6581846
],
[
- -7.18881,
- 55.4497995
+ -72.2960192,
+ 18.6608421
],
[
- -7.1528144,
- 55.3968384
+ -72.2959713,
+ 18.6619096
],
[
- -6.90561,
- 55.394903
+ -72.2932862,
+ 18.664567
],
[
- -6.9047153,
- 55.3842114
+ -72.2906731,
+ 18.6659979
],
[
- -5.8485282,
- 55.3922956
+ -72.2895943,
+ 18.6661342
],
[
- -5.8378629,
- 55.248676
+ -72.2895943,
+ 18.6665657
],
[
- -5.3614762,
- 55.2507024
+ -72.2877004,
+ 18.6664749
],
[
- -5.3899172,
- 53.8466464
+ -72.2875805,
+ 18.6676559
],
[
- -5.8734141,
- 53.8487436
+ -72.2831214,
+ 18.6697227
],
[
- -5.8983,
- 52.8256258
+ -72.2796453,
+ 18.6696546
],
[
- -6.0191742,
- 52.8256258
+ -72.2784311,
+ 18.6690787
],
[
- -6.0262844,
- 51.7712367
+ -72.2783972,
+ 18.6687736
],
[
- -8.1131422,
- 51.7712367
+ -72.277736,
+ 18.6691671
],
[
- -8.1273627,
- 51.3268839
+ -72.2774394,
+ 18.669143
],
[
- -10.6052842,
- 51.3091083
+ -72.2770071,
+ 18.6683159
],
[
- -10.6271879,
- 52.0328254
+ -72.2765575,
+ 18.6681125
],
[
- -10.6469845,
- 52.0322454
+ -72.2765385,
+ 18.6680583
],
[
- -10.6469845,
- 52.0440365
+ -72.2752319,
+ 18.6685239
],
[
- -10.6271879,
- 52.0448095
+ -72.2749292,
+ 18.6674649
],
[
- -10.6290733,
- 52.0745627
+ -72.2746416,
+ 18.6674309
],
[
- -10.6699234,
- 52.0743695
+ -72.2734668,
+ 18.6682145
],
[
- -10.6702376,
- 52.0876941
+ -72.2732271,
+ 18.6682712
],
[
- -10.6312729,
- 52.0898179
+ -72.2726757,
+ 18.6671583
],
[
- -10.6393128,
- 52.4147202
+ -72.2719147,
+ 18.6674288
],
[
- -10.3137689,
- 52.4185533
+ -72.2718808,
+ 18.6673405
],
[
- -10.3166401,
- 53.3341342
+ -72.2688149,
+ 18.6681868
],
[
- -10.3699669,
- 53.3330727
+ -72.2688269,
+ 18.6671761
],
[
- -10.385965,
- 54.3534472
+ -72.2690786,
+ 18.6668241
],
[
- -8.8163777,
- 54.3586265
+ -72.2688149,
+ 18.66679
],
[
- -8.8173427,
- 54.6595721
+ -72.2681077,
+ 18.6670739
],
[
- -8.8413398,
- 54.6616284
+ -72.2676282,
+ 18.6673805
],
[
- -8.8422286,
- 54.6929749
+ -72.2675563,
+ 18.6666878
],
[
- -8.8315632,
- 54.7145436
+ -72.266861,
+ 18.666949
],
[
- -8.8151208,
- 54.7145436
- ]
- ]
- ],
- "terms_url": "http://geo.nls.uk/maps/",
- "terms_text": "National Library of Scotland Historic Maps"
- },
- {
- "name": "Ireland British War Office One-Inch 1941-43 GSGS 4136",
- "type": "tms",
- "template": "http://geo.nls.uk/maps/ireland/gsgs4136/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 5,
- 15
- ],
- "polygon": [
- [
+ -72.2655904,
+ 18.6673578
+ ],
[
- -10.0847426,
- 51.4147902
+ -72.2654466,
+ 18.6670058
],
[
- -10.0906535,
- 51.5064103
+ -72.2647514,
+ 18.6674146
],
[
- -10.4564222,
- 51.5003961
+ -72.2629893,
+ 18.6681868
],
[
- -10.5005905,
- 52.3043019
+ -72.2628455,
+ 18.6681754
],
[
- -10.0837522,
- 52.312741
+ -72.2626537,
+ 18.6676076
],
[
- -10.0840973,
- 52.3404698
+ -72.2623001,
+ 18.6677098
],
[
- -10.055802,
- 52.3408915
+ -72.2624799,
+ 18.6679199
],
[
- -10.0768509,
- 52.7628238
+ -72.2624799,
+ 18.6682322
],
[
- -9.7780248,
- 52.7684611
+ -72.262306,
+ 18.6682606
],
[
- -9.7818205,
- 52.8577261
+ -72.2620963,
+ 18.6679654
],
[
- -9.6337877,
- 52.8596012
+ -72.2622761,
+ 18.6689193
],
[
- -9.6449626,
- 53.1294502
+ -72.2601484,
+ 18.6688966
],
[
- -10.0919663,
- 53.1227152
+ -72.2542749,
+ 18.6687944
],
[
- -10.1051422,
- 53.3912913
+ -72.2505388,
+ 18.6683476
],
[
- -10.4052593,
- 53.3866349
+ -72.2504371,
+ 18.669536
],
[
- -10.4530828,
- 54.193502
+ -72.2477926,
+ 18.6698893
],
[
- -10.2998523,
- 54.1974988
+ -72.2415204,
+ 18.669793
],
[
- -10.3149801,
- 54.4669592
+ -72.2414187,
+ 18.6741933
],
[
- -8.9276095,
- 54.4853897
+ -72.2389167,
+ 18.6739759
],
[
- -8.9339534,
- 54.7546562
+ -72.2387249,
+ 18.6734649
],
[
- -8.7773069,
- 54.755501
+ -72.2383653,
+ 18.6733059
],
[
- -8.7826749,
- 55.0252208
+ -72.2387009,
+ 18.6739532
],
[
- -8.9402974,
- 55.0238221
+ -72.2375502,
+ 18.6738964
],
[
- -8.9451773,
- 55.2934155
+ -72.2374183,
+ 18.6735103
],
[
- -7.528039,
- 55.2970274
+ -72.237742,
+ 18.67334
],
[
- -7.525599,
- 55.3874955
+ -72.2375142,
+ 18.6732605
],
[
- -7.0541955,
- 55.3841691
+ -72.236843,
+ 18.6734876
],
[
- -7.0556595,
- 55.2939712
+ -72.2364354,
+ 18.6724088
],
[
- -6.3241545,
- 55.2859128
+ -72.2355124,
+ 18.6726019
],
[
- -6.3217146,
- 55.3253556
+ -72.2354045,
+ 18.6724202
],
[
- -6.1035807,
- 55.3223016
+ -72.2353027,
+ 18.6729028
],
[
- -6.1045566,
- 55.2828557
+ -72.2345475,
+ 18.6726871
],
[
- -5.7985836,
- 55.2772968
+ -72.2343077,
+ 18.6724599
],
[
- -5.8117595,
- 55.0087135
+ -72.2342358,
+ 18.6734706
],
[
- -5.656577,
- 55.0056351
+ -72.2334087,
+ 18.6734592
],
[
- -5.6721928,
- 54.7355021
+ -72.2332889,
+ 18.6733003
],
[
- -5.3618278,
- 54.729585
+ -72.2327375,
+ 18.6732889
],
[
- -5.3964755,
- 54.1917889
+ -72.2327135,
+ 18.6735047
],
[
- -5.855679,
- 54.2017807
+ -72.227703,
+ 18.6725281
],
[
- -5.9220464,
- 52.8524504
+ -72.2265283,
+ 18.6716537
],
[
- -6.070885,
- 52.8551025
+ -72.226804,
+ 18.6715742
],
[
- -6.1030927,
- 52.1373337
+ -72.2274993,
+ 18.6715855
],
[
- -6.8331336,
- 52.1463183
+ -72.2274873,
+ 18.6714493
],
[
- -6.8355736,
- 52.0578908
+ -72.2272899,
+ 18.6714623
],
[
- -7.5641506,
- 52.0617913
+ -72.2272814,
+ 18.6712977
],
[
- -7.5661026,
- 51.7921593
+ -72.2272094,
+ 18.671358
],
[
- -8.147305,
- 51.792763
+ -72.2261785,
+ 18.6713693
],
[
- -8.146329,
- 51.7033331
+ -72.2256032,
+ 18.670881
],
[
- -8.2912636,
- 51.7027283
+ -72.2255073,
+ 18.6694502
],
[
- -8.2897996,
- 51.5227274
+ -72.2261066,
+ 18.6696886
],
[
- -9.1174397,
- 51.516958
+ -72.2261785,
+ 18.6695949
],
[
- -9.1179277,
- 51.4625685
+ -72.2259837,
+ 18.6695495
],
[
- -9.3692452,
- 51.4616564
+ -72.225777,
+ 18.6691379
],
[
- -9.3672933,
- 51.4254613
- ]
- ]
- ],
- "terms_url": "http://geo.nls.uk/maps/",
- "terms_text": "National Library of Scotland Historic Maps"
- },
- {
- "name": "Ireland EEA CORINE 2006",
- "type": "tms",
- "template": "http://a.tile.openstreetmap.ie/tiles/corine/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 5,
- 16
- ],
- "polygon": [
- [
+ -72.2253335,
+ 18.6694643
+ ],
[
- -5.842956,
- 53.8627976
+ -72.2249739,
+ 18.66947
],
[
- -5.8341575,
- 53.7633541
+ -72.2245783,
+ 18.6678802
],
[
- -5.6267647,
- 53.5383692
+ -72.2235525,
+ 18.6677046
],
[
- -5.9648778,
- 52.1631197
+ -72.2235907,
+ 18.6675921
],
[
- -6.0453211,
- 52.0527275
+ -72.2224634,
+ 18.6676283
],
[
- -6.1823261,
- 51.9699475
+ -72.2223659,
+ 18.667022
],
[
- -6.3960035,
- 51.9234618
+ -72.2223277,
+ 18.6670943
],
[
- -6.5945978,
- 51.883911
+ -72.2219209,
+ 18.667026
],
[
- -7.2481994,
- 51.9056295
+ -72.2208105,
+ 18.6669015
],
[
- -7.341212,
- 51.8148076
+ -72.220809,
+ 18.6665325
],
[
- -8.1971787,
- 51.5037019
+ -72.2208705,
+ 18.6663593
],
[
- -8.3191005,
- 51.4167737
+ -72.2206023,
+ 18.6668107
],
[
- -9.4478202,
- 51.1991221
+ -72.2203895,
+ 18.6666361
],
[
- -9.9015706,
- 51.2266802
+ -72.2184341,
+ 18.6650535
],
[
- -10.472215,
- 51.4050139
+ -72.21829,
+ 18.6640979
],
[
- -10.8857437,
- 51.6770619
+ -72.2183493,
+ 18.6608376
],
[
- -11.035318,
- 52.0620016
+ -72.2187223,
+ 18.6606541
],
[
- -10.9950963,
- 52.1831616
+ -72.2186894,
+ 18.660603
],
[
- -10.8178697,
- 52.3139827
+ -72.2187253,
+ 18.6604525
],
[
- -9.8839736,
- 52.9032208
+ -72.2189771,
+ 18.6603247
],
[
- -10.1165049,
- 52.9676141
+ -72.2187823,
+ 18.6601998
],
[
- -10.5514014,
- 53.3317027
+ -72.2186984,
+ 18.6602367
],
[
- -10.6896633,
- 53.5854022
+ -72.2185815,
+ 18.6600352
],
[
- -10.6444139,
- 54.0100436
+ -72.2186085,
+ 18.6600039
],
[
- -10.5501445,
- 54.257482
+ -72.2187823,
+ 18.6601345
],
[
- -10.2824192,
- 54.4742405
+ -72.218995,
+ 18.6600181
],
[
- -9.8073011,
- 54.5705346
+ -72.2189111,
+ 18.6599131
],
[
- -9.196435,
- 54.5486695
+ -72.2189681,
+ 18.6597938
],
[
- -9.2253443,
- 54.7000264
+ -72.2183807,
+ 18.6595837
],
[
- -8.8985435,
- 55.1363582
+ -72.2184728,
+ 18.6539662
],
[
- -8.0476045,
- 55.4711977
+ -72.2201001,
+ 18.6511554
],
[
- -7.4367384,
- 55.6191092
+ -72.225796,
+ 18.6469472
],
[
- -7.2205471,
- 55.6205288
+ -72.2283048,
+ 18.6457265
],
[
- -6.8258723,
- 55.5608644
+ -72.2379335,
+ 18.645855
],
[
- -6.0679458,
- 55.3727567
+ -72.237764,
+ 18.6446985
],
[
- -5.5639184,
- 55.0759594
+ -72.2400355,
+ 18.6432529
],
[
- -5.0649187,
- 54.4640142
+ -72.2455958,
+ 18.6433493
],
[
- -5.2572284,
- 54.1582424
- ]
- ]
- ],
- "terms_url": "http://www.eea.europa.eu/data-and-maps/data/clc-2006-vector-data-version-1",
- "terms_text": "EEA Corine 2006"
- },
- {
- "name": "Ireland EEA GMES Urban Atlas",
- "type": "tms",
- "template": "http://a.tile.openstreetmap.ie/tiles/urbanatlas/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 5,
- 17
- ],
- "polygon": [
- [
+ -72.2482742,
+ 18.6450358
+ ],
[
- -9.2759602,
- 52.7993666
+ -72.2487488,
+ 18.6436705
],
[
- -9.215509,
- 52.8276933
+ -72.2511067,
+ 18.6429775
],
[
- -9.1086618,
- 52.9128016
+ -72.2512385,
+ 18.6433409
],
[
- -9.0196831,
- 52.8837107
+ -72.2512625,
+ 18.6431592
],
[
- -8.8760649,
- 52.8978445
+ -72.2514843,
+ 18.6431365
],
[
- -8.8001797,
- 52.8833558
+ -72.2513284,
+ 18.6429718
],
[
- -8.7665597,
- 52.9065354
+ -72.2533602,
+ 18.6423471
],
[
- -8.5938079,
- 52.9238592
+ -72.253516,
+ 18.6426765
],
[
- -8.5241972,
- 52.8869724
+ -72.2539535,
+ 18.6425402
],
[
- -8.4956786,
- 52.9105906
+ -72.2541453,
+ 18.642932
],
[
- -8.3506448,
- 52.9238592
+ -72.2543851,
+ 18.6428696
],
[
- -8.2718204,
- 52.9492401
+ -72.2543791,
+ 18.6427503
],
[
- -8.2249679,
- 52.8991338
+ -72.2564168,
+ 18.6423244
],
[
- -8.1564001,
- 52.9149986
+ -72.2566925,
+ 18.6431365
],
[
- -8.0881237,
- 52.7630417
+ -72.2568783,
+ 18.6428582
],
[
- -8.1360092,
- 52.7239783
+ -72.2568184,
+ 18.6425288
],
[
- -8.1570652,
- 52.6766443
+ -72.258843,
+ 18.6420991
],
[
- -8.2059695,
- 52.6185385
+ -72.258885,
+ 18.6422467
],
[
- -8.2025734,
- 52.5954396
+ -72.2592626,
+ 18.6422297
],
[
- -8.2231242,
- 52.5599691
+ -72.2596461,
+ 18.6424057
],
[
- -8.2236294,
- 52.5095371
+ -72.2592206,
+ 18.6406907
],
[
- -8.2976651,
- 52.5025088
+ -72.2599545,
+ 18.6404815
],
[
- -8.3295888,
- 52.4721087
+ -72.2601156,
+ 18.6406341
],
[
- -8.3589695,
- 52.4986072
+ -72.2601156,
+ 18.6399393
],
[
- -8.3737385,
- 52.4764529
+ -72.2615268,
+ 18.6394669
],
[
- -8.432326,
- 52.4342609
+ -72.2626056,
+ 18.6391034
],
[
- -8.4754569,
- 52.4216289
+ -72.2654465,
+ 18.6387286
],
[
- -8.5017727,
- 52.3870011
+ -72.2719433,
+ 18.6386832
],
[
- -8.5476205,
- 52.3681351
+ -72.272201,
+ 18.6388649
],
[
- -8.6444103,
- 52.3376422
+ -72.2730341,
+ 18.6394158
],
[
- -8.6841451,
- 52.3660614
+ -72.273166,
+ 18.6412558
],
[
- -8.8154099,
- 52.3721014
+ -72.2738732,
+ 18.6410286
],
[
- -8.8614233,
- 52.3521652
+ -72.2742208,
+ 18.6416079
],
[
- -8.9074451,
- 52.3824674
+ -72.2752187,
+ 18.6416987
],
[
- -8.9388551,
- 52.3789166
+ -72.2754524,
+ 18.6415738
],
[
- -8.9782502,
- 52.4093811
+ -72.2755513,
+ 18.6416874
],
[
- -9.0298715,
- 52.4104169
+ -72.2755394,
+ 18.6417527
],
[
- -9.1059449,
- 52.420981
+ -72.2764713,
+ 18.6418634
],
[
- -9.1084962,
- 52.4415071
+ -72.276753,
+ 18.6418975
],
[
- -9.140702,
- 52.4650891
+ -72.2762953,
+ 18.6426002
],
[
- -9.1315765,
- 52.5136207
+ -72.2774226,
+ 18.6429978
],
[
- -9.1739699,
- 52.5620573
+ -72.277982,
+ 18.6427247
],
[
- -9.1426235,
- 52.589645
+ -72.2785796,
+ 18.6431303
],
[
- -9.1542382,
- 52.610216
+ -72.2785669,
+ 18.6432307
],
[
- -9.1426231,
- 52.6387401
+ -72.2789017,
+ 18.6433471
],
[
- -9.1776844,
- 52.6447573
+ -72.279851,
+ 18.6439655
],
[
- -9.2012184,
- 52.6526248
+ -72.2858703,
+ 18.6469651
+ ]
+ ],
+ [
+ [
+ -72.5557247,
+ 18.5305893
],
[
- -9.2036198,
- 52.6686468
+ -72.5555866,
+ 18.5367036
],
[
- -9.2238348,
- 52.6706578
+ -72.554995,
+ 18.537975
],
[
- -9.2161072,
- 52.6919412
+ -72.5488026,
+ 18.537919
],
[
- -9.1882395,
- 52.7057242
+ -72.5486646,
+ 18.5372832
],
[
- -9.2750099,
- 52.7350292
+ -72.548842,
+ 18.5306267
],
[
- -9.2601152,
- 52.7616711
+ -72.5493745,
+ 18.5301031
+ ],
+ [
+ -72.555133,
+ 18.5301218
]
],
[
[
- -7.307313219981238,
- 53.81625879275365
+ -72.6235278,
+ 18.5079877
],
[
- -7.245858447032101,
- 53.78300449111207
+ -72.6234441,
+ 18.5095217
],
[
- -7.15144468970801,
- 53.81179938127503
+ -72.6226074,
+ 18.5104341
],
[
- -7.086900011973722,
- 53.784424420834
+ -72.6204878,
+ 18.511849
],
[
- -7.0347149533800435,
- 53.77996162275688
+ -72.6183403,
+ 18.5107514
],
[
- -6.975320116954343,
- 53.788481098127924
+ -72.6162207,
+ 18.5083183
],
[
- -6.928628222423156,
- 53.81443454540607
+ -72.6162625,
+ 18.506467
],
[
- -6.992829577403537,
- 53.86609081229548
+ -72.618661,
+ 18.5044438
],
[
- -6.975320116954343,
- 53.87945028968944
+ -72.6204041,
+ 18.5044967
],
[
- -6.949914233165313,
- 53.87094929783329
- ],
+ -72.6228305,
+ 18.506996
+ ]
+ ]
+ ]
+ },
+ {
+ "name": "Ireland Bartholomew Quarter-Inch 1940",
+ "type": "tms",
+ "template": "http://geo.nls.uk/maps/ireland/bartholomew/{zoom}/{x}/{-y}.png",
+ "scaleExtent": [
+ 5,
+ 13
+ ],
+ "polygon": [
+ [
[
- -6.9375546140247035,
- 53.87540241385127
+ -8.8312773,
+ 55.3963337
],
[
- -6.936867968516893,
- 53.896649390754646
+ -7.3221271,
+ 55.398605
],
[
- -6.897042529063821,
- 53.889770599553906
+ -7.2891331,
+ 55.4333162
],
[
- -6.867516772227924,
- 53.880259817835736
+ -7.2368042,
+ 55.4530757
],
[
- -6.851037280040446,
- 53.88450958346468
+ -7.18881,
+ 55.4497995
],
[
- -6.842454211192801,
- 53.89786317755242
+ -7.1528144,
+ 55.3968384
],
[
- -6.812928454356904,
- 53.90069520963246
+ -6.90561,
+ 55.394903
],
[
- -6.79850889869286,
- 53.89280549994937
+ -6.9047153,
+ 55.3842114
],
[
- -6.789925829845217,
- 53.89462633440526
+ -5.8485282,
+ 55.3922956
],
[
- -6.791985766368652,
- 53.904538374710896
+ -5.8378629,
+ 55.248676
],
[
- -6.778939501720231,
- 53.918087767078354
+ -5.3614762,
+ 55.2507024
],
[
- -6.77001311011868,
- 53.91505470292794
+ -5.3899172,
+ 53.8466464
],
[
- -6.75868345923979,
- 53.921727153244476
+ -5.8734141,
+ 53.8487436
],
[
- -6.744263903575747,
- 53.916065748791254
+ -5.8983,
+ 52.8256258
],
[
- -6.727441088634364,
- 53.92334455637637
+ -6.0191742,
+ 52.8256258
],
[
- -6.713021532970319,
- 53.90777445003927
+ -6.0262844,
+ 51.7712367
],
[
- -6.684182421642232,
- 53.90292024303218
+ -8.1131422,
+ 51.7712367
],
[
- -6.623757616954815,
- 53.88187882710815
+ -8.1273627,
+ 51.3268839
],
[
- -6.590455309825955,
- 53.857789593974296
+ -10.6052842,
+ 51.3091083
],
[
- -6.591141955333765,
- 53.835509894663346
+ -10.6271879,
+ 52.0328254
],
[
- -6.574319140392382,
- 53.82254170362619
+ -10.6469845,
+ 52.0322454
],
[
- -6.571572558361136,
- 53.804703885117576
+ -10.6469845,
+ 52.0440365
],
[
- -6.5533764524041285,
- 53.79983770791046
+ -10.6271879,
+ 52.0448095
],
[
- -6.541360156017425,
- 53.78300449111207
+ -10.6290733,
+ 52.0745627
],
[
- -6.511491076427622,
- 53.76900546961285
+ -10.6699234,
+ 52.0743695
],
[
- -6.472695605236269,
- 53.77326653566421
+ -10.6702376,
+ 52.0876941
],
[
- -6.443513171154276,
- 53.76393220797015
+ -10.6312729,
+ 52.0898179
],
[
- -6.44728972144724,
- 53.75114486961979
+ -10.6393128,
+ 52.4147202
],
[
- -6.4775021237909485,
- 53.728199094666586
+ -10.3137689,
+ 52.4185533
],
[
- -6.459649340587848,
- 53.71682309412751
+ -10.3166401,
+ 53.3341342
],
[
- -6.435616747814443,
- 53.72230833571077
+ -10.3699669,
+ 53.3330727
],
[
- -6.4198239011347775,
- 53.72921465935537
+ -10.385965,
+ 54.3534472
],
[
- -6.4009411496699595,
- 53.72169889975152
+ -8.8163777,
+ 54.3586265
],
[
- -6.375878588634836,
- 53.718042098526006
+ -8.8173427,
+ 54.6595721
],
[
- -6.359055773693453,
- 53.708695495259434
+ -8.8413398,
+ 54.6616284
],
[
- -6.340173022228636,
- 53.708085862042424
+ -8.8422286,
+ 54.6929749
],
[
- -6.329873339611461,
- 53.71296268045594
+ -8.8315632,
+ 54.7145436
],
[
- -6.325753466564592,
- 53.72210519137233
- ],
+ -8.8151208,
+ 54.7145436
+ ]
+ ]
+ ],
+ "terms_url": "http://geo.nls.uk/maps/",
+ "terms_text": "National Library of Scotland Historic Maps"
+ },
+ {
+ "name": "Ireland British War Office One-Inch 1941-43 GSGS 4136",
+ "type": "tms",
+ "template": "http://geo.nls.uk/maps/ireland/gsgs4136/{zoom}/{x}/{-y}.png",
+ "scaleExtent": [
+ 5,
+ 15
+ ],
+ "polygon": [
+ [
[
- -6.2938244504513525,
- 53.72576163932632
+ -10.0847426,
+ 51.4147902
],
[
- -6.265328661877173,
- 53.7363229253304
+ -10.0906535,
+ 51.5064103
],
[
- -6.240952746349864,
- 53.734292114843086
+ -10.4564222,
+ 51.5003961
],
[
- -6.180871264416349,
- 53.632015710147016
+ -10.5005905,
+ 52.3043019
],
[
- -6.092793818322125,
- 53.588038288422446
+ -10.0837522,
+ 52.312741
],
[
- -5.985734079608837,
- 53.49383447350347
+ -10.0840973,
+ 52.3404698
],
[
- -6.0887447432153685,
- 53.27174268379562
+ -10.055802,
+ 52.3408915
],
[
- -6.033272979232964,
- 53.1191110041494
+ -10.0768509,
+ 52.7628238
],
[
- -5.984663357119282,
- 52.9651254915577
+ -9.7780248,
+ 52.7684611
],
[
- -6.122679104189409,
- 52.73207538466633
+ -9.7818205,
+ 52.8577261
],
[
- -6.185163845400262,
- 52.73706461957944
+ -9.6337877,
+ 52.8596012
],
[
- -6.1899703639549415,
- 52.76075568810044
+ -9.6449626,
+ 53.1294502
],
[
- -6.319059719423517,
- 52.782357357522855
+ -10.0919663,
+ 53.1227152
],
[
- -6.393904079774976,
- 52.7790347214105
+ -10.1051422,
+ 53.3912913
],
[
- -6.465315212587381,
- 52.6946379192593
+ -10.4052593,
+ 53.3866349
],
[
- -6.534666408876349,
- 52.673409093161446
+ -10.4530828,
+ 54.193502
],
[
- -6.612257351259057,
- 52.69255711803012
+ -10.2998523,
+ 54.1974988
],
[
- -6.6692489284074155,
- 52.74745702505679
+ -10.3149801,
+ 54.4669592
],
[
- -6.671308864930852,
- 52.76948072949997
+ -8.9276095,
+ 54.4853897
],
[
- -6.720747341493285,
- 52.7748810695361
+ -8.9339534,
+ 54.7546562
],
[
- -6.71456753192298,
- 52.80311808637125
+ -8.7773069,
+ 54.755501
],
[
- -6.658949245790243,
- 52.84709806982182
+ -8.7826749,
+ 55.0252208
],
[
- -6.582044948915348,
- 52.81349473557279
+ -8.9402974,
+ 55.0238221
],
[
- -6.547712673524768,
- 52.83133677935633
+ -8.9451773,
+ 55.2934155
],
[
- -6.531233181337292,
- 52.87404491274922
+ -7.528039,
+ 55.2970274
],
[
- -6.617750515321548,
- 52.87528820923615
+ -7.525599,
+ 55.3874955
],
[
- -6.728987087587023,
- 52.90635903963372
+ -7.0541955,
+ 55.3841691
],
[
- -6.780485500672891,
- 52.859122574848655
+ -7.0556595,
+ 55.2939712
],
[
- -6.870436062196207,
- 52.85165948109425
+ -6.3241545,
+ 55.2859128
],
[
- -6.938413967469552,
- 52.86658438536895
+ -6.3217146,
+ 55.3253556
],
[
- -6.965879787782016,
- 52.89766145203082
+ -6.1035807,
+ 55.3223016
],
[
- -6.987852444031986,
- 52.969260966642985
+ -6.1045566,
+ 55.2828557
],
[
- -7.039350857117853,
- 52.9560260536776
+ -5.7985836,
+ 55.2772968
],
[
- -7.109388698914634,
- 53.007288776633686
+ -5.8117595,
+ 55.0087135
],
[
- -7.068876613953752,
- 53.058078015357786
+ -5.656577,
+ 55.0056351
],
[
- -7.088789333680287,
- 53.11869890949892
+ -5.6721928,
+ 54.7355021
],
[
- -7.119688381531809,
- 53.15000684568904
+ -5.3618278,
+ 54.729585
],
[
- -7.105955471375577,
- 53.16112391039828
+ -5.3964755,
+ 54.1917889
],
[
- -7.127928127625547,
- 53.17223809655703
+ -5.855679,
+ 54.2017807
],
[
- -7.180113186219227,
- 53.182526443342745
+ -5.9220464,
+ 52.8524504
],
[
- -7.160887112000503,
- 53.19898266621498
+ -6.070885,
+ 52.8551025
],
[
- -7.057890285828767,
- 53.19898266621498
+ -6.1030927,
+ 52.1373337
],
[
- -7.048963894227218,
- 53.217077217179636
+ -6.8331336,
+ 52.1463183
],
[
- -7.0915359157115345,
- 53.235575105358386
+ -6.8355736,
+ 52.0578908
],
[
- -7.0434707301647235,
- 53.25735126035676
+ -7.5641506,
+ 52.0617913
],
[
- -7.05102383075065,
- 53.29717703664696
+ -7.5661026,
+ 51.7921593
],
[
- -6.996778835633536,
- 53.31112780504489
+ -8.147305,
+ 51.792763
],
[
- -7.044157375672535,
- 53.33368557548294
+ -8.146329,
+ 51.7033331
],
[
- -7.105955471375576,
- 53.371801590024276
+ -8.2912636,
+ 51.7027283
],
[
- -7.22050647653913,
- 53.432465115081854
+ -8.2897996,
+ 51.5227274
],
[
- -7.149441429887032,
- 53.45731709817442
+ -9.1174397,
+ 51.516958
],
[
- -7.099891489102085,
- 53.463915962572514
+ -9.1179277,
+ 51.4625685
],
[
- -7.0744645458045445,
- 53.48370640260363
+ -9.3692452,
+ 51.4616564
],
[
- -7.079028356140001,
- 53.504650927752664
+ -9.3672933,
+ 51.4254613
+ ]
+ ]
+ ],
+ "terms_url": "http://geo.nls.uk/maps/",
+ "terms_text": "National Library of Scotland Historic Maps"
+ },
+ {
+ "name": "Ireland EEA CORINE 2006",
+ "type": "tms",
+ "template": "http://a.tile.openstreetmap.ie/tiles/corine/{zoom}/{x}/{y}.png",
+ "scaleExtent": [
+ 5,
+ 16
+ ],
+ "polygon": [
+ [
+ [
+ -5.842956,
+ 53.8627976
],
[
- -7.047733656696876,
- 53.515119311359335
+ -5.8341575,
+ 53.7633541
],
[
- -7.029478415355053,
- 53.54147267392419
+ -5.6267647,
+ 53.5383692
],
[
- -7.054253385747527,
- 53.56471202500164
+ -5.9648778,
+ 52.1631197
],
[
- -7.009267255298033,
- 53.58561652973758
+ -6.0453211,
+ 52.0527275
],
[
- -6.992641946218873,
- 53.602642188744426
+ -6.1823261,
+ 51.9699475
],
[
- -6.989056095241016,
- 53.62739453790707
+ -6.3960035,
+ 51.9234618
],
[
- -6.9717788132567895,
- 53.63686620586593
+ -6.5945978,
+ 51.883911
],
[
- -6.9633031654909425,
- 53.650973114934644
+ -7.2481994,
+ 51.9056295
],
[
- -6.9871001765258205,
- 53.66623418009986
+ -7.341212,
+ 51.8148076
],
[
- -6.999813648174589,
- 53.67086935885432
+ -8.1971787,
+ 51.5037019
],
[
- -7.008289295940436,
- 53.65908728051006
+ -8.3191005,
+ 51.4167737
],
[
- -7.044473792171549,
- 53.65367801032349
+ -9.4478202,
+ 51.1991221
],
[
- -7.066640870943764,
- 53.63918547390694
+ -9.9015706,
+ 51.2266802
],
[
- -7.101847407817279,
- 53.65870092708686
+ -10.472215,
+ 51.4050139
],
[
- -7.120754622064167,
- 53.672993645380515
+ -10.8857437,
+ 51.6770619
],
[
- -7.137379931143327,
- 53.66893809633893
+ -11.035318,
+ 52.0620016
],
[
- -7.160850955725672,
- 53.683034277255075
+ -10.9950963,
+ 52.1831616
],
[
- -7.174216400279507,
- 53.686316272406906
+ -10.8178697,
+ 52.3139827
],
[
- -7.196057492599188,
- 53.69017711570491
+ -9.8839736,
+ 52.9032208
],
[
- -7.210726882963154,
- 53.69480966037566
+ -10.1165049,
+ 52.9676141
],
[
- -7.247237365646801,
- 53.71661437518035
+ -10.5514014,
+ 53.3317027
],
[
- -7.239413690786019,
- 53.73223735177976
+ -10.6896633,
+ 53.5854022
],
[
- -7.260276823748104,
- 53.74361339729716
+ -10.6444139,
+ 54.0100436
],
[
- -7.2814659431627184,
- 53.75922634307083
+ -10.5501445,
+ 54.257482
],
[
- -7.289615604476034,
- 53.77271433845693
+ -10.2824192,
+ 54.4742405
],
[
- -7.3238441819919515,
- 53.78465723043301
+ -9.8073011,
+ 54.5705346
],
[
- -7.337209626545788,
- 53.78658318504567
+ -9.196435,
+ 54.5486695
],
[
- -7.351227044004687,
- 53.80141007448381
+ -9.2253443,
+ 54.7000264
],
[
- -7.307313219981238,
- 53.81625879275365
- ]
- ],
- [
- [
- -5.685433013282673,
- 54.77854496390836
+ -8.8985435,
+ 55.1363582
],
[
- -5.696867084279401,
- 54.73050346921268
+ -8.0476045,
+ 55.4711977
],
[
- -5.8223689524230124,
- 54.70033215177621
+ -7.4367384,
+ 55.6191092
],
[
- -5.878760568989772,
- 54.649492182564074
+ -7.2205471,
+ 55.6205288
],
[
- -5.743404719024681,
- 54.68128223623249
+ -6.8258723,
+ 55.5608644
],
[
- -5.581196917402638,
- 54.68781619319656
+ -6.0679458,
+ 55.3727567
],
[
- -5.571488953592992,
- 54.67074450064368
+ -5.5639184,
+ 55.0759594
],
[
- -5.582915011231644,
- 54.66440901595977
+ -5.0649187,
+ 54.4640142
],
[
- -5.58291501123164,
- 54.65085746679818
- ],
+ -5.2572284,
+ 54.1582424
+ ]
+ ]
+ ],
+ "terms_url": "http://www.eea.europa.eu/data-and-maps/data/clc-2006-vector-data-version-1",
+ "terms_text": "EEA Corine 2006"
+ },
+ {
+ "name": "Ireland EEA GMES Urban Atlas",
+ "type": "tms",
+ "template": "http://a.tile.openstreetmap.ie/tiles/urbanatlas/{zoom}/{x}/{y}.png",
+ "scaleExtent": [
+ 5,
+ 17
+ ],
+ "polygon": [
+ [
[
- -5.6086481910584185,
- 54.63997082553691
+ -9.2759602,
+ 52.7993666
],
[
- -5.6354970593650116,
- 54.61551371292451
+ -9.215509,
+ 52.8276933
],
[
- -5.728732824433139,
- 54.6184944610979
+ -9.1086618,
+ 52.9128016
],
[
- -5.822612969913913,
- 54.49193018941315
+ -9.0196831,
+ 52.8837107
],
[
- -5.896754545381575,
- 54.44975600798866
+ -8.8760649,
+ 52.8978445
],
[
- -5.936834914186871,
- 54.38213187386197
+ -8.8001797,
+ 52.8833558
],
[
- -6.0187561190025445,
- 54.36974944197913
+ -8.7665597,
+ 52.9065354
],
[
- -6.059257912638059,
- 54.38280030737259
+ -8.5938079,
+ 52.9238592
],
[
- -6.101784280694663,
- 54.41510088826871
+ -8.5241972,
+ 52.8869724
],
[
- -6.1740201072375225,
- 54.43476829635816
+ -8.4956786,
+ 52.9105906
],
[
- -6.216261364689026,
- 54.42827259213158
+ -8.3506448,
+ 52.9238592
],
[
- -6.264329002478664,
- 54.487825014814625
+ -8.2718204,
+ 52.9492401
],
[
- -6.249277519938476,
- 54.49741303545491
+ -8.2249679,
+ 52.8991338
],
[
- -6.288340515296785,
- 54.53143435197413
+ -8.1564001,
+ 52.9149986
],
[
- -6.283750270272458,
- 54.54447449434036
+ -8.0881237,
+ 52.7630417
],
[
- -6.321445027854273,
- 54.58928767713928
+ -8.1360092,
+ 52.7239783
],
[
- -6.264329002478664,
- 54.604982769755765
+ -8.1570652,
+ 52.6766443
],
[
- -6.240052417736423,
- 54.59541999854735
+ -8.2059695,
+ 52.6185385
],
[
- -6.098762694536575,
- 54.631690374598676
+ -8.2025734,
+ 52.5954396
],
[
- -6.051950538018501,
- 54.61314575326238
+ -8.2231242,
+ 52.5599691
],
[
- -6.031509408441251,
- 54.620921248201434
+ -8.2236294,
+ 52.5095371
],
[
- -6.002995140908084,
- 54.65571636730639
+ -8.2976651,
+ 52.5025088
],
[
- -6.0647754758974335,
- 54.6634355452454
+ -8.3295888,
+ 52.4721087
],
[
- -6.059920158948984,
- 54.704134188139534
+ -8.3589695,
+ 52.4986072
],
[
- -6.047781866577864,
- 54.71395188569398
+ -8.3737385,
+ 52.4764529
],
[
- -6.120611620804591,
- 54.801644524994515
+ -8.432326,
+ 52.4342609
],
[
- -6.002141887262449,
- 54.80836072138932
+ -8.4754569,
+ 52.4216289
],
[
- -5.984662746248036,
- 54.78652900156178
+ -8.5017727,
+ 52.3870011
],
[
- -5.685433013282673,
- 54.77854496390836
- ]
- ],
- [
- [
- -9.128658300749114,
- 53.24759266864586
+ -8.5476205,
+ 52.3681351
],
[
- -9.024510568479629,
- 53.26744820137083
+ -8.6444103,
+ 52.3376422
],
[
- -9.016360907166316,
- 53.26364619217274
+ -8.6841451,
+ 52.3660614
],
[
- -9.001854510028616,
- 53.26588844362053
+ -8.8154099,
+ 52.3721014
],
[
- -8.9951717877517,
- 53.259258838409615
+ -8.8614233,
+ 52.3521652
],
[
- -8.973493688658284,
- 53.262378780650025
+ -8.9074451,
+ 52.3824674
],
[
- -8.95230456924367,
- 53.271444820907114
+ -8.9388551,
+ 52.3789166
],
[
- -8.956705386352859,
- 53.281580911863244
+ -8.9782502,
+ 52.4093811
],
[
- -8.961106203462048,
- 53.28119110665652
+ -9.0298715,
+ 52.4104169
],
[
- -8.960780217009516,
- 53.28908396911955
+ -9.1059449,
+ 52.420981
],
[
- -8.954260487958864,
- 53.28927883616923
+ -9.1084962,
+ 52.4415071
],
[
- -8.95230456924367,
- 53.30155366854246
+ -9.140702,
+ 52.4650891
],
[
- -8.963714095082308,
- 53.303793931840495
+ -9.1315765,
+ 52.5136207
],
[
- -8.9811543702928,
- 53.294734752711804
+ -9.1739699,
+ 52.5620573
],
[
- -8.985718180628256,
- 53.30174847871221
+ -9.1426235,
+ 52.589645
],
[
- -9.019946758144176,
- 53.30768976199425
+ -9.1542382,
+ 52.610216
],
[
- -9.00837423907927,
- 53.31596722087059
+ -9.1426231,
+ 52.6387401
],
[
- -9.01880580556031,
- 53.31625933715475
+ -9.1776844,
+ 52.6447573
],
[
- -9.045862681120513,
- 53.31275380979257
+ -9.2012184,
+ 52.6526248
],
[
- -9.06444390891487,
- 53.32122500810515
+ -9.2036198,
+ 52.6686468
],
[
- -9.080906224767762,
- 53.307397587062724
+ -9.2238348,
+ 52.6706578
],
[
- -9.08106921799403,
- 53.303404329274585
+ -9.2161072,
+ 52.6919412
],
[
- -9.09019683866494,
- 53.30574189135002
+ -9.1882395,
+ 52.7057242
],
[
- -9.095901601584261,
- 53.298826232852214
+ -9.2750099,
+ 52.7350292
],
[
- -9.10128037805105,
- 53.3008718259498
- ],
+ -9.2601152,
+ 52.7616711
+ ]
+ ],
+ [
[
- -9.115623781962478,
- 53.28450433758295
+ -7.307313219981238,
+ 53.81625879275365
],
[
- -9.121491538108067,
- 53.2832375443259
+ -7.245858447032101,
+ 53.78300449111207
],
[
- -9.13273807072044,
- 53.28557621023763
+ -7.15144468970801,
+ 53.81179938127503
],
[
- -9.144636576237877,
- 53.27865728614638
+ -7.086900011973722,
+ 53.784424420834
],
[
- -9.13876882009229,
- 53.26345120822951
+ -7.0347149533800435,
+ 53.77996162275688
],
[
- -9.128658300749114,
- 53.24759266864586
- ]
- ],
- [
+ -6.975320116954343,
+ 53.788481098127924
+ ],
[
- -8.595266214281438,
- 51.69264788483154
+ -6.928628222423156,
+ 53.81443454540607
],
[
- -8.55819409885298,
- 51.69306638852667
+ -6.992829577403537,
+ 53.86609081229548
],
[
- -8.566697711835303,
- 51.682644706464686
+ -6.975320116954343,
+ 53.87945028968944
],
[
- -8.579130708100188,
- 51.67349700898941
+ -6.949914233165313,
+ 53.87094929783329
],
[
- -8.544554623426079,
- 51.66520531197343
+ -6.9375546140247035,
+ 53.87540241385127
],
[
- -8.494765061495364,
- 51.667778759675976
+ -6.936867968516893,
+ 53.896649390754646
],
[
- -8.30113898732036,
- 51.7235009029955
+ -6.897042529063821,
+ 53.889770599553906
],
[
- -8.268406960495541,
- 51.784858633837544
+ -6.867516772227924,
+ 53.880259817835736
],
[
- -8.154536388302146,
- 51.7814362126791
+ -6.851037280040446,
+ 53.88450958346468
],
[
- -8.115350159004825,
- 51.809093351533164
+ -6.842454211192801,
+ 53.89786317755242
],
[
- -8.068326683848039,
- 51.870050153657075
+ -6.812928454356904,
+ 53.90069520963246
],
[
- -8.10059769621054,
- 51.89964422561186
+ -6.79850889869286,
+ 53.89280549994937
],
[
- -8.08123508879304,
- 51.918414974037226
+ -6.789925829845217,
+ 53.89462633440526
],
[
- -8.09183842142643,
- 51.95337589170907
+ -6.791985766368652,
+ 53.904538374710896
],
[
- -8.124570448251253,
- 51.95479649105758
+ -6.778939501720231,
+ 53.918087767078354
],
[
- -8.132407694110718,
- 51.970988142592034
+ -6.77001311011868,
+ 53.91505470292794
],
[
- -8.099675667285895,
- 51.978371865876596
+ -6.75868345923979,
+ 53.921727153244476
],
[
- -8.144394070131078,
- 52.02151390085561
+ -6.744263903575747,
+ 53.916065748791254
],
[
- -8.159607547387685,
- 52.064330945363764
+ -6.727441088634364,
+ 53.92334455637637
],
[
- -8.140705954432507,
- 52.07254939152303
+ -6.713021532970319,
+ 53.90777445003927
],
[
- -8.165600735397863,
- 52.09294727054506
+ -6.684182421642232,
+ 53.90292024303218
],
[
- -8.18726841512697,
- 52.0835993998731
+ -6.623757616954815,
+ 53.88187882710815
],
[
- -8.2093971093184,
- 52.10512489114057
+ -6.590455309825955,
+ 53.857789593974296
],
[
- -8.207092037006792,
- 52.12494181389489
+ -6.591141955333765,
+ 53.835509894663346
],
[
- -8.227837687811258,
- 52.143052434929714
+ -6.574319140392382,
+ 53.82254170362619
],
[
- -8.222766528725723,
- 52.16454923557058
+ -6.571572558361136,
+ 53.804703885117576
],
[
- -8.30298304516965,
- 52.1829264222872
+ -6.5533764524041285,
+ 53.79983770791046
],
[
- -8.427456949996438,
- 52.17783811526099
+ -6.541360156017425,
+ 53.78300449111207
],
[
- -8.46710419375608,
- 52.169921813849676
+ -6.511491076427622,
+ 53.76900546961285
],
[
- -8.509978538751975,
- 52.18405707812542
+ -6.472695605236269,
+ 53.77326653566421
],
[
- -8.530263175094117,
- 52.16511480067495
+ -6.443513171154276,
+ 53.76393220797015
],
[
- -8.574981577939297,
- 52.18066502436804
+ -6.44728972144724,
+ 53.75114486961979
],
[
- -8.587889982884295,
- 52.16963906274442
+ -6.4775021237909485,
+ 53.728199094666586
],
[
- -8.642289689438227,
- 52.18829678149147
+ -6.459649340587848,
+ 53.71682309412751
],
[
- -8.719279104645906,
- 52.15804472022032
+ -6.435616747814443,
+ 53.72230833571077
],
[
- -8.698533453841442,
- 52.13541291452849
+ -6.4198239011347775,
+ 53.72921465935537
],
[
- -8.740946784375014,
- 52.10823956240069
+ -6.4009411496699595,
+ 53.72169889975152
],
[
- -8.77460084012448,
- 52.05951253229793
+ -6.375878588634836,
+ 53.718042098526006
],
[
- -8.803183736788409,
- 52.03768144571248
+ -6.359055773693453,
+ 53.708695495259434
],
[
- -8.86818677597573,
- 52.03286015807593
+ -6.340173022228636,
+ 53.708085862042424
],
[
- -8.870491848287335,
- 52.01839317543363
+ -6.329873339611461,
+ 53.71296268045594
],
[
- -8.844214023935015,
- 51.991148511559096
+ -6.325753466564592,
+ 53.72210519137233
],
[
- -8.79811257770287,
- 51.964455373040394
+ -6.2938244504513525,
+ 53.72576163932632
],
[
- -8.782899100446263,
- 51.931777239822054
+ -6.265328661877173,
+ 53.7363229253304
],
[
- -8.835915763613228,
- 51.9292188160068
+ -6.240952746349864,
+ 53.734292114843086
],
[
- -8.838681850387156,
- 51.90277322850554
+ -6.180871264416349,
+ 53.632015710147016
],
[
- -8.802261707863764,
- 51.89367006943167
+ -6.092793818322125,
+ 53.588038288422446
],
[
- -8.792580404155013,
- 51.85695425263326
+ -5.985734079608837,
+ 53.49383447350347
],
[
- -8.765841565340368,
- 51.82476769939557
+ -6.0887447432153685,
+ 53.27174268379562
],
[
- -8.758926348405547,
- 51.80054140901511
+ -6.033272979232964,
+ 53.1191110041494
],
[
- -8.79811257770287,
- 51.78628456602828
+ -5.984663357119282,
+ 52.9651254915577
],
[
- -8.832227647914657,
- 51.79626482935233
+ -6.122679104189409,
+ 52.73207538466633
],
[
- -8.836837792537873,
- 51.77687258059678
+ -6.185163845400262,
+ 52.73706461957944
],
[
- -8.885705325543944,
- 51.746055989869106
+ -6.1899703639549415,
+ 52.76075568810044
],
[
- -8.859888515653944,
- 51.72435763090916
+ -6.319059719423517,
+ 52.782357357522855
],
[
- -8.807332866949299,
- 51.71093369500414
+ -6.393904079774976,
+ 52.7790347214105
],
[
- -8.678248817499297,
- 51.693505197270746
+ -6.465315212587381,
+ 52.6946379192593
],
[
- -8.60540853245251,
- 51.67835695335278
+ -6.534666408876349,
+ 52.673409093161446
],
[
- -8.595266214281438,
- 51.69264788483154
- ]
- ],
- [
+ -6.612257351259057,
+ 52.69255711803012
+ ],
[
- -7.138279151048154,
- 55.06131559970097
+ -6.6692489284074155,
+ 52.74745702505679
],
[
- -7.117994514706011,
- 54.99631329558348
+ -6.671308864930852,
+ 52.76948072949997
],
[
- -7.070049010624583,
- 54.98784996056705
+ -6.720747341493285,
+ 52.7748810695361
],
[
- -7.076503213097081,
- 54.93332450204895
+ -6.71456753192298,
+ 52.80311808637125
],
[
- -7.025791622241725,
- 54.91159959910791
+ -6.658949245790243,
+ 52.84709806982182
],
[
- -7.007351043748867,
- 54.87872502112528
+ -6.582044948915348,
+ 52.81349473557279
],
[
- -7.024869593317081,
- 54.8511320998998
+ -6.547712673524768,
+ 52.83133677935633
],
[
- -6.990754523105296,
- 54.81661438893913
+ -6.531233181337292,
+ 52.87404491274922
],
[
- -7.051608432131725,
- 54.80598761598125
+ -6.617750515321548,
+ 52.87528820923615
],
[
- -7.115228427932084,
- 54.80651902101645
+ -6.728987087587023,
+ 52.90635903963372
],
[
- -7.170550163410654,
- 54.84847793920564
+ -6.780485500672891,
+ 52.859122574848655
],
[
- -7.199133060074584,
- 54.84316909395457
+ -6.870436062196207,
+ 52.85165948109425
],
[
- -7.222183783190655,
- 54.85803210052931
+ -6.938413967469552,
+ 52.86658438536895
],
[
- -7.2111194360949415,
- 54.862808332627324
+ -6.965879787782016,
+ 52.89766145203082
],
[
- -7.212041465019584,
- 54.882438010878076
+ -6.987852444031986,
+ 52.969260966642985
],
[
- -7.279349576518514,
- 54.880846771447125
+ -7.039350857117853,
+ 52.9560260536776
],
[
- -7.273817402970655,
- 54.91530955931841
+ -7.109388698914634,
+ 53.007288776633686
],
[
- -7.3033223285592275,
- 54.915839525718205
+ -7.068876613953752,
+ 53.058078015357786
],
[
- -7.363254208661015,
- 54.90894941815292
+ -7.088789333680287,
+ 53.11869890949892
],
[
- -7.385382902852443,
- 54.91636948513913
+ -7.119688381531809,
+ 53.15000684568904
],
[
- -7.391837105324943,
- 54.93438395336098
+ -7.105955471375577,
+ 53.16112391039828
],
[
- -7.429640291235302,
- 54.95291983389722
+ -7.127928127625547,
+ 53.17223809655703
],
[
- -7.420420001988872,
- 54.99208185118366
+ -7.180113186219227,
+ 53.182526443342745
],
[
- -7.410277683817801,
- 55.03437621938347
+ -7.160887112000503,
+ 53.19898266621498
],
[
- -7.3577220351131585,
- 55.057619110599035
+ -7.057890285828767,
+ 53.19898266621498
],
[
- -7.265519142648871,
- 55.07557028899173
+ -7.048963894227218,
+ 53.217077217179636
],
[
- -7.138279151048154,
- 55.06131559970097
- ]
- ],
- [
+ -7.0915359157115345,
+ 53.235575105358386
+ ],
[
- -7.190498776293322,
- 52.26144368927652
+ -7.0434707301647235,
+ 53.25735126035676
],
[
- -7.156844720543858,
- 52.28443443581867
+ -7.05102383075065,
+ 53.29717703664696
],
[
- -7.132871968503143,
- 52.27343421670601
+ -6.996778835633536,
+ 53.31112780504489
],
[
- -7.113278853854483,
- 52.26779201951648
+ -7.044157375672535,
+ 53.33368557548294
],
[
- -7.098295883829036,
- 52.27230583471742
+ -7.105955471375576,
+ 53.371801590024276
],
[
- -7.089767116276089,
- 52.25509445009032
+ -7.22050647653913,
+ 53.432465115081854
],
[
- -7.07109603055207,
- 52.259186286149074
+ -7.149441429887032,
+ 53.45731709817442
],
[
- -7.033984366335195,
- 52.257352061495865
+ -7.099891489102085,
+ 53.463915962572514
],
[
- -7.027530163862696,
- 52.250720000975015
+ -7.0744645458045445,
+ 53.48370640260363
],
[
- -7.034675888028678,
- 52.247756419376
+ -7.079028356140001,
+ 53.504650927752664
],
[
- -7.031218279561267,
- 52.24013487190721
+ -7.047733656696876,
+ 53.515119311359335
],
[
- -7.034214873566356,
- 52.23222966213934
+ -7.029478415355053,
+ 53.54147267392419
],
[
- -7.050580886978767,
- 52.2296884028405
+ -7.054253385747527,
+ 53.56471202500164
],
[
- -7.062567262999124,
- 52.21980434486687
+ -7.009267255298033,
+ 53.58561652973758
],
[
- -7.076858711331088,
- 52.216132562953725
+ -6.992641946218873,
+ 53.602642188744426
],
[
- -7.084926464421715,
- 52.22065163604718
+ -6.989056095241016,
+ 53.62739453790707
],
[
- -7.084465449959392,
- 52.22785295843095
+ -6.9717788132567895,
+ 53.63686620586593
],
[
- -7.101292477834124,
- 52.221498911062525
+ -6.9633031654909425,
+ 53.650973114934644
],
[
- -7.105211100763858,
- 52.21726237433474
+ -6.9871001765258205,
+ 53.66623418009986
],
[
- -7.111665303236357,
- 52.21796849185403
+ -6.999813648174589,
+ 53.67086935885432
],
[
- -7.107977187537785,
- 52.21104805609072
+ -7.008289295940436,
+ 53.65908728051006
],
[
- -7.117773744862115,
- 52.20928246619701
+ -7.044473792171549,
+ 53.65367801032349
],
[
- -7.129760120882472,
- 52.21690931136535
+ -7.066640870943764,
+ 53.63918547390694
],
[
- -7.14497359813908,
- 52.21782726924826
+ -7.101847407817279,
+ 53.65870092708686
],
[
- -7.150505771686938,
- 52.22375823207553
+ -7.120754622064167,
+ 53.672993645380515
],
[
- -7.158112510315241,
- 52.22262858593765
+ -7.137379931143327,
+ 53.66893809633893
],
[
- -7.158804032008724,
- 52.22700580464912
+ -7.160850955725672,
+ 53.683034277255075
],
[
- -7.158573524777563,
- 52.23180612902503
+ -7.174216400279507,
+ 53.686316272406906
],
[
- -7.167563306792832,
- 52.23985256723076
+ -7.196057492599188,
+ 53.69017711570491
],
[
- -7.16733279956167,
- 52.244580933687786
+ -7.210726882963154,
+ 53.69480966037566
],
[
- -7.172519212262786,
- 52.24676851484933
+ -7.247237365646801,
+ 53.71661437518035
],
[
- -7.177590371348324,
- 52.25114335361416
+ -7.239413690786019,
+ 53.73223735177976
],
[
- -7.190498776293322,
- 52.26144368927652
- ]
- ]
- ],
- "terms_url": "http://www.eea.europa.eu/data-and-maps/data/urban-atlas",
- "terms_text": "EEA GMES Urban Atlas"
- },
- {
- "name": "Kanton Aargau 25cm (AGIS 2011)",
- "type": "tms",
- "template": "http://tiles.poole.ch/AGIS/OF2011/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 14,
- 19
- ],
- "polygon": [
- [
+ -7.260276823748104,
+ 53.74361339729716
+ ],
[
- 7.7,
- 47.12
+ -7.2814659431627184,
+ 53.75922634307083
],
[
- 7.7,
- 47.63
+ -7.289615604476034,
+ 53.77271433845693
],
[
- 8.5,
- 47.63
+ -7.3238441819919515,
+ 53.78465723043301
],
[
- 8.5,
- 47.12
+ -7.337209626545788,
+ 53.78658318504567
],
[
- 7.7,
- 47.12
+ -7.351227044004687,
+ 53.80141007448381
+ ],
+ [
+ -7.307313219981238,
+ 53.81625879275365
]
- ]
- ],
- "terms_text": "AGIS OF2011"
- },
- {
- "name": "Katastrálna mapa Slovenska (KaPor, 2010-04)",
- "type": "tms",
- "template": "http://www.freemap.sk/tms/kapor2/{zoom}/{x}/{y}.jpg",
- "polygon": [
+ ],
[
[
- 19.83682,
- 49.25529
+ -5.685433013282673,
+ 54.77854496390836
],
[
- 19.80075,
- 49.42385
+ -5.696867084279401,
+ 54.73050346921268
],
[
- 19.60437,
- 49.48058
+ -5.8223689524230124,
+ 54.70033215177621
],
[
- 19.49179,
- 49.63961
+ -5.878760568989772,
+ 54.649492182564074
],
[
- 19.21831,
- 49.52604
+ -5.743404719024681,
+ 54.68128223623249
],
[
- 19.16778,
- 49.42521
+ -5.581196917402638,
+ 54.68781619319656
],
[
- 19.00308,
- 49.42236
+ -5.571488953592992,
+ 54.67074450064368
],
[
- 18.97611,
- 49.5308
+ -5.582915011231644,
+ 54.66440901595977
],
[
- 18.54685,
- 49.51425
+ -5.58291501123164,
+ 54.65085746679818
],
[
- 18.31432,
- 49.33818
+ -5.6086481910584185,
+ 54.63997082553691
],
[
- 18.15913,
- 49.2961
+ -5.6354970593650116,
+ 54.61551371292451
],
[
- 18.05564,
- 49.11134
+ -5.728732824433139,
+ 54.6184944610979
],
[
- 17.56396,
- 48.84938
+ -5.822612969913913,
+ 54.49193018941315
],
[
- 17.17929,
- 48.88816
+ -5.896754545381575,
+ 54.44975600798866
],
[
- 17.058,
- 48.81105
+ -5.936834914186871,
+ 54.38213187386197
],
[
- 16.90426,
- 48.61947
+ -6.0187561190025445,
+ 54.36974944197913
],
[
- 16.79685,
- 48.38561
+ -6.059257912638059,
+ 54.38280030737259
],
[
- 17.06762,
- 48.01116
+ -6.101784280694663,
+ 54.41510088826871
],
[
- 17.32787,
- 47.97749
+ -6.1740201072375225,
+ 54.43476829635816
],
[
- 17.51699,
- 47.82535
+ -6.216261364689026,
+ 54.42827259213158
],
[
- 17.74776,
- 47.73093
+ -6.264329002478664,
+ 54.487825014814625
],
[
- 18.29515,
- 47.72075
+ -6.249277519938476,
+ 54.49741303545491
],
[
- 18.67959,
- 47.75541
+ -6.288340515296785,
+ 54.53143435197413
],
[
- 18.89755,
- 47.81203
+ -6.283750270272458,
+ 54.54447449434036
],
[
- 18.79463,
- 47.88245
+ -6.321445027854273,
+ 54.58928767713928
],
[
- 18.84318,
- 48.04046
+ -6.264329002478664,
+ 54.604982769755765
],
[
- 19.46212,
- 48.05333
+ -6.240052417736423,
+ 54.59541999854735
],
[
- 19.62064,
- 48.22938
+ -6.098762694536575,
+ 54.631690374598676
],
[
- 19.89585,
- 48.09387
+ -6.051950538018501,
+ 54.61314575326238
],
[
- 20.33766,
- 48.2643
+ -6.031509408441251,
+ 54.620921248201434
],
[
- 20.55395,
- 48.52358
+ -6.002995140908084,
+ 54.65571636730639
],
[
- 20.82335,
- 48.55714
+ -6.0647754758974335,
+ 54.6634355452454
],
[
- 21.10271,
- 48.47096
+ -6.059920158948984,
+ 54.704134188139534
],
[
- 21.45863,
- 48.55513
+ -6.047781866577864,
+ 54.71395188569398
],
[
- 21.74536,
- 48.31435
+ -6.120611620804591,
+ 54.801644524994515
],
[
- 22.15293,
- 48.37179
+ -6.002141887262449,
+ 54.80836072138932
],
[
- 22.61255,
- 49.08914
+ -5.984662746248036,
+ 54.78652900156178
],
[
- 22.09997,
- 49.23814
- ],
+ -5.685433013282673,
+ 54.77854496390836
+ ]
+ ],
+ [
[
- 21.9686,
- 49.36363
+ -9.128658300749114,
+ 53.24759266864586
],
[
- 21.6244,
- 49.46989
+ -9.024510568479629,
+ 53.26744820137083
],
[
- 21.06873,
- 49.46402
+ -9.016360907166316,
+ 53.26364619217274
],
[
- 20.94336,
- 49.31088
+ -9.001854510028616,
+ 53.26588844362053
],
[
- 20.73052,
- 49.44006
+ -8.9951717877517,
+ 53.259258838409615
],
[
- 20.22804,
- 49.41714
+ -8.973493688658284,
+ 53.262378780650025
],
[
- 20.05234,
- 49.23052
+ -8.95230456924367,
+ 53.271444820907114
],
[
- 19.83682,
- 49.25529
- ]
- ]
- ],
- "terms_url": "http://wiki.freemap.sk/KatasterPortal",
- "terms_text": "Permisssion by UGKK"
- },
- {
- "name": "Katastrálna mapa Slovenska (KaPor, 2011-05)",
- "type": "tms",
- "template": "http://www.freemap.sk/tms/kapor2_201105/{zoom}/{x}/{y}.jpg",
- "polygon": [
- [
- [
- 19.83682,
- 49.25529
+ -8.956705386352859,
+ 53.281580911863244
],
[
- 19.80075,
- 49.42385
+ -8.961106203462048,
+ 53.28119110665652
],
[
- 19.60437,
- 49.48058
+ -8.960780217009516,
+ 53.28908396911955
],
[
- 19.49179,
- 49.63961
+ -8.954260487958864,
+ 53.28927883616923
],
[
- 19.21831,
- 49.52604
+ -8.95230456924367,
+ 53.30155366854246
],
[
- 19.16778,
- 49.42521
+ -8.963714095082308,
+ 53.303793931840495
],
[
- 19.00308,
- 49.42236
+ -8.9811543702928,
+ 53.294734752711804
],
[
- 18.97611,
- 49.5308
+ -8.985718180628256,
+ 53.30174847871221
],
[
- 18.54685,
- 49.51425
+ -9.019946758144176,
+ 53.30768976199425
],
[
- 18.31432,
- 49.33818
+ -9.00837423907927,
+ 53.31596722087059
],
[
- 18.15913,
- 49.2961
+ -9.01880580556031,
+ 53.31625933715475
],
[
- 18.05564,
- 49.11134
+ -9.045862681120513,
+ 53.31275380979257
],
[
- 17.56396,
- 48.84938
+ -9.06444390891487,
+ 53.32122500810515
],
[
- 17.17929,
- 48.88816
+ -9.080906224767762,
+ 53.307397587062724
],
[
- 17.058,
- 48.81105
+ -9.08106921799403,
+ 53.303404329274585
],
[
- 16.90426,
- 48.61947
+ -9.09019683866494,
+ 53.30574189135002
],
[
- 16.79685,
- 48.38561
+ -9.095901601584261,
+ 53.298826232852214
],
[
- 17.06762,
- 48.01116
+ -9.10128037805105,
+ 53.3008718259498
],
[
- 17.32787,
- 47.97749
+ -9.115623781962478,
+ 53.28450433758295
],
[
- 17.51699,
- 47.82535
+ -9.121491538108067,
+ 53.2832375443259
],
[
- 17.74776,
- 47.73093
+ -9.13273807072044,
+ 53.28557621023763
],
[
- 18.29515,
- 47.72075
+ -9.144636576237877,
+ 53.27865728614638
],
[
- 18.67959,
- 47.75541
+ -9.13876882009229,
+ 53.26345120822951
],
[
- 18.89755,
- 47.81203
- ],
+ -9.128658300749114,
+ 53.24759266864586
+ ]
+ ],
+ [
[
- 18.79463,
- 47.88245
+ -8.595266214281438,
+ 51.69264788483154
],
[
- 18.84318,
- 48.04046
+ -8.55819409885298,
+ 51.69306638852667
],
[
- 19.46212,
- 48.05333
+ -8.566697711835303,
+ 51.682644706464686
],
[
- 19.62064,
- 48.22938
+ -8.579130708100188,
+ 51.67349700898941
],
[
- 19.89585,
- 48.09387
+ -8.544554623426079,
+ 51.66520531197343
],
[
- 20.33766,
- 48.2643
+ -8.494765061495364,
+ 51.667778759675976
],
[
- 20.55395,
- 48.52358
+ -8.30113898732036,
+ 51.7235009029955
],
[
- 20.82335,
- 48.55714
+ -8.268406960495541,
+ 51.784858633837544
],
[
- 21.10271,
- 48.47096
+ -8.154536388302146,
+ 51.7814362126791
],
[
- 21.45863,
- 48.55513
+ -8.115350159004825,
+ 51.809093351533164
],
[
- 21.74536,
- 48.31435
+ -8.068326683848039,
+ 51.870050153657075
],
[
- 22.15293,
- 48.37179
+ -8.10059769621054,
+ 51.89964422561186
],
[
- 22.61255,
- 49.08914
+ -8.08123508879304,
+ 51.918414974037226
],
[
- 22.09997,
- 49.23814
+ -8.09183842142643,
+ 51.95337589170907
],
[
- 21.9686,
- 49.36363
+ -8.124570448251253,
+ 51.95479649105758
],
[
- 21.6244,
- 49.46989
+ -8.132407694110718,
+ 51.970988142592034
],
[
- 21.06873,
- 49.46402
+ -8.099675667285895,
+ 51.978371865876596
],
[
- 20.94336,
- 49.31088
+ -8.144394070131078,
+ 52.02151390085561
],
[
- 20.73052,
- 49.44006
+ -8.159607547387685,
+ 52.064330945363764
],
[
- 20.22804,
- 49.41714
+ -8.140705954432507,
+ 52.07254939152303
],
[
- 20.05234,
- 49.23052
+ -8.165600735397863,
+ 52.09294727054506
],
[
- 19.83682,
- 49.25529
- ]
- ]
- ],
- "terms_url": "http://wiki.freemap.sk/KatasterPortal",
- "terms_text": "Permisssion by UGKK"
- },
- {
- "name": "Lithuania - ORT10LT",
- "type": "tms",
- "template": "http://mapproxy.openmap.lt/ort10lt/g/{z}/{x}/{y}.jpeg",
- "scaleExtent": [
- 4,
- 18
- ],
- "polygon": [
- [
+ -8.18726841512697,
+ 52.0835993998731
+ ],
[
- 21,
- 53.88
+ -8.2093971093184,
+ 52.10512489114057
],
[
- 21,
- 56.45
+ -8.207092037006792,
+ 52.12494181389489
],
[
- 26.85,
- 56.45
+ -8.227837687811258,
+ 52.143052434929714
],
[
- 26.85,
- 53.88
+ -8.222766528725723,
+ 52.16454923557058
],
[
- 21,
- 53.88
- ]
- ]
- ]
- },
- {
- "name": "Locator Overlay",
- "type": "tms",
- "description": "Shows major features to help orient you.",
- "template": "http://{switch:a,b,c}.tiles.mapbox.com/v3/openstreetmap.map-btyhiati/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 16
- ],
- "terms_url": "http://www.mapbox.com/about/maps/",
- "terms_text": "Terms & Feedback",
- "default": true,
- "overlay": true
- },
- {
- "name": "MapBox Satellite",
- "type": "tms",
- "description": "Satellite and aerial imagery.",
- "template": "http://{switch:a,b,c}.tiles.mapbox.com/v3/openstreetmap.map-4wvf9l0l/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 16
- ],
- "terms_url": "http://www.mapbox.com/about/maps/",
- "terms_text": "Terms & Feedback",
- "default": 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": "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": [
- [
+ -8.30298304516965,
+ 52.1829264222872
+ ],
[
- -9,
- 49.8
+ -8.427456949996438,
+ 52.17783811526099
],
[
- -9,
- 61.1
+ -8.46710419375608,
+ 52.169921813849676
],
[
- 1.9,
- 61.1
+ -8.509978538751975,
+ 52.18405707812542
],
[
- 1.9,
- 49.8
+ -8.530263175094117,
+ 52.16511480067495
],
[
- -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": [
- [
+ -8.574981577939297,
+ 52.18066502436804
+ ],
[
- -6.4585407,
- 49.9044128
+ -8.587889982884295,
+ 52.16963906274442
],
[
- -6.3872009,
- 49.9841116
+ -8.642289689438227,
+ 52.18829678149147
],
[
- -6.2296827,
- 49.9896159
+ -8.719279104645906,
+ 52.15804472022032
],
[
- -6.2171269,
- 49.8680087
+ -8.698533453841442,
+ 52.13541291452849
],
[
- -6.4551164,
- 49.8591793
- ]
- ],
- [
+ -8.740946784375014,
+ 52.10823956240069
+ ],
[
- -1.4495137,
- 60.8634056
+ -8.77460084012448,
+ 52.05951253229793
],
[
- -0.7167114,
- 60.8545122
+ -8.803183736788409,
+ 52.03768144571248
],
[
- -0.7349744,
- 60.4359756
+ -8.86818677597573,
+ 52.03286015807593
],
[
- -0.6938826,
- 60.4168218
+ -8.870491848287335,
+ 52.01839317543363
],
[
- -0.7258429,
- 60.3942735
+ -8.844214023935015,
+ 51.991148511559096
],
[
- -0.7395401,
- 60.0484714
+ -8.79811257770287,
+ 51.964455373040394
],
[
- -0.9267357,
- 60.0461918
+ -8.782899100446263,
+ 51.931777239822054
],
[
- -0.9381501,
- 59.8266157
+ -8.835915763613228,
+ 51.9292188160068
],
[
- -1.4586452,
- 59.831205
+ -8.838681850387156,
+ 51.90277322850554
],
[
- -1.4455187,
- 60.0535999
+ -8.802261707863764,
+ 51.89367006943167
],
[
- -1.463211,
- 60.0535999
+ -8.792580404155013,
+ 51.85695425263326
],
[
- -1.4643524,
- 60.0630002
+ -8.765841565340368,
+ 51.82476769939557
],
[
- -1.5716475,
- 60.0638546
+ -8.758926348405547,
+ 51.80054140901511
],
[
- -1.5693646,
- 60.1790005
+ -8.79811257770287,
+ 51.78628456602828
],
[
- -1.643558,
- 60.1807033
+ -8.832227647914657,
+ 51.79626482935233
],
[
- -1.643558,
- 60.1892162
+ -8.836837792537873,
+ 51.77687258059678
],
[
- -1.8216221,
- 60.1894999
+ -8.885705325543944,
+ 51.746055989869106
],
[
- -1.8204807,
- 60.3615507
+ -8.859888515653944,
+ 51.72435763090916
],
[
- -1.8415973,
- 60.3697345
+ -8.807332866949299,
+ 51.71093369500414
],
[
- -1.8216221,
- 60.3832755
+ -8.678248817499297,
+ 51.693505197270746
],
[
- -1.8179852,
- 60.5934321
+ -8.60540853245251,
+ 51.67835695335278
],
[
- -1.453168,
- 60.5934321
+ -8.595266214281438,
+ 51.69264788483154
]
],
[
[
- -4.9089213,
- 54.4242078
+ -7.138279151048154,
+ 55.06131559970097
],
[
- -4.282598,
- 54.4429861
+ -7.117994514706011,
+ 54.99631329558348
],
[
- -4.2535417,
- 54.029769
+ -7.070049010624583,
+ 54.98784996056705
],
[
- -4.8766366,
- 54.0221831
- ]
- ],
- [
+ -7.076503213097081,
+ 54.93332450204895
+ ],
[
- -5.8667408,
- 59.1444603
+ -7.025791622241725,
+ 54.91159959910791
],
[
- -5.7759966,
- 59.1470945
+ -7.007351043748867,
+ 54.87872502112528
],
[
- -5.7720016,
- 59.1014052
+ -7.024869593317081,
+ 54.8511320998998
],
[
- -5.8621751,
- 59.0990605
- ]
- ],
- [
+ -6.990754523105296,
+ 54.81661438893913
+ ],
[
- -1.7065887,
- 59.5703599
+ -7.051608432131725,
+ 54.80598761598125
],
[
- -1.5579165,
- 59.5693481
+ -7.115228427932084,
+ 54.80651902101645
],
[
- -1.5564897,
- 59.4965695
+ -7.170550163410654,
+ 54.84847793920564
],
[
- -1.7054472,
- 59.4975834
- ]
- ],
- [
+ -7.199133060074584,
+ 54.84316909395457
+ ],
[
- -7.6865827,
- 58.2940975
+ -7.222183783190655,
+ 54.85803210052931
],
[
- -7.5330594,
- 58.3006957
+ -7.2111194360949415,
+ 54.862808332627324
],
[
- -7.5256401,
- 58.2646905
+ -7.212041465019584,
+ 54.882438010878076
],
[
- -7.6797341,
- 58.2577853
- ]
- ],
- [
+ -7.279349576518514,
+ 54.880846771447125
+ ],
[
- -4.5338281,
- 59.0359871
+ -7.273817402970655,
+ 54.91530955931841
],
[
- -4.481322,
- 59.0371616
+ -7.3033223285592275,
+ 54.915839525718205
],
[
- -4.4796099,
- 59.0186583
+ -7.363254208661015,
+ 54.90894941815292
],
[
- -4.5332574,
- 59.0180707
- ]
- ],
- [
+ -7.385382902852443,
+ 54.91636948513913
+ ],
[
- -8.6710698,
- 57.8769896
+ -7.391837105324943,
+ 54.93438395336098
],
[
- -8.4673234,
- 57.8897332
+ -7.429640291235302,
+ 54.95291983389722
],
[
- -8.4467775,
- 57.7907
+ -7.420420001988872,
+ 54.99208185118366
],
[
- -8.6510947,
- 57.7779213
+ -7.410277683817801,
+ 55.03437621938347
+ ],
+ [
+ -7.3577220351131585,
+ 55.057619110599035
+ ],
+ [
+ -7.265519142648871,
+ 55.07557028899173
+ ],
+ [
+ -7.138279151048154,
+ 55.06131559970097
]
],
[
[
- -5.2395519,
- 50.3530581
+ -7.190498776293322,
+ 52.26144368927652
],
[
- -5.7920073,
- 50.3384899
+ -7.156844720543858,
+ 52.28443443581867
],
[
- -5.760047,
- 49.9317027
+ -7.132871968503143,
+ 52.27343421670601
],
[
- -4.6551363,
- 49.9581461
+ -7.113278853854483,
+ 52.26779201951648
],
[
- -4.677965,
- 50.2860073
+ -7.098295883829036,
+ 52.27230583471742
],
[
- -4.244219,
- 50.2801723
+ -7.089767116276089,
+ 52.25509445009032
],
[
- -4.2487848,
- 50.2042525
+ -7.07109603055207,
+ 52.259186286149074
],
[
- -3.3812929,
- 50.2042525
+ -7.033984366335195,
+ 52.257352061495865
],
[
- -3.4223846,
- 50.5188201
+ -7.027530163862696,
+ 52.250720000975015
],
[
- -3.1164796,
- 50.5246258
+ -7.034675888028678,
+ 52.247756419376
],
[
- -3.1210453,
- 50.6579592
+ -7.031218279561267,
+ 52.24013487190721
],
[
- -2.6736357,
- 50.6619495
+ -7.034214873566356,
+ 52.23222966213934
],
[
- -2.5953453,
- 50.6394325
+ -7.050580886978767,
+ 52.2296884028405
],
[
- -2.5905026,
- 50.5728419
+ -7.062567262999124,
+ 52.21980434486687
],
[
- -2.4791203,
- 50.5733545
+ -7.076858711331088,
+ 52.216132562953725
],
[
- -2.4758919,
- 50.5066704
+ -7.084926464421715,
+ 52.22065163604718
],
[
- -2.3967943,
- 50.5056438
+ -7.084465449959392,
+ 52.22785295843095
],
[
- -2.401637,
- 50.5723293
+ -7.101292477834124,
+ 52.221498911062525
],
[
- -1.0400296,
- 50.5718167
+ -7.105211100763858,
+ 52.21726237433474
],
[
- -1.0335726,
- 50.7059289
+ -7.111665303236357,
+ 52.21796849185403
],
[
- -0.549302,
- 50.7038843
+ -7.107977187537785,
+ 52.21104805609072
],
[
- -0.5460736,
- 50.7886618
+ -7.117773744862115,
+ 52.20928246619701
],
[
- -0.0924734,
- 50.7856002
+ -7.129760120882472,
+ 52.21690931136535
],
[
- -0.0876307,
- 50.7181949
+ -7.14497359813908,
+ 52.21782726924826
],
[
- 0.4789659,
- 50.7120623
+ -7.150505771686938,
+ 52.22375823207553
],
[
- 0.487037,
- 50.8182467
+ -7.158112510315241,
+ 52.22262858593765
],
[
- 0.9761503,
- 50.8049868
+ -7.158804032008724,
+ 52.22700580464912
],
[
- 0.9922927,
- 51.0126311
+ -7.158573524777563,
+ 52.23180612902503
],
[
- 1.4491213,
- 51.0004424
+ -7.167563306792832,
+ 52.23985256723076
],
[
- 1.4781775,
- 51.4090372
+ -7.16733279956167,
+ 52.244580933687786
],
[
- 1.0229632,
- 51.4271576
+ -7.172519212262786,
+ 52.24676851484933
],
[
- 1.035877,
- 51.7640881
+ -7.177590371348324,
+ 52.25114335361416
],
[
- 1.6105448,
- 51.7500992
- ],
+ -7.190498776293322,
+ 52.26144368927652
+ ]
+ ]
+ ],
+ "terms_url": "http://www.eea.europa.eu/data-and-maps/data/urban-atlas",
+ "terms_text": "EEA GMES Urban Atlas"
+ },
+ {
+ "name": "Kanton Aargau 25cm (AGIS 2011)",
+ "type": "tms",
+ "template": "http://tiles.poole.ch/AGIS/OF2011/{zoom}/{x}/{y}.png",
+ "scaleExtent": [
+ 14,
+ 19
+ ],
+ "polygon": [
+ [
[
- 1.646058,
- 52.1560003
+ 7.7,
+ 47.12
],
[
- 1.7267698,
- 52.1540195
+ 7.7,
+ 47.63
],
[
- 1.749369,
- 52.4481811
+ 8.5,
+ 47.63
],
[
- 1.7870672,
- 52.4811624
+ 8.5,
+ 47.12
],
[
- 1.759102,
- 52.522505
- ],
+ 7.7,
+ 47.12
+ ]
+ ]
+ ],
+ "terms_text": "AGIS OF2011"
+ },
+ {
+ "name": "Katastrálna mapa Slovenska (KaPor, 2010-04)",
+ "type": "tms",
+ "template": "http://www.freemap.sk/tms/kapor2/{zoom}/{x}/{y}.jpg",
+ "polygon": [
+ [
[
- 1.7933451,
- 52.9602749
+ 19.83682,
+ 49.25529
],
[
- 0.3798147,
- 52.9958468
+ 19.80075,
+ 49.42385
],
[
- 0.3895238,
- 53.2511239
+ 19.60437,
+ 49.48058
],
[
- 0.3478614,
- 53.2511239
+ 19.49179,
+ 49.63961
],
[
- 0.3238912,
- 53.282186
+ 19.21831,
+ 49.52604
],
[
- 0.3461492,
- 53.6538501
+ 19.16778,
+ 49.42521
],
[
- 0.128487,
- 53.6575466
+ 19.00308,
+ 49.42236
],
[
- 0.116582,
- 53.6674703
+ 18.97611,
+ 49.5308
],
[
- 0.1350586,
- 54.0655731
+ 18.54685,
+ 49.51425
],
[
- -0.0609831,
- 54.065908
+ 18.31432,
+ 49.33818
],
[
- -0.0414249,
- 54.4709448
+ 18.15913,
+ 49.2961
],
[
- -0.5662701,
- 54.4771794
+ 18.05564,
+ 49.11134
],
[
- -0.5592078,
- 54.6565127
+ 17.56396,
+ 48.84938
],
[
- -1.1665638,
- 54.6623485
+ 17.17929,
+ 48.88816
],
[
- -1.1637389,
- 54.842611
+ 17.058,
+ 48.81105
],
[
- -1.3316194,
- 54.843909
+ 16.90426,
+ 48.61947
],
[
- -1.3257065,
- 55.2470842
+ 16.79685,
+ 48.38561
],
[
- -1.529453,
- 55.2487108
+ 17.06762,
+ 48.01116
],
[
- -1.524178,
- 55.6540122
+ 17.32787,
+ 47.97749
],
[
- -1.7638798,
- 55.6540122
+ 17.51699,
+ 47.82535
],
[
- -1.7733693,
- 55.9719116
+ 17.74776,
+ 47.73093
],
[
- -2.1607858,
- 55.9682981
+ 18.29515,
+ 47.72075
],
[
- -2.1543289,
- 56.0621387
+ 18.67959,
+ 47.75541
],
[
- -2.4578051,
- 56.0585337
+ 18.89755,
+ 47.81203
],
[
- -2.4190635,
- 56.641717
+ 18.79463,
+ 47.88245
],
[
- -2.0962164,
- 56.641717
+ 18.84318,
+ 48.04046
],
[
- -2.0833025,
- 57.0021322
+ 19.46212,
+ 48.05333
],
[
- -1.9283359,
- 57.0126802
+ 19.62064,
+ 48.22938
],
[
- -1.9180966,
- 57.3590895
+ 19.89585,
+ 48.09387
],
[
- -1.7502161,
- 57.3625721
+ 20.33766,
+ 48.2643
],
[
- -1.7695869,
- 57.7608634
+ 20.55395,
+ 48.52358
],
[
- -3.6937554,
- 57.7574187
+ 20.82335,
+ 48.55714
],
[
- -3.7066693,
- 57.9806386
+ 21.10271,
+ 48.47096
],
[
- -3.5969013,
- 57.9772149
+ 21.45863,
+ 48.55513
],
[
- -3.6033582,
- 58.1207277
+ 21.74536,
+ 48.31435
],
[
- -3.0222335,
- 58.1309566
+ 22.15293,
+ 48.37179
],
[
- -3.0286905,
- 58.5410788
+ 22.61255,
+ 49.08914
],
[
- -2.8478961,
- 58.530968
+ 22.09997,
+ 49.23814
],
[
- -2.86081,
- 58.8430508
+ 21.9686,
+ 49.36363
],
[
- -2.679624,
- 58.8414991
+ 21.6244,
+ 49.46989
],
[
- -2.6841897,
- 58.885175
+ 21.06873,
+ 49.46402
],
[
- -2.6339665,
- 58.9052239
+ 20.94336,
+ 49.31088
],
[
- -2.679624,
- 58.9335083
+ 20.73052,
+ 49.44006
],
[
- -2.6887555,
- 59.0229231
+ 20.22804,
+ 49.41714
],
[
- -2.3668703,
- 59.0229231
+ 20.05234,
+ 49.23052
],
[
- -2.3702946,
- 59.2652861
+ 19.83682,
+ 49.25529
+ ]
+ ]
+ ],
+ "terms_url": "http://wiki.freemap.sk/KatasterPortal",
+ "terms_text": "Permisssion by UGKK"
+ },
+ {
+ "name": "Katastrálna mapa Slovenska (KaPor, 2011-05)",
+ "type": "tms",
+ "template": "http://www.freemap.sk/tms/kapor2_201105/{zoom}/{x}/{y}.jpg",
+ "polygon": [
+ [
+ [
+ 19.83682,
+ 49.25529
],
[
- -2.3429001,
- 59.2821989
+ 19.80075,
+ 49.42385
],
[
- -2.3714361,
- 59.2996861
+ 19.60437,
+ 49.48058
],
[
- -2.3737189,
- 59.3707083
+ 19.49179,
+ 49.63961
],
[
- -2.3429001,
- 59.385825
+ 19.21831,
+ 49.52604
],
[
- -2.3725775,
- 59.400354
+ 19.16778,
+ 49.42521
],
[
- -2.3714361,
- 59.4259098
+ 19.00308,
+ 49.42236
],
[
- -3.0734196,
- 59.4230067
+ 18.97611,
+ 49.5308
],
[
- -3.0711368,
- 59.3433649
+ 18.54685,
+ 49.51425
],
[
- -3.103097,
- 59.3311405
+ 18.31432,
+ 49.33818
],
[
- -3.0745611,
- 59.3136695
+ 18.15913,
+ 49.2961
],
[
- -3.0722782,
- 59.232603
- ],
- [
- -3.3850319,
- 59.1484167
- ],
- [
- -3.3747589,
- 58.9352753
+ 18.05564,
+ 49.11134
],
[
- -3.5653789,
- 58.9323303
+ 17.56396,
+ 48.84938
],
[
- -3.554829,
- 58.69759
+ 17.17929,
+ 48.88816
],
[
- -5.2808579,
- 58.6667732
+ 17.058,
+ 48.81105
],
[
- -5.2534159,
- 58.3514125
+ 16.90426,
+ 48.61947
],
[
- -5.5068508,
- 58.3437887
+ 16.79685,
+ 48.38561
],
[
- -5.4761804,
- 58.0323557
+ 17.06762,
+ 48.01116
],
[
- -5.8974958,
- 58.0212436
+ 17.32787,
+ 47.97749
],
[
- -5.8522972,
- 57.6171758
+ 17.51699,
+ 47.82535
],
[
- -6.1396311,
- 57.6137174
+ 17.74776,
+ 47.73093
],
[
- -6.1541592,
- 57.7423183
+ 18.29515,
+ 47.72075
],
[
- -6.2913692,
- 57.7380102
+ 18.67959,
+ 47.75541
],
[
- -6.3365678,
- 58.1398784
+ 18.89755,
+ 47.81203
],
[
- -6.1121891,
- 58.1466944
+ 18.79463,
+ 47.88245
],
[
- -6.1473778,
- 58.5106285
+ 18.84318,
+ 48.04046
],
[
- -6.2934817,
- 58.5416182
+ 19.46212,
+ 48.05333
],
[
- -6.8413713,
- 58.2977321
+ 19.62064,
+ 48.22938
],
[
- -7.0057382,
- 58.2929331
+ 19.89585,
+ 48.09387
],
[
- -7.1016189,
- 58.2064403
+ 20.33766,
+ 48.2643
],
[
- -7.2573132,
- 58.1793148
+ 20.55395,
+ 48.52358
],
[
- -7.2531092,
- 58.1004928
+ 20.82335,
+ 48.55714
],
[
- -7.4070698,
- 58.0905566
+ 21.10271,
+ 48.47096
],
[
- -7.391347,
- 57.7911354
+ 21.45863,
+ 48.55513
],
[
- -7.790991,
- 57.7733151
+ 21.74536,
+ 48.31435
],
[
- -7.7624215,
- 57.5444165
+ 22.15293,
+ 48.37179
],
[
- -7.698501,
- 57.1453194
+ 22.61255,
+ 49.08914
],
[
- -7.7943817,
- 57.1304547
+ 22.09997,
+ 49.23814
],
[
- -7.716764,
- 56.7368628
+ 21.9686,
+ 49.36363
],
[
- -7.0122067,
- 56.7654359
+ 21.6244,
+ 49.46989
],
[
- -6.979922,
- 56.5453858
+ 21.06873,
+ 49.46402
],
[
- -7.0638622,
- 56.5453858
+ 20.94336,
+ 49.31088
],
[
- -7.0444914,
- 56.3562587
+ 20.73052,
+ 49.44006
],
[
- -6.500676,
- 56.3812917
+ 20.22804,
+ 49.41714
],
[
- -6.4491433,
- 55.9793649
+ 20.05234,
+ 49.23052
],
[
- -6.563287,
- 55.9691456
- ],
+ 19.83682,
+ 49.25529
+ ]
+ ]
+ ],
+ "terms_url": "http://wiki.freemap.sk/KatasterPortal",
+ "terms_text": "Permisssion by UGKK"
+ },
+ {
+ "name": "Lithuania - ORT10LT",
+ "type": "tms",
+ "template": "http://mapproxy.openmap.lt/ort10lt/g/{z}/{x}/{y}.jpeg",
+ "scaleExtent": [
+ 4,
+ 18
+ ],
+ "polygon": [
+ [
[
- -6.5393742,
- 55.7030135
+ 21,
+ 53.88
],
[
- -6.5595521,
- 55.6907321
+ 21,
+ 56.45
],
[
- -6.5345315,
- 55.6761713
+ 26.85,
+ 56.45
],
[
- -6.5216176,
- 55.5704434
+ 26.85,
+ 53.88
],
[
- -5.8912587,
- 55.5923416
- ],
+ 21,
+ 53.88
+ ]
+ ]
+ ]
+ },
+ {
+ "name": "Locator Overlay",
+ "type": "tms",
+ "description": "Shows major features to help orient you.",
+ "template": "http://{switch:a,b,c}.tiles.mapbox.com/v3/openstreetmap.map-btyhiati/{zoom}/{x}/{y}.png",
+ "scaleExtent": [
+ 0,
+ 16
+ ],
+ "terms_url": "http://www.mapbox.com/about/maps/",
+ "terms_text": "Terms & Feedback",
+ "default": true,
+ "overlay": true
+ },
+ {
+ "name": "MapBox Satellite",
+ "type": "tms",
+ "description": "Satellite and aerial imagery.",
+ "template": "http://{switch:a,b,c}.tiles.mapbox.com/v3/openstreetmap.map-4wvf9l0l/{zoom}/{x}/{y}.png",
+ "scaleExtent": [
+ 0,
+ 16
+ ],
+ "terms_url": "http://www.mapbox.com/about/maps/",
+ "terms_text": "Terms & Feedback",
+ "default": 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": "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": [
+ [
[
- -5.8560127,
- 55.2320733
+ -9,
+ 49.8
],
[
- -5.2293639,
- 55.2515958
+ -9,
+ 61.1
],
[
- -5.1837064,
- 54.6254139
+ 1.9,
+ 61.1
],
[
- -3.6655956,
- 54.6518373
+ 1.9,
+ 49.8
],
[
- -3.6496155,
- 54.4320023
- ],
+ -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": [
+ [
[
- -3.5400375,
- 54.4306744
+ -6.4585407,
+ 49.9044128
],
[
- -3.530906,
- 54.0290181
+ -6.3872009,
+ 49.9841116
],
[
- -3.0697656,
- 54.030359
+ -6.2296827,
+ 49.9896159
],
[
- -3.0675737,
- 53.8221388
+ -6.2171269,
+ 49.8680087
],
[
- -3.0804876,
- 53.7739911
- ],
+ -6.4551164,
+ 49.8591793
+ ]
+ ],
+ [
[
- -3.0619239,
- 53.7477488
+ -1.4495137,
+ 60.8634056
],
[
- -3.0611168,
- 53.6737049
+ -0.7167114,
+ 60.8545122
],
[
- -3.2144691,
- 53.6708361
+ -0.7349744,
+ 60.4359756
],
[
- -3.2057699,
- 53.4226163
+ -0.6938826,
+ 60.4168218
],
[
- -3.2799632,
- 53.355224
+ -0.7258429,
+ 60.3942735
],
[
- -3.2896655,
- 53.3608441
+ -0.7395401,
+ 60.0484714
],
[
- -3.3327547,
- 53.364931
+ -0.9267357,
+ 60.0461918
],
[
- -3.3761293,
- 53.3540318
+ -0.9381501,
+ 59.8266157
],
[
- -4.0888976,
- 53.3433102
+ -1.4586452,
+ 59.831205
],
[
- -4.0945474,
- 53.4612036
+ -1.4455187,
+ 60.0535999
],
[
- -4.697412,
- 53.4448624
+ -1.463211,
+ 60.0535999
],
[
- -4.6882805,
- 53.3318598
+ -1.4643524,
+ 60.0630002
],
[
- -4.7202407,
- 53.2895771
+ -1.5716475,
+ 60.0638546
],
[
- -4.6837148,
- 53.2486184
+ -1.5693646,
+ 60.1790005
],
[
- -4.6768661,
- 53.1542644
+ -1.643558,
+ 60.1807033
],
[
- -4.8480816,
- 53.1446807
+ -1.643558,
+ 60.1892162
],
[
- -4.8178336,
- 52.7440299
+ -1.8216221,
+ 60.1894999
],
[
- -4.2545751,
- 52.7558939
+ -1.8204807,
+ 60.3615507
],
[
- -4.228876,
- 52.254876
+ -1.8415973,
+ 60.3697345
],
[
- -4.2607571,
- 52.2536408
+ -1.8216221,
+ 60.3832755
],
[
- -4.2724603,
- 52.2432637
+ -1.8179852,
+ 60.5934321
],
[
- -4.8136263,
- 52.230095
- ],
+ -1.453168,
+ 60.5934321
+ ]
+ ],
+ [
[
- -4.8079191,
- 52.1138892
+ -4.9089213,
+ 54.4242078
],
[
- -5.3889104,
- 52.0991668
+ -4.282598,
+ 54.4429861
],
[
- -5.3717888,
- 51.9129667
+ -4.2535417,
+ 54.029769
],
[
- -5.4208706,
- 51.9101502
- ],
+ -4.8766366,
+ 54.0221831
+ ]
+ ],
+ [
[
- -5.414022,
- 51.8453218
+ -5.8667408,
+ 59.1444603
],
[
- -5.3683645,
- 51.8474373
+ -5.7759966,
+ 59.1470945
],
[
- -5.3466772,
- 51.5595332
+ -5.7720016,
+ 59.1014052
],
[
- -4.773676,
- 51.5758518
- ],
+ -5.8621751,
+ 59.0990605
+ ]
+ ],
+ [
[
- -4.7656859,
- 51.4885146
+ -1.7065887,
+ 59.5703599
],
[
- -4.1915432,
- 51.4970427
+ -1.5579165,
+ 59.5693481
],
[
- -4.1869775,
- 51.4344663
+ -1.5564897,
+ 59.4965695
],
[
- -3.6151177,
- 51.4444274
- ],
+ -1.7054472,
+ 59.4975834
+ ]
+ ],
+ [
[
- -3.6105519,
- 51.3746543
+ -7.6865827,
+ 58.2940975
],
[
- -3.1494115,
- 51.3789292
+ -7.5330594,
+ 58.3006957
],
[
- -3.1494115,
- 51.2919281
+ -7.5256401,
+ 58.2646905
],
[
- -4.3038735,
- 51.2745907
- ],
+ -7.6797341,
+ 58.2577853
+ ]
+ ],
+ [
[
- -4.2861169,
- 51.0508721
+ -4.5338281,
+ 59.0359871
],
[
- -4.8543277,
- 51.0366633
+ -4.481322,
+ 59.0371616
],
[
- -4.8372201,
- 50.7212787
+ -4.4796099,
+ 59.0186583
],
[
- -5.2618345,
- 50.7082694
+ -4.5332574,
+ 59.0180707
]
],
[
[
- -2.1502671,
- 60.171318
+ -8.6710698,
+ 57.8769896
],
[
- -2.0030218,
- 60.1696146
+ -8.4673234,
+ 57.8897332
],
[
- -2.0013096,
- 60.0997023
+ -8.4467775,
+ 57.7907
],
[
- -2.148555,
- 60.1011247
+ -8.6510947,
+ 57.7779213
]
],
[
[
- -6.2086011,
- 59.1163488
+ -5.2395519,
+ 50.3530581
],
[
- -6.1229934,
- 59.1166418
+ -5.7920073,
+ 50.3384899
],
[
- -6.121852,
- 59.0714985
+ -5.760047,
+ 49.9317027
],
[
- -6.2097426,
- 59.0714985
- ]
- ],
- [
- [
- -4.4159559,
- 59.0889036
+ -4.6551363,
+ 49.9581461
],
[
- -4.4212022,
- 59.0770848
+ -4.677965,
+ 50.2860073
],
[
- -4.3971904,
- 59.0779143
+ -4.244219,
+ 50.2801723
],
[
- -4.3913388,
- 59.0897328
- ]
- ]
- ],
- "terms_url": "http://geo.nls.uk/maps/",
- "terms_text": "National Library of Scotland Historic Maps"
- },
- {
- "name": "NLS - OS 1:25k 1st Series 1937-61",
- "type": "tms",
- "template": "http://geo.nls.uk/mapdata2/os/25000/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 5,
- 16
- ],
- "polygon": [
- [
- [
- -4.7157244,
- 54.6796556
+ -4.2487848,
+ 50.2042525
],
[
- -4.6850662,
- 54.6800268
+ -3.3812929,
+ 50.2042525
],
[
- -4.6835779,
- 54.6623245
+ -3.4223846,
+ 50.5188201
],
[
- -4.7148782,
- 54.6615818
- ]
- ],
- [
- [
- -3.7085748,
- 58.3371151
+ -3.1164796,
+ 50.5246258
],
[
- -3.5405937,
- 58.3380684
+ -3.1210453,
+ 50.6579592
],
[
- -3.5315137,
- 58.1608002
+ -2.6736357,
+ 50.6619495
],
[
- -3.3608086,
- 58.1622372
+ -2.5953453,
+ 50.6394325
],
[
- -3.3653486,
- 58.252173
+ -2.5905026,
+ 50.5728419
],
[
- -3.1610473,
- 58.2536063
+ -2.4791203,
+ 50.5733545
],
[
- -3.1610473,
- 58.3261509
+ -2.4758919,
+ 50.5066704
],
[
- -3.0275704,
- 58.3271045
+ -2.3967943,
+ 50.5056438
],
[
- -3.0366505,
- 58.6139001
+ -2.401637,
+ 50.5723293
],
[
- -3.0021463,
- 58.614373
+ -1.0400296,
+ 50.5718167
],
[
- -3.0030543,
- 58.7036341
+ -1.0335726,
+ 50.7059289
],
[
- -3.4180129,
- 58.7003322
+ -0.549302,
+ 50.7038843
],
[
- -3.4171049,
- 58.6290293
+ -0.5460736,
+ 50.7886618
],
[
- -3.7240109,
- 58.6266658
+ -0.0924734,
+ 50.7856002
],
[
- -3.7231029,
- 58.606806
+ -0.0876307,
+ 50.7181949
],
[
- -4.2361262,
- 58.5992374
+ 0.4789659,
+ 50.7120623
],
[
- -4.2334022,
- 58.5092347
+ 0.487037,
+ 50.8182467
],
[
- -3.88836,
- 58.5144516
+ 0.9761503,
+ 50.8049868
],
[
- -3.8829119,
- 58.4261327
+ 0.9922927,
+ 51.0126311
],
[
- -3.7158389,
- 58.4270836
- ]
- ],
- [
- [
- -6.46676,
- 49.9943621
+ 1.4491213,
+ 51.0004424
],
[
- -6.1889102,
- 50.004868
+ 1.4781775,
+ 51.4090372
],
[
- -6.1789222,
- 49.8967815
+ 1.0229632,
+ 51.4271576
],
[
- -6.3169391,
- 49.8915171
+ 1.035877,
+ 51.7640881
],
[
- -6.312399,
- 49.8200979
+ 1.6105448,
+ 51.7500992
],
[
- -6.4504159,
- 49.8159968
- ]
- ],
- [
+ 1.646058,
+ 52.1560003
+ ],
[
- -5.6453263,
- 50.2029809
+ 1.7267698,
+ 52.1540195
],
[
- -5.7801329,
- 50.2014076
+ 1.749369,
+ 52.4481811
],
[
- -5.7637888,
- 50.0197267
+ 1.7870672,
+ 52.4811624
],
[
- -5.3479221,
- 50.0290604
+ 1.759102,
+ 52.522505
],
[
- -5.3388421,
- 49.9414854
+ 1.7933451,
+ 52.9602749
],
[
- -5.024672,
- 49.9473287
+ 0.3798147,
+ 52.9958468
],
[
- -5.0355681,
- 50.0383923
+ 0.3895238,
+ 53.2511239
],
[
- -5.0010639,
- 50.0453901
+ 0.3478614,
+ 53.2511239
],
[
- -4.9974319,
- 50.1304478
+ 0.3238912,
+ 53.282186
],
[
- -4.855783,
- 50.13394
+ 0.3461492,
+ 53.6538501
],
[
- -4.861231,
- 50.206057
+ 0.128487,
+ 53.6575466
],
[
- -4.6546085,
- 50.2140172
+ 0.116582,
+ 53.6674703
],
[
- -4.6558926,
- 50.3018616
+ 0.1350586,
+ 54.0655731
],
[
- -4.5184924,
- 50.3026818
+ -0.0609831,
+ 54.065908
],
[
- -4.51464,
- 50.325642
+ -0.0414249,
+ 54.4709448
],
[
- -4.2488284,
- 50.3264618
+ -0.5662701,
+ 54.4771794
],
[
- -4.2488284,
- 50.3100631
+ -0.5592078,
+ 54.6565127
],
[
- -4.10886,
- 50.3141633
+ -1.1665638,
+ 54.6623485
],
[
- -4.1062917,
- 50.2411267
+ -1.1637389,
+ 54.842611
],
[
- -3.9648088,
- 50.2432047
+ -1.3316194,
+ 54.843909
],
[
- -3.9640778,
- 50.2254158
+ -1.3257065,
+ 55.2470842
],
[
- -3.8522287,
- 50.2273626
+ -1.529453,
+ 55.2487108
],
[
- -3.8503757,
- 50.1552563
+ -1.524178,
+ 55.6540122
],
[
- -3.6921809,
- 50.1572487
+ -1.7638798,
+ 55.6540122
],
[
- -3.5414602,
- 50.1602198
+ -1.7733693,
+ 55.9719116
],
[
- -3.5465781,
- 50.3226814
+ -2.1607858,
+ 55.9682981
],
[
- -3.4068012,
- 50.3241013
+ -2.1543289,
+ 56.0621387
],
[
- -3.4165761,
- 50.5892711
+ -2.4578051,
+ 56.0585337
],
[
- -3.2746691,
- 50.5962721
+ -2.4190635,
+ 56.641717
],
[
- -3.2749172,
- 50.6106323
+ -2.0962164,
+ 56.641717
],
[
- -2.9971742,
- 50.613972
+ -2.0833025,
+ 57.0021322
],
[
- -2.9896008,
- 50.688537
+ -1.9283359,
+ 57.0126802
],
[
- -2.7120266,
- 50.690565
+ -1.9180966,
+ 57.3590895
],
[
- -2.710908,
- 50.6195964
+ -1.7502161,
+ 57.3625721
],
[
- -2.5695473,
- 50.6157538
+ -1.7695869,
+ 57.7608634
],
[
- -2.5651019,
- 50.5134083
+ -3.6937554,
+ 57.7574187
],
[
- -2.4014463,
- 50.513379
+ -3.7066693,
+ 57.9806386
],
[
- -2.3940583,
- 50.6160348
+ -3.5969013,
+ 57.9772149
],
[
- -2.2894123,
- 50.6147436
+ -3.6033582,
+ 58.1207277
],
[
- -2.2876184,
- 50.6008549
+ -3.0222335,
+ 58.1309566
],
[
- -2.1477855,
- 50.6048506
+ -3.0286905,
+ 58.5410788
],
[
- -2.1451013,
- 50.5325437
+ -2.8478961,
+ 58.530968
],
[
- -1.9335117,
- 50.5347477
+ -2.86081,
+ 58.8430508
],
[
- -1.9362139,
- 50.6170445
+ -2.679624,
+ 58.8414991
],
[
- -1.8573025,
- 50.6228094
+ -2.6841897,
+ 58.885175
],
[
- -1.8554865,
- 50.709139
+ -2.6339665,
+ 58.9052239
],
[
- -1.6066929,
- 50.709139
+ -2.679624,
+ 58.9335083
],
[
- -1.6085089,
- 50.6239615
+ -2.6887555,
+ 59.0229231
],
[
- -1.4450678,
- 50.6228094
+ -2.3668703,
+ 59.0229231
],
[
- -1.4432518,
- 50.5317039
+ -2.3702946,
+ 59.2652861
],
[
- -1.1545059,
- 50.5293951
+ -2.3429001,
+ 59.2821989
],
[
- -1.1472419,
- 50.6170485
+ -2.3714361,
+ 59.2996861
],
[
- -1.011041,
- 50.6205051
+ -2.3737189,
+ 59.3707083
],
[
- -1.011041,
- 50.7056889
+ -2.3429001,
+ 59.385825
],
[
- -0.704135,
- 50.7045388
+ -2.3725775,
+ 59.400354
],
[
- -0.700503,
- 50.7769401
+ -2.3714361,
+ 59.4259098
],
[
- -0.5860943,
- 50.7723465
+ -3.0734196,
+ 59.4230067
],
[
- -0.5879103,
- 50.7907181
+ -3.0711368,
+ 59.3433649
],
[
- -0.0149586,
- 50.7798108
+ -3.103097,
+ 59.3311405
],
[
- -0.0185906,
- 50.7625836
+ -3.0745611,
+ 59.3136695
],
[
- 0.0967261,
- 50.7620093
+ -3.0722782,
+ 59.232603
],
[
- 0.0921861,
- 50.6913106
+ -3.3850319,
+ 59.1484167
],
[
- 0.3046595,
- 50.6890096
+ -3.3747589,
+ 58.9352753
],
[
- 0.3101075,
- 50.7757917
+ -3.5653789,
+ 58.9323303
],
[
- 0.5511831,
- 50.7726336
+ -3.554829,
+ 58.69759
],
[
- 0.5529991,
- 50.8432096
+ -5.2808579,
+ 58.6667732
],
[
- 0.695556,
- 50.8403428
+ -5.2534159,
+ 58.3514125
],
[
- 0.696464,
- 50.8592608
+ -5.5068508,
+ 58.3437887
],
[
- 0.9852099,
- 50.8523824
+ -5.4761804,
+ 58.0323557
],
[
- 0.9906579,
- 50.9417226
+ -5.8974958,
+ 58.0212436
],
[
- 1.0160821,
- 50.9411504
+ -5.8522972,
+ 57.6171758
],
[
- 1.0215301,
- 51.0303204
+ -6.1396311,
+ 57.6137174
],
[
- 1.2812198,
- 51.0240383
+ -6.1541592,
+ 57.7423183
],
[
- 1.2848518,
- 51.0948044
+ -6.2913692,
+ 57.7380102
],
[
- 1.4277848,
- 51.0948044
+ -6.3365678,
+ 58.1398784
],
[
- 1.4386809,
- 51.2882859
+ -6.1121891,
+ 58.1466944
],
[
- 1.4713691,
- 51.2871502
+ -6.1473778,
+ 58.5106285
],
[
- 1.4804492,
- 51.3994534
+ -6.2934817,
+ 58.5416182
],
[
- 1.1590151,
- 51.4073836
+ -6.8413713,
+ 58.2977321
],
[
- 1.1590151,
- 51.3869889
+ -7.0057382,
+ 58.2929331
],
[
- 1.0191822,
- 51.3903886
+ -7.1016189,
+ 58.2064403
],
[
- 1.0228142,
- 51.4798247
+ -7.2573132,
+ 58.1793148
],
[
- 0.8793493,
- 51.4843484
+ -7.2531092,
+ 58.1004928
],
[
- 0.8829813,
- 51.5566675
+ -7.4070698,
+ 58.0905566
],
[
- 1.0264462,
- 51.5544092
+ -7.391347,
+ 57.7911354
],
[
- 1.0373423,
- 51.7493319
+ -7.790991,
+ 57.7733151
],
[
- 1.2607117,
- 51.7482076
+ -7.7624215,
+ 57.5444165
],
[
- 1.2661598,
- 51.8279642
+ -7.698501,
+ 57.1453194
],
[
- 1.3351682,
- 51.8335756
+ -7.7943817,
+ 57.1304547
],
[
- 1.3478803,
- 51.9199021
+ -7.716764,
+ 56.7368628
],
[
- 1.4840812,
- 51.9199021
+ -7.0122067,
+ 56.7654359
],
[
- 1.4986093,
- 52.0038271
+ -6.979922,
+ 56.5453858
],
[
- 1.6438902,
- 52.0027092
+ -7.0638622,
+ 56.5453858
],
[
- 1.6656823,
- 52.270221
+ -7.0444914,
+ 56.3562587
],
[
- 1.7310588,
- 52.270221
+ -6.500676,
+ 56.3812917
],
[
- 1.7528509,
- 52.4465637
+ -6.4491433,
+ 55.9793649
],
[
- 1.8254914,
- 52.4476705
+ -6.563287,
+ 55.9691456
],
[
- 1.8345714,
- 52.624408
+ -6.5393742,
+ 55.7030135
],
[
- 1.7690346,
- 52.6291402
+ -6.5595521,
+ 55.6907321
],
[
- 1.7741711,
- 52.717904
+ -6.5345315,
+ 55.6761713
],
[
- 1.6996925,
- 52.721793
+ -6.5216176,
+ 55.5704434
],
[
- 1.706113,
- 52.8103687
+ -5.8912587,
+ 55.5923416
],
[
- 1.559724,
- 52.8165777
+ -5.8560127,
+ 55.2320733
],
[
- 1.5648605,
- 52.9034116
+ -5.2293639,
+ 55.2515958
],
[
- 1.4184715,
- 52.9103818
+ -5.1837064,
+ 54.6254139
],
[
- 1.4223238,
- 52.9281894
+ -3.6655956,
+ 54.6518373
],
[
- 1.3439928,
- 52.9289635
+ -3.6496155,
+ 54.4320023
],
[
- 1.3491293,
- 53.0001194
+ -3.5400375,
+ 54.4306744
],
[
- 0.4515789,
- 53.022589
+ -3.530906,
+ 54.0290181
],
[
- 0.4497629,
- 52.9351139
+ -3.0697656,
+ 54.030359
],
[
- 0.3789384,
- 52.9351139
+ -3.0675737,
+ 53.8221388
],
[
- 0.3716744,
- 52.846365
+ -3.0804876,
+ 53.7739911
],
[
- 0.2227614,
- 52.8496552
+ -3.0619239,
+ 53.7477488
],
[
- 0.2336575,
- 52.9329248
+ -3.0611168,
+ 53.6737049
],
[
- 0.3062979,
- 52.9351139
+ -3.2144691,
+ 53.6708361
],
[
- 0.308114,
- 53.022589
+ -3.2057699,
+ 53.4226163
],
[
- 0.3807544,
- 53.0236813
+ -3.2799632,
+ 53.355224
],
[
- 0.3993708,
- 53.2933729
+ -3.2896655,
+ 53.3608441
],
[
- 0.3248922,
- 53.2987454
+ -3.3327547,
+ 53.364931
],
[
- 0.3274604,
- 53.3853782
+ -3.3761293,
+ 53.3540318
],
[
- 0.2504136,
- 53.38691
+ -4.0888976,
+ 53.3433102
],
[
- 0.2581183,
- 53.4748924
+ -4.0945474,
+ 53.4612036
],
[
- 0.1862079,
- 53.4779494
+ -4.697412,
+ 53.4448624
],
[
- 0.1913443,
- 53.6548777
+ -4.6882805,
+ 53.3318598
],
[
- 0.1502527,
- 53.6594436
+ -4.7202407,
+ 53.2895771
],
[
- 0.1528209,
- 53.7666003
+ -4.6837148,
+ 53.2486184
],
[
- 0.0012954,
- 53.7734308
+ -4.6768661,
+ 53.1542644
],
[
- 0.0025796,
- 53.8424326
+ -4.8480816,
+ 53.1446807
],
[
- -0.0282392,
- 53.841675
+ -4.8178336,
+ 52.7440299
],
[
- -0.0226575,
- 53.9311501
+ -4.2545751,
+ 52.7558939
],
[
- -0.1406983,
- 53.9322193
+ -4.228876,
+ 52.254876
],
[
- -0.1416063,
- 54.0219323
+ -4.2607571,
+ 52.2536408
],
[
- -0.1706625,
- 54.0235326
+ -4.2724603,
+ 52.2432637
],
[
- -0.1679384,
- 54.0949482
+ -4.8136263,
+ 52.230095
],
[
- -0.0126694,
- 54.0912206
+ -4.8079191,
+ 52.1138892
],
[
- -0.0099454,
- 54.1811226
+ -5.3889104,
+ 52.0991668
],
[
- -0.1615824,
- 54.1837795
+ -5.3717888,
+ 51.9129667
],
[
- -0.1606744,
- 54.2029038
+ -5.4208706,
+ 51.9101502
],
[
- -0.2405789,
- 54.2034349
+ -5.414022,
+ 51.8453218
],
[
- -0.2378549,
- 54.2936234
+ -5.3683645,
+ 51.8474373
],
[
- -0.3894919,
- 54.2941533
+ -5.3466772,
+ 51.5595332
],
[
- -0.3857497,
- 54.3837321
+ -4.773676,
+ 51.5758518
],
[
- -0.461638,
- 54.3856364
+ -4.7656859,
+ 51.4885146
],
[
- -0.4571122,
- 54.4939066
+ -4.1915432,
+ 51.4970427
],
[
- -0.6105651,
- 54.4965434
+ -4.1869775,
+ 51.4344663
],
[
- -0.6096571,
- 54.5676704
+ -3.6151177,
+ 51.4444274
],
[
- -0.7667421,
- 54.569776
+ -3.6105519,
+ 51.3746543
],
[
- -0.7640181,
- 54.5887213
+ -3.1494115,
+ 51.3789292
],
[
- -0.9192871,
- 54.5908258
+ -3.1494115,
+ 51.2919281
],
[
- -0.9148116,
- 54.6608348
+ -4.3038735,
+ 51.2745907
],
[
- -1.1485204,
- 54.6634343
+ -4.2861169,
+ 51.0508721
],
[
- -1.1472363,
- 54.7528316
+ -4.8543277,
+ 51.0366633
],
[
- -1.2268514,
- 54.7532021
+ -4.8372201,
+ 50.7212787
],
[
- -1.2265398,
- 54.8429879
- ],
+ -5.2618345,
+ 50.7082694
+ ]
+ ],
+ [
[
- -1.2991803,
- 54.8435107
+ -2.1502671,
+ 60.171318
],
[
- -1.2991803,
- 54.9333391
+ -2.0030218,
+ 60.1696146
],
[
- -1.3454886,
- 54.9354258
+ -2.0013096,
+ 60.0997023
],
[
- -1.3436726,
- 55.0234878
- ],
+ -2.148555,
+ 60.1011247
+ ]
+ ],
+ [
[
- -1.3772688,
- 55.0255698
+ -6.2086011,
+ 59.1163488
],
[
- -1.3754528,
- 55.1310877
+ -6.1229934,
+ 59.1166418
],
[
- -1.4997441,
- 55.1315727
+ -6.121852,
+ 59.0714985
],
[
- -1.4969272,
- 55.2928323
- ],
+ -6.2097426,
+ 59.0714985
+ ]
+ ],
+ [
[
- -1.5296721,
- 55.2942946
+ -4.4159559,
+ 59.0889036
],
[
- -1.5258198,
- 55.6523803
+ -4.4212022,
+ 59.0770848
],
[
- -1.7659492,
- 55.6545537
+ -4.3971904,
+ 59.0779143
],
[
- -1.7620968,
- 55.7435626
- ],
+ -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": [
+ [
[
- -1.9688392,
- 55.7435626
+ -4.7157244,
+ 54.6796556
],
[
- -1.9698023,
- 55.8334505
+ -4.6850662,
+ 54.6800268
],
[
- -2.0019051,
- 55.8336308
+ -4.6835779,
+ 54.6623245
],
[
- -2.0015841,
- 55.9235526
- ],
+ -4.7148782,
+ 54.6615818
+ ]
+ ],
+ [
[
- -2.1604851,
- 55.9240613
+ -3.7085748,
+ 58.3371151
],
[
- -2.1613931,
- 55.9413549
+ -3.5405937,
+ 58.3380684
],
[
- -2.3202942,
- 55.9408463
+ -3.5315137,
+ 58.1608002
],
[
- -2.3212022,
- 56.0145126
+ -3.3608086,
+ 58.1622372
],
[
- -2.5627317,
- 56.0124824
+ -3.3653486,
+ 58.252173
],
[
- -2.5645477,
- 56.1022207
+ -3.1610473,
+ 58.2536063
],
[
- -2.9658863,
- 56.0991822
+ -3.1610473,
+ 58.3261509
],
[
- -2.9667943,
- 56.1710304
+ -3.0275704,
+ 58.3271045
],
[
- -2.4828272,
- 56.1755797
+ -3.0366505,
+ 58.6139001
],
[
- -2.4882752,
- 56.2856078
+ -3.0021463,
+ 58.614373
],
[
- -2.5645477,
- 56.2835918
+ -3.0030543,
+ 58.7036341
],
[
- -2.5681798,
- 56.3742075
+ -3.4180129,
+ 58.7003322
],
[
- -2.7261728,
- 56.3732019
+ -3.4171049,
+ 58.6290293
],
[
- -2.7316208,
- 56.4425301
+ -3.7240109,
+ 58.6266658
],
[
- -2.6190281,
- 56.4425301
+ -3.7231029,
+ 58.606806
],
[
- -2.6153961,
- 56.5317671
+ -4.2361262,
+ 58.5992374
],
[
- -2.453771,
- 56.5347715
+ -4.2334022,
+ 58.5092347
],
[
- -2.4534686,
- 56.6420248
+ -3.88836,
+ 58.5144516
],
[
- -2.4062523,
- 56.6440218
+ -3.8829119,
+ 58.4261327
],
[
- -2.3953562,
- 56.7297964
- ],
+ -3.7158389,
+ 58.4270836
+ ]
+ ],
+ [
[
- -2.2936596,
- 56.7337811
+ -6.46676,
+ 49.9943621
],
[
- -2.2972916,
- 56.807423
+ -6.1889102,
+ 50.004868
],
[
- -2.1629067,
- 56.8113995
+ -6.1789222,
+ 49.8967815
],
[
- -2.1592747,
- 56.9958425
+ -6.3169391,
+ 49.8915171
],
[
- -1.9922016,
- 57.0017771
+ -6.312399,
+ 49.8200979
],
[
- -2.0067297,
- 57.2737477
- ],
+ -6.4504159,
+ 49.8159968
+ ]
+ ],
+ [
[
- -1.9195612,
- 57.2757112
+ -5.6453263,
+ 50.2029809
],
[
- -1.9304572,
- 57.3482876
+ -5.7801329,
+ 50.2014076
],
[
- -1.8106005,
- 57.3443682
+ -5.7637888,
+ 50.0197267
],
[
- -1.7997044,
- 57.4402728
+ -5.3479221,
+ 50.0290604
],
[
- -1.6616875,
- 57.4285429
+ -5.3388421,
+ 49.9414854
],
[
- -1.6689516,
- 57.5398256
+ -5.024672,
+ 49.9473287
],
[
- -1.7452241,
- 57.5398256
+ -5.0355681,
+ 50.0383923
],
[
- -1.7524881,
- 57.6313302
+ -5.0010639,
+ 50.0453901
],
[
- -1.8287606,
- 57.6332746
+ -4.9974319,
+ 50.1304478
],
[
- -1.8287606,
- 57.7187255
+ -4.855783,
+ 50.13394
],
[
- -3.1768526,
- 57.7171219
+ -4.861231,
+ 50.206057
],
[
- -3.1794208,
- 57.734264
+ -4.6546085,
+ 50.2140172
],
[
- -3.5134082,
- 57.7292105
+ -4.6558926,
+ 50.3018616
],
[
- -3.5129542,
- 57.7112683
+ -4.5184924,
+ 50.3026818
],
[
- -3.7635638,
- 57.7076303
+ -4.51464,
+ 50.325642
],
[
- -3.7598539,
- 57.635713
+ -4.2488284,
+ 50.3264618
],
[
- -3.8420372,
- 57.6343382
+ -4.2488284,
+ 50.3100631
],
[
- -3.8458895,
- 57.6178365
+ -4.10886,
+ 50.3141633
],
[
- -3.9794374,
- 57.6157733
+ -4.1062917,
+ 50.2411267
],
[
- -3.9794374,
- 57.686544
+ -3.9648088,
+ 50.2432047
],
[
- -3.8150708,
- 57.689976
+ -3.9640778,
+ 50.2254158
],
[
- -3.817639,
- 57.7968899
+ -3.8522287,
+ 50.2273626
],
[
- -3.6853753,
- 57.7989429
+ -3.8503757,
+ 50.1552563
],
[
- -3.6892276,
- 57.8891567
+ -3.6921809,
+ 50.1572487
],
[
- -3.9383458,
- 57.8877915
+ -3.5414602,
+ 50.1602198
],
[
- -3.9421981,
- 57.9750592
+ -3.5465781,
+ 50.3226814
],
[
- -3.6943641,
- 57.9784638
+ -3.4068012,
+ 50.3241013
],
[
- -3.6969323,
- 58.0695865
+ -3.4165761,
+ 50.5892711
],
[
- -4.0372226,
- 58.0641528
+ -3.2746691,
+ 50.5962721
],
[
- -4.0346543,
- 57.9730163
+ -3.2749172,
+ 50.6106323
],
[
- -4.2003051,
- 57.9702923
+ -2.9971742,
+ 50.613972
],
[
- -4.1832772,
- 57.7012869
+ -2.9896008,
+ 50.688537
],
[
- -4.518752,
- 57.6951111
+ -2.7120266,
+ 50.690565
],
[
- -4.5122925,
- 57.6050682
+ -2.710908,
+ 50.6195964
],
[
- -4.6789116,
- 57.6016628
+ -2.5695473,
+ 50.6157538
],
[
- -4.666022,
- 57.4218334
+ -2.5651019,
+ 50.5134083
],
[
- -3.6677696,
- 57.4394729
+ -2.4014463,
+ 50.513379
],
[
- -3.671282,
- 57.5295384
+ -2.3940583,
+ 50.6160348
],
[
- -3.3384979,
- 57.5331943
+ -2.2894123,
+ 50.6147436
],
[
- -3.3330498,
- 57.4438859
+ -2.2876184,
+ 50.6008549
],
[
- -2.8336466,
- 57.4485275
+ -2.1477855,
+ 50.6048506
],
[
- -2.8236396,
- 56.9992706
+ -2.1451013,
+ 50.5325437
],
[
- -2.3305398,
- 57.0006693
+ -1.9335117,
+ 50.5347477
],
[
- -2.3298977,
- 56.9113932
+ -1.9362139,
+ 50.6170445
],
[
- -2.6579889,
- 56.9092901
+ -1.8573025,
+ 50.6228094
],
[
- -2.6559637,
- 56.8198406
+ -1.8554865,
+ 50.709139
],
[
- -2.8216747,
- 56.8188467
+ -1.6066929,
+ 50.709139
],
[
- -2.8184967,
- 56.7295397
+ -1.6085089,
+ 50.6239615
],
[
- -3.1449248,
- 56.7265508
+ -1.4450678,
+ 50.6228094
],
[
- -3.1435628,
- 56.6362749
+ -1.4432518,
+ 50.5317039
],
[
- -3.4679089,
- 56.6350265
+ -1.1545059,
+ 50.5293951
],
[
- -3.474265,
- 56.7238108
+ -1.1472419,
+ 50.6170485
],
[
- -3.8011471,
- 56.7188284
+ -1.011041,
+ 50.6205051
],
[
- -3.785711,
- 56.4493026
+ -1.011041,
+ 50.7056889
],
[
- -3.946428,
- 56.4457896
+ -0.704135,
+ 50.7045388
],
[
- -3.9428873,
- 56.2659777
+ -0.700503,
+ 50.7769401
],
[
- -4.423146,
- 56.2588459
+ -0.5860943,
+ 50.7723465
],
[
- -4.4141572,
- 56.0815506
+ -0.5879103,
+ 50.7907181
],
[
- -4.8944159,
- 56.0708008
+ -0.0149586,
+ 50.7798108
],
[
- -4.8791072,
- 55.8896994
+ -0.0185906,
+ 50.7625836
],
[
- -5.1994158,
- 55.8821374
+ 0.0967261,
+ 50.7620093
],
[
- -5.1852906,
- 55.7023791
+ 0.0921861,
+ 50.6913106
],
[
- -5.0273445,
- 55.7067203
+ 0.3046595,
+ 50.6890096
],
[
- -5.0222081,
- 55.6879046
+ 0.3101075,
+ 50.7757917
],
[
- -4.897649,
- 55.6907999
+ 0.5511831,
+ 50.7726336
],
[
- -4.8880181,
- 55.6002822
+ 0.5529991,
+ 50.8432096
],
[
- -4.7339244,
- 55.6046348
+ 0.695556,
+ 50.8403428
],
[
- -4.7275038,
- 55.5342082
+ 0.696464,
+ 50.8592608
],
[
- -4.773732,
- 55.5334815
+ 0.9852099,
+ 50.8523824
],
[
- -4.7685955,
- 55.4447227
+ 0.9906579,
+ 50.9417226
],
[
- -4.8494947,
- 55.4418092
+ 1.0160821,
+ 50.9411504
],
[
- -4.8405059,
- 55.3506535
+ 1.0215301,
+ 51.0303204
],
[
- -4.8700405,
- 55.3513836
+ 1.2812198,
+ 51.0240383
],
[
- -4.8649041,
- 55.2629462
+ 1.2848518,
+ 51.0948044
],
[
- -4.9920314,
- 55.2592875
+ 1.4277848,
+ 51.0948044
],
[
- -4.9907473,
- 55.1691779
+ 1.4386809,
+ 51.2882859
],
[
- -5.0600894,
- 55.1655105
+ 1.4713691,
+ 51.2871502
],
[
- -5.0575212,
- 55.0751884
+ 1.4804492,
+ 51.3994534
],
[
- -5.2141831,
- 55.0722477
+ 1.1590151,
+ 51.4073836
],
[
- -5.1991766,
- 54.8020337
+ 1.1590151,
+ 51.3869889
],
[
- -5.0466316,
- 54.8062205
+ 1.0191822,
+ 51.3903886
],
[
- -5.0502636,
- 54.7244996
+ 1.0228142,
+ 51.4798247
],
[
- -4.9703591,
- 54.7203043
+ 0.8793493,
+ 51.4843484
],
[
- -4.9776232,
- 54.6215905
+ 0.8829813,
+ 51.5566675
],
[
- -4.796022,
- 54.6342056
+ 1.0264462,
+ 51.5544092
],
[
- -4.796022,
- 54.7307917
+ 1.0373423,
+ 51.7493319
],
[
- -4.8977186,
- 54.7265971
+ 1.2607117,
+ 51.7482076
],
[
- -4.9086147,
- 54.8145928
+ 1.2661598,
+ 51.8279642
],
[
- -4.8069181,
- 54.8166856
+ 1.3351682,
+ 51.8335756
],
[
- -4.8105501,
- 54.7915648
+ 1.3478803,
+ 51.9199021
],
[
- -4.6943253,
- 54.7978465
+ 1.4840812,
+ 51.9199021
],
[
- -4.6761652,
- 54.7244996
+ 1.4986093,
+ 52.0038271
],
[
- -4.5744686,
- 54.7244996
+ 1.6438902,
+ 52.0027092
],
[
- -4.5599405,
- 54.6426135
+ 1.6656823,
+ 52.270221
],
[
- -4.3093309,
- 54.6384098
+ 1.7310588,
+ 52.270221
],
[
- -4.3333262,
- 54.8229889
+ 1.7528509,
+ 52.4465637
],
[
- -4.2626999,
- 54.8274274
+ 1.8254914,
+ 52.4476705
],
[
- -4.2549952,
- 54.7348587
+ 1.8345714,
+ 52.624408
],
[
- -3.8338058,
- 54.7400481
+ 1.7690346,
+ 52.6291402
],
[
- -3.836374,
- 54.8141105
+ 1.7741711,
+ 52.717904
],
[
- -3.7118149,
- 54.8133706
+ 1.6996925,
+ 52.721793
],
[
- -3.7143831,
- 54.8318654
+ 1.706113,
+ 52.8103687
],
[
- -3.5346072,
- 54.8355633
+ 1.559724,
+ 52.8165777
],
[
- -3.5271039,
- 54.9066228
+ 1.5648605,
+ 52.9034116
],
[
- -3.4808758,
- 54.9084684
+ 1.4184715,
+ 52.9103818
],
[
- -3.4776655,
- 54.7457328
+ 1.4223238,
+ 52.9281894
],
[
- -3.5874573,
- 54.744621
+ 1.3439928,
+ 52.9289635
],
[
- -3.5836049,
- 54.6546166
+ 1.3491293,
+ 53.0001194
],
[
- -3.7107322,
- 54.6531308
+ 0.4515789,
+ 53.022589
],
[
- -3.6991752,
- 54.4550407
+ 0.4497629,
+ 52.9351139
],
[
- -3.5746161,
- 54.4572801
+ 0.3789384,
+ 52.9351139
],
[
- -3.5759002,
- 54.3863042
+ 0.3716744,
+ 52.846365
],
[
- -3.539945,
- 54.3855564
+ 0.2227614,
+ 52.8496552
],
[
- -3.5386609,
- 54.297224
+ 0.2336575,
+ 52.9329248
],
[
- -3.46033,
- 54.2957252
+ 0.3062979,
+ 52.9351139
],
[
- -3.4590458,
- 54.2079507
+ 0.308114,
+ 53.022589
],
[
- -3.3807149,
- 54.2102037
+ 0.3807544,
+ 53.0236813
],
[
- -3.381999,
- 54.1169788
+ 0.3993708,
+ 53.2933729
],
[
- -3.302878,
- 54.1160656
+ 0.3248922,
+ 53.2987454
],
[
- -3.300154,
- 54.0276224
+ 0.3274604,
+ 53.3853782
],
[
- -3.1013007,
- 54.0292224
+ 0.2504136,
+ 53.38691
],
[
- -3.093596,
- 53.6062158
+ 0.2581183,
+ 53.4748924
],
[
- -3.2065981,
- 53.6016441
+ 0.1862079,
+ 53.4779494
],
[
- -3.2091663,
- 53.4917753
+ 0.1913443,
+ 53.6548777
],
[
- -3.2451215,
- 53.4887193
+ 0.1502527,
+ 53.6594436
],
[
- -3.2348486,
- 53.4045934
+ 0.1528209,
+ 53.7666003
],
[
- -3.5276266,
- 53.3999999
+ 0.0012954,
+ 53.7734308
],
[
- -3.5343966,
- 53.328481
+ 0.0025796,
+ 53.8424326
],
[
- -3.6488053,
- 53.3252272
+ -0.0282392,
+ 53.841675
],
[
- -3.6527308,
- 53.3057716
+ -0.0226575,
+ 53.9311501
],
[
- -3.7271873,
- 53.3046865
+ -0.1406983,
+ 53.9322193
],
[
- -3.7315003,
- 53.3945257
+ -0.1416063,
+ 54.0219323
],
[
- -3.9108315,
- 53.3912769
+ -0.1706625,
+ 54.0235326
],
[
- -3.9071995,
- 53.3023804
+ -0.1679384,
+ 54.0949482
],
[
- -3.9521457,
- 53.3015665
+ -0.0126694,
+ 54.0912206
],
[
- -3.9566724,
- 53.3912183
+ -0.0099454,
+ 54.1811226
],
[
- -4.1081979,
- 53.3889209
+ -0.1615824,
+ 54.1837795
],
[
- -4.1081979,
- 53.4072967
+ -0.1606744,
+ 54.2029038
],
[
- -4.2622916,
- 53.4065312
+ -0.2405789,
+ 54.2034349
],
[
- -4.2635757,
- 53.4753707
+ -0.2378549,
+ 54.2936234
],
[
- -4.638537,
- 53.4677274
+ -0.3894919,
+ 54.2941533
],
[
- -4.6346847,
- 53.3812621
+ -0.3857497,
+ 54.3837321
],
[
- -4.7091633,
- 53.3774321
+ -0.461638,
+ 54.3856364
],
[
- -4.7001745,
- 53.1954965
+ -0.4571122,
+ 54.4939066
],
[
- -4.5499332,
- 53.1962658
+ -0.6105651,
+ 54.4965434
],
[
- -4.5435126,
- 53.1092488
+ -0.6096571,
+ 54.5676704
],
[
- -4.3919871,
- 53.1100196
+ -0.7667421,
+ 54.569776
],
[
- -4.3855666,
- 53.0236002
+ -0.7640181,
+ 54.5887213
],
[
- -4.6115707,
- 53.0205105
+ -0.9192871,
+ 54.5908258
],
[
- -4.603866,
- 52.9284932
+ -0.9148116,
+ 54.6608348
],
[
- -4.7566756,
- 52.9261709
+ -1.1485204,
+ 54.6634343
],
[
- -4.7476868,
- 52.8370555
+ -1.1472363,
+ 54.7528316
],
[
- -4.8208813,
- 52.8331768
+ -1.2268514,
+ 54.7532021
],
[
- -4.8208813,
- 52.7446476
+ -1.2265398,
+ 54.8429879
],
[
- -4.3701572,
- 52.7539749
+ -1.2991803,
+ 54.8435107
],
[
- -4.3765778,
- 52.8401583
+ -1.2991803,
+ 54.9333391
],
[
- -4.2314728,
- 52.8455875
+ -1.3454886,
+ 54.9354258
],
[
- -4.2237682,
- 52.7586379
+ -1.3436726,
+ 55.0234878
],
[
- -4.1056297,
- 52.7570836
+ -1.3772688,
+ 55.0255698
],
[
- -4.1015192,
- 52.6714874
+ -1.3754528,
+ 55.1310877
],
[
- -4.1487355,
- 52.6703862
+ -1.4997441,
+ 55.1315727
],
[
- -4.1305754,
- 52.4008596
+ -1.4969272,
+ 55.2928323
],
[
- -4.1995838,
- 52.3986435
+ -1.5296721,
+ 55.2942946
],
[
- -4.2050319,
- 52.3110195
+ -1.5258198,
+ 55.6523803
],
[
- -4.3466808,
- 52.303247
+ -1.7659492,
+ 55.6545537
],
[
- -4.3484968,
- 52.2365693
+ -1.7620968,
+ 55.7435626
],
[
- -4.4901457,
- 52.2332328
+ -1.9688392,
+ 55.7435626
],
[
- -4.4883297,
- 52.2098702
+ -1.9698023,
+ 55.8334505
],
[
- -4.6572188,
- 52.2098702
+ -2.0019051,
+ 55.8336308
],
[
- -4.6590348,
- 52.1385939
+ -2.0015841,
+ 55.9235526
],
[
- -4.7788916,
- 52.13525
+ -2.1604851,
+ 55.9240613
],
[
- -4.7807076,
- 52.1162967
+ -2.1613931,
+ 55.9413549
],
[
- -4.9259885,
- 52.1140663
+ -2.3202942,
+ 55.9408463
],
[
- -4.9187245,
- 52.0392855
+ -2.3212022,
+ 56.0145126
],
[
- -5.2365265,
- 52.0314653
+ -2.5627317,
+ 56.0124824
],
[
- -5.2347105,
- 51.9442339
+ -2.5645477,
+ 56.1022207
],
[
- -5.3473032,
- 51.9408755
+ -2.9658863,
+ 56.0991822
],
[
- -5.3473032,
- 51.9195995
+ -2.9667943,
+ 56.1710304
],
[
- -5.4925842,
- 51.9162392
+ -2.4828272,
+ 56.1755797
],
[
- -5.4853201,
- 51.8265386
+ -2.4882752,
+ 56.2856078
],
[
- -5.1983903,
- 51.8321501
+ -2.5645477,
+ 56.2835918
],
[
- -5.1893102,
- 51.7625177
+ -2.5681798,
+ 56.3742075
],
[
- -5.335825,
- 51.7589528
+ -2.7261728,
+ 56.3732019
],
[
- -5.3281204,
- 51.6686495
+ -2.7316208,
+ 56.4425301
],
[
- -5.1836575,
- 51.6730296
+ -2.6190281,
+ 56.4425301
],
[
- -5.1836575,
- 51.6539134
+ -2.6153961,
+ 56.5317671
],
[
- -5.0674452,
- 51.6578966
+ -2.453771,
+ 56.5347715
],
[
- -5.0603825,
- 51.5677905
+ -2.4534686,
+ 56.6420248
],
[
- -4.5974594,
- 51.5809588
+ -2.4062523,
+ 56.6440218
],
[
- -4.60388,
- 51.6726314
+ -2.3953562,
+ 56.7297964
],
[
- -4.345773,
- 51.6726314
+ -2.2936596,
+ 56.7337811
],
[
- -4.3355001,
- 51.4962964
+ -2.2972916,
+ 56.807423
],
[
- -3.9528341,
- 51.5106841
+ -2.1629067,
+ 56.8113995
],
[
- -3.9425611,
- 51.5905333
+ -2.1592747,
+ 56.9958425
],
[
- -3.8809237,
- 51.5953198
+ -1.9922016,
+ 57.0017771
],
[
- -3.8706508,
- 51.5074872
+ -2.0067297,
+ 57.2737477
],
[
- -3.7679216,
- 51.4978952
+ -1.9195612,
+ 57.2757112
],
[
- -3.7550805,
- 51.4242895
+ -1.9304572,
+ 57.3482876
],
[
- -3.5855774,
- 51.41468
+ -1.8106005,
+ 57.3443682
],
[
- -3.5778727,
- 51.3329177
+ -1.7997044,
+ 57.4402728
],
[
- -3.0796364,
- 51.3329177
+ -1.6616875,
+ 57.4285429
],
[
- -3.0770682,
- 51.2494018
+ -1.6689516,
+ 57.5398256
],
[
- -3.7216935,
- 51.2381477
+ -1.7452241,
+ 57.5398256
],
[
- -3.7216935,
- 51.2558315
+ -1.7524881,
+ 57.6313302
],
[
- -3.8706508,
- 51.2558315
+ -1.8287606,
+ 57.6332746
],
[
- -3.8680825,
- 51.2365398
+ -1.8287606,
+ 57.7187255
],
[
- -4.2944084,
- 51.2252825
+ -3.1768526,
+ 57.7171219
],
[
- -4.289272,
- 51.0496352
+ -3.1794208,
+ 57.734264
],
[
- -4.5692089,
- 51.0431767
+ -3.5134082,
+ 57.7292105
],
[
- -4.5624122,
- 50.9497388
+ -3.5129542,
+ 57.7112683
],
[
- -4.5905604,
- 50.9520269
+ -3.7635638,
+ 57.7076303
],
[
- -4.5896524,
- 50.8627065
+ -3.7598539,
+ 57.635713
],
[
- -4.6296046,
- 50.8592677
+ -3.8420372,
+ 57.6343382
],
[
- -4.6226411,
- 50.7691513
+ -3.8458895,
+ 57.6178365
],
[
- -4.6952816,
- 50.7680028
+ -3.9794374,
+ 57.6157733
],
[
- -4.6934655,
- 50.6967379
+ -3.9794374,
+ 57.686544
],
[
- -4.8342064,
- 50.6938621
+ -3.8150708,
+ 57.689976
],
[
- -4.8296664,
- 50.6046231
+ -3.817639,
+ 57.7968899
],
[
- -4.9676833,
- 50.6000126
+ -3.6853753,
+ 57.7989429
],
[
- -4.9685913,
- 50.5821427
+ -3.6892276,
+ 57.8891567
],
[
- -5.1084242,
- 50.5786832
+ -3.9383458,
+ 57.8877915
],
[
- -5.1029762,
- 50.4892254
+ -3.9421981,
+ 57.9750592
],
[
- -5.1311244,
- 50.48807
+ -3.6943641,
+ 57.9784638
],
[
- -5.1274923,
- 50.4163798
+ -3.6969323,
+ 58.0695865
],
[
- -5.2664172,
- 50.4117509
+ -4.0372226,
+ 58.0641528
],
[
- -5.2609692,
- 50.3034214
+ -4.0346543,
+ 57.9730163
],
[
- -5.5124868,
- 50.2976214
+ -4.2003051,
+ 57.9702923
],
[
- -5.5061308,
- 50.2256428
+ -4.1832772,
+ 57.7012869
],
[
- -5.6468717,
- 50.2209953
- ]
- ],
- [
- [
- -5.1336607,
- 55.2630226
+ -4.518752,
+ 57.6951111
],
[
- -5.1021999,
- 55.2639372
+ -4.5122925,
+ 57.6050682
],
[
- -5.0999527,
- 55.2458239
+ -4.6789116,
+ 57.6016628
],
[
- -5.1322161,
- 55.2446343
- ]
- ],
- [
- [
- -5.6431878,
- 55.5095745
+ -4.666022,
+ 57.4218334
],
[
- -5.4861028,
- 55.5126594
+ -3.6677696,
+ 57.4394729
],
[
- -5.4715747,
- 55.3348829
+ -3.671282,
+ 57.5295384
],
[
- -5.6277517,
- 55.3302345
- ]
- ],
- [
- [
- -4.7213517,
- 51.2180246
+ -3.3384979,
+ 57.5331943
],
[
- -4.5804201,
- 51.2212417
+ -3.3330498,
+ 57.4438859
],
[
- -4.5746416,
- 51.1306736
+ -2.8336466,
+ 57.4485275
],
[
- -4.7174993,
- 51.1280545
- ]
- ],
- [
- [
- -5.1608796,
- 55.4153626
+ -2.8236396,
+ 56.9992706
],
[
- -5.0045387,
- 55.4190069
+ -2.3305398,
+ 57.0006693
],
[
- -5.0184798,
- 55.6153521
+ -2.3298977,
+ 56.9113932
],
[
- -5.1755648,
- 55.6138137
- ]
- ]
- ],
- "terms_url": "http://geo.nls.uk/maps/",
- "terms_text": "National Library of Scotland Historic Maps"
- },
- {
- "name": "NLS - OS 6-inch Scotland 1842-82",
- "type": "tms",
- "template": "http://geo.nls.uk/maps/os/six_inch/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 5,
- 16
- ],
- "polygon": [
- [
- [
- -5.2112173,
- 54.8018593
+ -2.6579889,
+ 56.9092901
],
[
- -5.0642752,
- 54.8026508
+ -2.6559637,
+ 56.8198406
],
[
- -5.0560354,
- 54.6305176
+ -2.8216747,
+ 56.8188467
],
[
- -4.3158316,
- 54.6297227
+ -2.8184967,
+ 56.7295397
],
[
- -4.3117117,
- 54.7448258
+ -3.1449248,
+ 56.7265508
],
[
- -3.8530325,
- 54.7464112
+ -3.1435628,
+ 56.6362749
],
[
- -3.8530325,
- 54.8034424
+ -3.4679089,
+ 56.6350265
],
[
- -3.5522818,
- 54.8034424
+ -3.474265,
+ 56.7238108
],
[
- -3.5522818,
- 54.8374644
+ -3.8011471,
+ 56.7188284
],
[
- -3.468511,
- 54.8406277
+ -3.785711,
+ 56.4493026
],
[
- -3.4657644,
- 54.8983158
+ -3.946428,
+ 56.4457896
],
[
- -3.3847403,
- 54.8991055
+ -3.9428873,
+ 56.2659777
],
[
- -3.3888601,
- 54.9559214
+ -4.423146,
+ 56.2588459
],
[
- -3.0920786,
- 54.9539468
+ -4.4141572,
+ 56.0815506
],
[
- -3.0392359,
- 54.9923274
+ -4.8944159,
+ 56.0708008
],
[
- -3.0212713,
- 55.0493881
+ -4.8791072,
+ 55.8896994
],
[
- -2.9591232,
- 55.0463283
+ -5.1994158,
+ 55.8821374
],
[
- -2.9202807,
- 55.0666294
+ -5.1852906,
+ 55.7023791
],
[
- -2.7857081,
- 55.068652
+ -5.0273445,
+ 55.7067203
],
[
- -2.7852225,
- 55.0914426
+ -5.0222081,
+ 55.6879046
],
[
- -2.7337562,
- 55.0922761
+ -4.897649,
+ 55.6907999
],
[
- -2.737616,
- 55.151204
+ -4.8880181,
+ 55.6002822
],
[
- -2.7648395,
- 55.1510672
+ -4.7339244,
+ 55.6046348
],
[
- -2.7013114,
- 55.1722505
+ -4.7275038,
+ 55.5342082
],
[
- -2.6635459,
- 55.2192808
+ -4.773732,
+ 55.5334815
],
[
- -2.6460364,
- 55.2188891
+ -4.7685955,
+ 55.4447227
],
[
- -2.629042,
- 55.2233933
+ -4.8494947,
+ 55.4418092
],
[
- -2.6317886,
- 55.2287781
+ -4.8405059,
+ 55.3506535
],
[
- -2.6235488,
- 55.2446345
+ -4.8700405,
+ 55.3513836
],
[
- -2.6197723,
- 55.2454663
+ -4.8649041,
+ 55.2629462
],
[
- -2.6099017,
- 55.2454174
+ -4.9920314,
+ 55.2592875
],
[
- -2.6099876,
- 55.2486466
+ -4.9907473,
+ 55.1691779
],
[
- -2.6408121,
- 55.2590039
+ -5.0600894,
+ 55.1655105
],
[
- -2.6247896,
- 55.2615631
+ -5.0575212,
+ 55.0751884
],
[
- -2.6045186,
- 55.2823081
+ -5.2141831,
+ 55.0722477
],
[
- -2.5693176,
- 55.296132
+ -5.1991766,
+ 54.8020337
],
[
- -2.5479542,
- 55.3121617
+ -5.0466316,
+ 54.8062205
],
[
- -2.5091116,
- 55.3234891
+ -5.0502636,
+ 54.7244996
],
[
- -2.4780376,
- 55.3494471
+ -4.9703591,
+ 54.7203043
],
[
- -2.4421083,
- 55.3533118
+ -4.9776232,
+ 54.6215905
],
[
- -2.4052079,
- 55.3439256
+ -4.796022,
+ 54.6342056
],
[
- -2.3726772,
- 55.3447539
+ -4.796022,
+ 54.7307917
],
[
- -2.3221819,
- 55.3687665
+ -4.8977186,
+ 54.7265971
],
[
- -2.3241241,
- 55.3999337
+ -4.9086147,
+ 54.8145928
],
[
- -2.2576062,
- 55.425015
+ -4.8069181,
+ 54.8166856
],
[
- -2.1985547,
- 55.4273529
+ -4.8105501,
+ 54.7915648
],
[
- -2.1484296,
- 55.4717466
+ -4.6943253,
+ 54.7978465
],
[
- -2.1944348,
- 55.484199
+ -4.6761652,
+ 54.7244996
],
[
- -2.2040479,
- 55.529306
+ -4.5744686,
+ 54.7244996
],
[
- -2.2960584,
- 55.6379722
+ -4.5599405,
+ 54.6426135
],
[
- -2.2177808,
- 55.6379722
+ -4.3093309,
+ 54.6384098
],
[
- -2.1059266,
- 55.7452498
+ -4.3333262,
+ 54.8229889
],
[
- -1.9716874,
- 55.7462161
+ -4.2626999,
+ 54.8274274
],
[
- -1.9697453,
- 55.9190951
+ -4.2549952,
+ 54.7348587
],
[
- -2.1201694,
- 55.9207115
+ -3.8338058,
+ 54.7400481
],
[
- -2.1242893,
- 55.9776133
+ -3.836374,
+ 54.8141105
],
[
- -2.3440159,
- 55.9783817
+ -3.7118149,
+ 54.8133706
],
[
- -2.3440159,
- 56.0390349
+ -3.7143831,
+ 54.8318654
],
[
- -2.5046909,
- 56.0413363
+ -3.5346072,
+ 54.8355633
],
[
- -2.500571,
- 56.1003588
+ -3.5271039,
+ 54.9066228
],
[
- -2.8823459,
- 56.0957629
+ -3.4808758,
+ 54.9084684
],
[
- -2.8823459,
- 56.1722898
+ -3.4776655,
+ 54.7457328
],
[
- -2.4126804,
- 56.1692316
+ -3.5874573,
+ 54.744621
],
[
- -2.4181736,
- 56.2334017
+ -3.5836049,
+ 54.6546166
],
[
- -2.5857151,
- 56.2303484
+ -3.7107322,
+ 54.6531308
],
[
- -2.5719822,
- 56.3416356
+ -3.6991752,
+ 54.4550407
],
[
- -2.7257908,
- 56.3462022
+ -3.5746161,
+ 54.4572801
],
[
- -2.7312839,
- 56.4343808
+ -3.5759002,
+ 54.3863042
],
[
- -2.6928318,
- 56.4343808
+ -3.539945,
+ 54.3855564
],
[
- -2.6928318,
- 56.4859769
+ -3.5386609,
+ 54.297224
],
[
- -2.5307834,
- 56.4935587
+ -3.46033,
+ 54.2957252
],
[
- -2.5307834,
- 56.570806
+ -3.4590458,
+ 54.2079507
],
[
- -2.5302878,
- 56.6047947
+ -3.3807149,
+ 54.2102037
],
[
- -2.3732428,
- 56.6044452
+ -3.381999,
+ 54.1169788
],
[
- -2.3684363,
- 56.7398824
+ -3.302878,
+ 54.1160656
],
[
- -2.3292975,
- 56.7398824
+ -3.300154,
+ 54.0276224
],
[
- -2.3292975,
- 56.7888065
+ -3.1013007,
+ 54.0292224
],
[
- -2.3145346,
- 56.7891826
+ -3.093596,
+ 53.6062158
],
[
- -2.3148779,
- 56.7967036
+ -3.2065981,
+ 53.6016441
],
[
- -2.171369,
- 56.7967036
+ -3.2091663,
+ 53.4917753
],
[
- -2.1703979,
- 56.9710595
+ -3.2451215,
+ 53.4887193
],
[
- -2.0101725,
- 56.9694716
+ -3.2348486,
+ 53.4045934
],
[
- -2.0101725,
- 57.0846832
+ -3.5276266,
+ 53.3999999
],
[
- -2.0817687,
- 57.085349
+ -3.5343966,
+ 53.328481
],
[
- -2.0488097,
- 57.1259963
+ -3.6488053,
+ 53.3252272
],
[
- -2.0409133,
- 57.126369
+ -3.6527308,
+ 53.3057716
],
[
- -2.0383434,
- 57.2411129
+ -3.7271873,
+ 53.3046865
],
[
- -1.878118,
- 57.2421638
+ -3.7315003,
+ 53.3945257
],
[
- -1.8771469,
- 57.2978175
+ -3.9108315,
+ 53.3912769
],
[
- -1.9868771,
- 57.2983422
+ -3.9071995,
+ 53.3023804
],
[
- -1.9082209,
- 57.3560063
+ -3.9521457,
+ 53.3015665
],
[
- -1.8752048,
- 57.3560063
+ -3.9566724,
+ 53.3912183
],
[
- -1.8761758,
- 57.3769527
+ -4.1081979,
+ 53.3889209
],
[
- -1.8120857,
- 57.4120111
+ -4.1081979,
+ 53.4072967
],
[
- -1.7120661,
- 57.4120111
+ -4.2622916,
+ 53.4065312
],
[
- -1.7034646,
- 57.6441388
+ -4.2635757,
+ 53.4753707
],
[
- -1.8666032,
- 57.6451781
+ -4.638537,
+ 53.4677274
],
[
- -1.8646611,
- 57.7033351
+ -4.6346847,
+ 53.3812621
],
[
- -3.1204292,
- 57.7064705
+ -4.7091633,
+ 53.3774321
],
[
- -3.1218025,
- 57.7504652
+ -4.7001745,
+ 53.1954965
],
[
- -3.4445259,
- 57.7526635
+ -4.5499332,
+ 53.1962658
],
[
- -3.4472724,
- 57.7138067
+ -4.5435126,
+ 53.1092488
],
[
- -3.5145637,
- 57.7094052
+ -4.3919871,
+ 53.1100196
],
[
- -3.5118171,
- 57.6939956
+ -4.3855666,
+ 53.0236002
],
[
- -3.7645027,
- 57.6917938
+ -4.6115707,
+ 53.0205105
],
[
- -3.7672492,
- 57.6344975
+ -4.603866,
+ 52.9284932
],
[
- -3.842378,
- 57.6288312
+ -4.7566756,
+ 52.9261709
],
[
- -3.8438346,
- 57.5965825
+ -4.7476868,
+ 52.8370555
],
[
- -3.9414265,
- 57.5916386
+ -4.8208813,
+ 52.8331768
],
[
- -3.9404554,
- 57.6537782
+ -4.8208813,
+ 52.7446476
],
[
- -3.8894746,
- 57.6529989
+ -4.3701572,
+ 52.7539749
],
[
- -3.8826772,
- 57.7676408
+ -4.3765778,
+ 52.8401583
],
[
- -3.7224517,
- 57.766087
+ -4.2314728,
+ 52.8455875
],
[
- -3.7195385,
- 57.8819201
+ -4.2237682,
+ 52.7586379
],
[
- -3.9146888,
- 57.8853352
+ -4.1056297,
+ 52.7570836
],
[
- -3.916062,
- 57.9546243
+ -4.1015192,
+ 52.6714874
],
[
- -3.745774,
- 57.9538956
+ -4.1487355,
+ 52.6703862
],
[
- -3.7471473,
- 58.0688409
+ -4.1305754,
+ 52.4008596
],
[
- -3.5837256,
- 58.0695672
+ -4.1995838,
+ 52.3986435
],
[
- -3.5837256,
- 58.1116689
+ -4.2050319,
+ 52.3110195
],
[
- -3.4560096,
- 58.1138452
+ -4.3466808,
+ 52.303247
],
[
- -3.4544646,
- 58.228503
+ -4.3484968,
+ 52.2365693
],
[
- -3.4379851,
- 58.2283222
+ -4.4901457,
+ 52.2332328
],
[
- -3.4243233,
- 58.2427725
+ -4.4883297,
+ 52.2098702
],
[
- -3.412307,
- 58.2438567
+ -4.6572188,
+ 52.2098702
],
[
- -3.3735115,
- 58.2695057
+ -4.6590348,
+ 52.1385939
],
[
- -3.3063919,
- 58.2862038
+ -4.7788916,
+ 52.13525
],
[
- -3.1229154,
- 58.2859395
+ -4.7807076,
+ 52.1162967
],
[
- -3.123602,
- 58.3443661
+ -4.9259885,
+ 52.1140663
],
[
- -2.9574338,
- 58.3447264
+ -4.9187245,
+ 52.0392855
],
[
- -2.951254,
- 58.6422011
+ -5.2365265,
+ 52.0314653
],
[
- -2.8812162,
- 58.6429157
+ -5.2347105,
+ 51.9442339
],
[
- -2.8851004,
- 58.8112825
+ -5.3473032,
+ 51.9408755
],
[
- -2.7180775,
- 58.8142997
+ -5.3473032,
+ 51.9195995
],
[
- -2.7161354,
- 58.8715749
+ -5.4925842,
+ 51.9162392
],
[
- -2.556881,
- 58.8775984
+ -5.4853201,
+ 51.8265386
],
[
- -2.5544533,
- 58.9923453
+ -5.1983903,
+ 51.8321501
],
[
- -2.5567617,
- 59.0483775
+ -5.1893102,
+ 51.7625177
],
[
- -2.391893,
- 59.0485996
+ -5.335825,
+ 51.7589528
],
[
- -2.3918002,
- 59.1106996
+ -5.3281204,
+ 51.6686495
],
[
- -2.4733695,
- 59.1106996
+ -5.1836575,
+ 51.6730296
],
[
- -2.5591563,
- 59.1783028
+ -5.1836575,
+ 51.6539134
],
[
- -2.5630406,
- 59.2210646
+ -5.0674452,
+ 51.6578966
],
[
- -2.3921334,
- 59.224046
+ -5.0603825,
+ 51.5677905
],
[
- -2.3911409,
- 59.2740075
+ -4.5974594,
+ 51.5809588
],
[
- -2.3639512,
- 59.2745036
+ -4.60388,
+ 51.6726314
],
[
- -2.3658933,
- 59.285417
+ -4.345773,
+ 51.6726314
],
[
- -2.3911409,
- 59.284921
+ -4.3355001,
+ 51.4962964
],
[
- -2.3911409,
- 59.3379505
+ -3.9528341,
+ 51.5106841
],
[
- -2.2221759,
- 59.3381981
+ -3.9425611,
+ 51.5905333
],
[
- -2.2233897,
- 59.395965
+ -3.8809237,
+ 51.5953198
],
[
- -2.3758467,
- 59.396583
+ -3.8706508,
+ 51.5074872
],
[
- -2.3899271,
- 59.4026383
+ -3.7679216,
+ 51.4978952
],
[
- -2.4008516,
- 59.3962122
+ -3.7550805,
+ 51.4242895
],
[
- -2.5637882,
- 59.3952604
+ -3.5855774,
+ 51.41468
],
[
- -2.5637882,
- 59.3385811
+ -3.5778727,
+ 51.3329177
],
[
- -2.7320164,
- 59.3375306
+ -3.0796364,
+ 51.3329177
],
[
- -2.7333896,
- 59.3952604
+ -3.0770682,
+ 51.2494018
],
[
- -3.0726511,
- 59.3931174
+ -3.7216935,
+ 51.2381477
],
[
- -3.0703404,
- 59.3354759
+ -3.7216935,
+ 51.2558315
],
[
- -3.0753186,
- 59.3355634
+ -3.8706508,
+ 51.2558315
],
[
- -3.0749753,
- 59.3292593
+ -3.8680825,
+ 51.2365398
],
[
- -3.0698254,
- 59.3289091
+ -4.2944084,
+ 51.2252825
],
[
- -3.069801,
- 59.2196159
+ -4.289272,
+ 51.0496352
],
[
- -3.2363384,
- 59.2166341
+ -4.5692089,
+ 51.0431767
],
[
- -3.2336751,
- 59.1606496
+ -4.5624122,
+ 50.9497388
],
[
- -3.4032766,
- 59.1588895
+ -4.5905604,
+ 50.9520269
],
[
- -3.394086,
- 58.9279316
+ -4.5896524,
+ 50.8627065
],
[
- -3.5664497,
- 58.9259268
+ -4.6296046,
+ 50.8592677
],
[
- -3.5611089,
- 58.8679885
+ -4.6226411,
+ 50.7691513
],
[
- -3.392508,
- 58.8699339
+ -4.6952816,
+ 50.7680028
],
[
- -3.3894734,
- 58.8698711
+ -4.6934655,
+ 50.6967379
],
[
- -3.3891093,
- 58.8684905
+ -4.8342064,
+ 50.6938621
],
[
- -3.3912942,
- 58.868616
+ -4.8296664,
+ 50.6046231
],
[
- -3.3884161,
- 58.7543084
+ -4.9676833,
+ 50.6000126
],
[
- -3.2238208,
- 58.7555677
+ -4.9685913,
+ 50.5821427
],
[
- -3.2189655,
- 58.691289
+ -5.1084242,
+ 50.5786832
],
[
- -3.4634113,
- 58.6905753
+ -5.1029762,
+ 50.4892254
],
[
- -3.4551716,
- 58.6341518
+ -5.1311244,
+ 50.48807
],
[
- -3.787508,
- 58.6341518
+ -5.1274923,
+ 50.4163798
],
[
- -3.7861347,
- 58.5769211
+ -5.2664172,
+ 50.4117509
],
[
- -3.9028645,
- 58.5733411
+ -5.2609692,
+ 50.3034214
],
[
- -3.9028645,
- 58.6477304
+ -5.5124868,
+ 50.2976214
],
[
- -4.0690327,
- 58.6491594
+ -5.5061308,
+ 50.2256428
],
[
- -4.0690327,
- 58.5912376
- ],
+ -5.6468717,
+ 50.2209953
+ ]
+ ],
+ [
[
- -4.7364521,
- 58.5933845
+ -5.1336607,
+ 55.2630226
],
[
- -4.7364521,
- 58.6505884
+ -5.1021999,
+ 55.2639372
],
[
- -5.0715351,
- 58.6520173
+ -5.0999527,
+ 55.2458239
],
[
- -5.0654779,
- 58.5325854
- ],
+ -5.1322161,
+ 55.2446343
+ ]
+ ],
+ [
[
- -5.2332047,
- 58.5316087
+ -5.6431878,
+ 55.5095745
],
[
- -5.2283494,
- 58.4719947
+ -5.4861028,
+ 55.5126594
],
[
- -5.2424298,
- 58.4719947
+ -5.4715747,
+ 55.3348829
],
[
- -5.2366034,
- 58.4089731
- ],
+ -5.6277517,
+ 55.3302345
+ ]
+ ],
+ [
[
- -5.2283494,
- 58.4094818
+ -4.7213517,
+ 51.2180246
],
[
- -5.2210664,
- 58.3005859
+ -4.5804201,
+ 51.2212417
],
[
- -5.5657939,
- 58.2959933
+ -4.5746416,
+ 51.1306736
],
[
- -5.5580254,
- 58.2372573
- ],
+ -4.7174993,
+ 51.1280545
+ ]
+ ],
+ [
[
- -5.4146722,
- 58.2401326
+ -5.1608796,
+ 55.4153626
],
[
- -5.4141866,
- 58.2267768
+ -5.0045387,
+ 55.4190069
],
[
- -5.3885749,
- 58.2272242
+ -5.0184798,
+ 55.6153521
],
[
- -5.382714,
- 58.1198615
- ],
+ -5.1755648,
+ 55.6138137
+ ]
+ ]
+ ],
+ "terms_url": "http://geo.nls.uk/maps/",
+ "terms_text": "National Library of Scotland Historic Maps"
+ },
+ {
+ "name": "NLS - OS 6-inch Scotland 1842-82",
+ "type": "tms",
+ "template": "http://geo.nls.uk/maps/os/six_inch/{zoom}/{x}/{-y}.png",
+ "scaleExtent": [
+ 5,
+ 16
+ ],
+ "polygon": [
+ [
[
- -5.51043,
- 58.1191362
+ -5.2112173,
+ 54.8018593
],
[
- -5.5114011,
- 58.006214
+ -5.0642752,
+ 54.8026508
],
[
- -5.6745397,
- 58.0041559
+ -5.0560354,
+ 54.6305176
],
[
- -5.6716266,
- 57.9449366
+ -4.3158316,
+ 54.6297227
],
[
- -5.6716266,
- 57.8887166
+ -4.3117117,
+ 54.7448258
],
[
- -5.8347652,
- 57.8856193
+ -3.8530325,
+ 54.7464112
],
[
- -5.8277052,
- 57.5988958
+ -3.8530325,
+ 54.8034424
],
[
- -6.0384259,
- 57.5986357
+ -3.5522818,
+ 54.8034424
],
[
- -6.0389115,
- 57.6459559
+ -3.5522818,
+ 54.8374644
],
[
- -6.1981658,
- 57.6456961
+ -3.468511,
+ 54.8406277
],
[
- -6.2076123,
- 57.7600132
+ -3.4657644,
+ 54.8983158
],
[
- -6.537067,
- 57.7544033
+ -3.3847403,
+ 54.8991055
],
[
- -6.5312406,
- 57.6402392
+ -3.3888601,
+ 54.9559214
],
[
- -6.7002056,
- 57.6360809
+ -3.0920786,
+ 54.9539468
],
[
- -6.6807844,
- 57.5236293
+ -3.0392359,
+ 54.9923274
],
[
- -6.8516915,
- 57.5152857
+ -3.0212713,
+ 55.0493881
],
[
- -6.8361545,
- 57.3385811
+ -2.9591232,
+ 55.0463283
],
[
- -6.6730158,
- 57.3438213
+ -2.9202807,
+ 55.0666294
],
[
- -6.674958,
- 57.2850883
+ -2.7857081,
+ 55.068652
],
[
- -6.5098772,
- 57.2850883
+ -2.7852225,
+ 55.0914426
],
[
- -6.4982244,
- 57.1757637
+ -2.7337562,
+ 55.0922761
],
[
- -6.3506228,
- 57.1820797
+ -2.737616,
+ 55.151204
],
[
- -6.3312015,
- 57.1251969
+ -2.7648395,
+ 55.1510672
],
[
- -6.1797156,
- 57.1230884
+ -2.7013114,
+ 55.1722505
],
[
- -6.1719471,
- 57.0682265
+ -2.6635459,
+ 55.2192808
],
[
- -6.4593819,
- 57.059779
+ -2.6460364,
+ 55.2188891
],
[
- -6.4564687,
- 57.1093806
+ -2.629042,
+ 55.2233933
],
[
- -6.6671895,
- 57.1062165
+ -2.6317886,
+ 55.2287781
],
[
- -6.6730158,
- 57.002708
+ -2.6235488,
+ 55.2446345
],
[
- -6.5021087,
- 57.0048233
+ -2.6197723,
+ 55.2454663
],
[
- -6.4836097,
- 56.8917522
+ -2.6099017,
+ 55.2454174
],
[
- -6.3266104,
- 56.8894062
+ -2.6099876,
+ 55.2486466
],
[
- -6.3156645,
- 56.7799312
+ -2.6408121,
+ 55.2590039
],
[
- -6.2146739,
- 56.775675
+ -2.6247896,
+ 55.2615631
],
[
- -6.2146739,
- 56.7234965
+ -2.6045186,
+ 55.2823081
],
[
- -6.6866107,
- 56.7224309
+ -2.5693176,
+ 55.296132
],
[
- -6.6769001,
- 56.6114413
+ -2.5479542,
+ 55.3121617
],
[
- -6.8419809,
- 56.607166
+ -2.5091116,
+ 55.3234891
],
[
- -6.8400387,
- 56.5483307
+ -2.4780376,
+ 55.3494471
],
[
- -7.1546633,
- 56.5461895
+ -2.4421083,
+ 55.3533118
],
[
- -7.1488369,
- 56.4872592
+ -2.4052079,
+ 55.3439256
],
[
- -6.9915246,
- 56.490476
+ -2.3726772,
+ 55.3447539
],
[
- -6.9876404,
- 56.4325329
+ -2.3221819,
+ 55.3687665
],
[
- -6.6827265,
- 56.4314591
+ -2.3241241,
+ 55.3999337
],
[
- -6.6769001,
- 56.5472601
+ -2.2576062,
+ 55.425015
],
[
- -6.5292985,
- 56.5504717
+ -2.1985547,
+ 55.4273529
],
[
- -6.5234721,
- 56.4379018
+ -2.1484296,
+ 55.4717466
],
[
- -6.3661598,
- 56.4368281
+ -2.1944348,
+ 55.484199
],
[
- -6.3642177,
- 56.3766524
+ -2.2040479,
+ 55.529306
],
[
- -6.5273563,
- 56.3712749
+ -2.2960584,
+ 55.6379722
],
[
- -6.5171745,
- 56.2428427
+ -2.2177808,
+ 55.6379722
],
[
- -6.4869621,
- 56.247421
+ -2.1059266,
+ 55.7452498
],
[
- -6.4869621,
- 56.1893882
+ -1.9716874,
+ 55.7462161
],
[
- -6.3001945,
- 56.1985572
+ -1.9697453,
+ 55.9190951
],
[
- -6.3029411,
- 56.2581017
+ -2.1201694,
+ 55.9207115
],
[
- -5.9019401,
- 56.256576
+ -2.1242893,
+ 55.9776133
],
[
- -5.8964469,
- 56.0960466
+ -2.3440159,
+ 55.9783817
],
[
- -6.0282829,
- 56.0883855
+ -2.3440159,
+ 56.0390349
],
[
- -6.0392692,
- 56.1557502
+ -2.5046909,
+ 56.0413363
],
[
- -6.3853385,
- 56.1542205
+ -2.500571,
+ 56.1003588
],
[
- -6.3606193,
- 55.96099
+ -2.8823459,
+ 56.0957629
],
[
- -6.2123039,
- 55.9640647
+ -2.8823459,
+ 56.1722898
],
[
- -6.2047508,
- 55.9202269
+ -2.4126804,
+ 56.1692316
],
[
- -6.5185478,
- 55.9129158
+ -2.4181736,
+ 56.2334017
],
[
- -6.5061881,
- 55.7501763
+ -2.5857151,
+ 56.2303484
],
[
- -6.6764762,
- 55.7409005
+ -2.5719822,
+ 56.3416356
],
[
- -6.6599967,
- 55.6263176
+ -2.7257908,
+ 56.3462022
],
[
- -6.3551261,
- 55.6232161
+ -2.7312839,
+ 56.4343808
],
[
- -6.3578727,
- 55.5689002
+ -2.6928318,
+ 56.4343808
],
[
- -6.0392692,
- 55.5720059
+ -2.6928318,
+ 56.4859769
],
[
- -6.0310294,
- 55.6247669
+ -2.5307834,
+ 56.4935587
],
[
- -5.7398917,
- 55.6309694
+ -2.5307834,
+ 56.570806
],
[
- -5.7371452,
- 55.4569279
+ -2.5302878,
+ 56.6047947
],
[
- -5.8964469,
- 55.4600426
+ -2.3732428,
+ 56.6044452
],
[
- -5.8964469,
- 55.2789864
+ -2.3684363,
+ 56.7398824
],
[
- -5.4350211,
- 55.2821151
+ -2.3292975,
+ 56.7398824
],
[
- -5.4405143,
- 55.4506979
+ -2.3292975,
+ 56.7888065
],
[
- -5.2867057,
- 55.4569279
+ -2.3145346,
+ 56.7891826
],
[
- -5.3086784,
- 55.4070602
+ -2.3148779,
+ 56.7967036
],
[
- -4.9735954,
- 55.4008223
+ -2.171369,
+ 56.7967036
],
[
- -4.9845817,
- 55.2038242
+ -2.1703979,
+ 56.9710595
],
[
- -5.1493766,
- 55.2038242
+ -2.0101725,
+ 56.9694716
],
[
- -5.1411369,
- 55.037337
+ -2.0101725,
+ 57.0846832
],
[
- -5.2152946,
- 55.0341891
- ]
- ],
- [
- [
- -2.1646559,
- 60.1622059
+ -2.0817687,
+ 57.085349
],
[
- -1.9930299,
- 60.1609801
+ -2.0488097,
+ 57.1259963
],
[
- -1.9946862,
- 60.1035151
+ -2.0409133,
+ 57.126369
],
[
- -2.1663122,
- 60.104743
- ]
- ],
- [
- [
- -1.5360658,
- 59.8570831
+ -2.0383434,
+ 57.2411129
],
[
- -1.3653566,
- 59.8559841
+ -1.878118,
+ 57.2421638
],
[
- -1.366847,
- 59.7975565
+ -1.8771469,
+ 57.2978175
],
[
- -1.190628,
- 59.7964199
+ -1.9868771,
+ 57.2983422
],
[
- -1.1862046,
- 59.9695391
+ -1.9082209,
+ 57.3560063
],
[
- -1.0078652,
- 59.9683948
+ -1.8752048,
+ 57.3560063
],
[
- -1.0041233,
- 60.114145
+ -1.8761758,
+ 57.3769527
],
[
- -0.8360832,
- 60.1130715
+ -1.8120857,
+ 57.4120111
],
[
- -0.834574,
- 60.1716772
+ -1.7120661,
+ 57.4120111
],
[
- -1.0074262,
- 60.1727795
+ -1.7034646,
+ 57.6441388
],
[
- -1.0052165,
- 60.2583924
+ -1.8666032,
+ 57.6451781
],
[
- -0.8299659,
- 60.2572778
+ -1.8646611,
+ 57.7033351
],
[
- -0.826979,
- 60.3726551
+ -3.1204292,
+ 57.7064705
],
[
- -0.6507514,
- 60.3715381
+ -3.1218025,
+ 57.7504652
],
[
- -0.6477198,
- 60.4882292
+ -3.4445259,
+ 57.7526635
],
[
- -0.9984896,
- 60.4904445
+ -3.4472724,
+ 57.7138067
],
[
- -0.9970279,
- 60.546555
+ -3.5145637,
+ 57.7094052
],
[
- -0.6425288,
- 60.5443201
+ -3.5118171,
+ 57.6939956
],
[
- -0.6394896,
- 60.6606792
+ -3.7645027,
+ 57.6917938
],
[
- -0.8148133,
- 60.6617806
+ -3.7672492,
+ 57.6344975
],
[
- -0.8132987,
- 60.7196112
+ -3.842378,
+ 57.6288312
],
[
- -0.6383298,
- 60.7185141
+ -3.8438346,
+ 57.5965825
],
[
- -0.635467,
- 60.8275393
+ -3.9414265,
+ 57.5916386
],
[
- -0.797568,
- 60.8285523
+ -3.9404554,
+ 57.6537782
],
[
- -0.9941426,
- 60.8297807
+ -3.8894746,
+ 57.6529989
],
[
- -0.9954966,
- 60.7782667
+ -3.8826772,
+ 57.7676408
],
[
- -1.1670282,
- 60.7793403
+ -3.7224517,
+ 57.766087
],
[
- -1.1700357,
- 60.6646181
+ -3.7195385,
+ 57.8819201
],
[
- -1.5222599,
- 60.6668304
+ -3.9146888,
+ 57.8853352
],
[
- -1.5237866,
- 60.6084426
+ -3.916062,
+ 57.9546243
],
[
- -1.6975673,
- 60.609536
+ -3.745774,
+ 57.9538956
],
[
- -1.7021271,
- 60.4345249
+ -3.7471473,
+ 58.0688409
],
[
- -1.5260578,
- 60.4334111
+ -3.5837256,
+ 58.0695672
],
[
- -1.5275203,
- 60.3770719
+ -3.5837256,
+ 58.1116689
],
[
- -1.8751127,
- 60.3792746
+ -3.4560096,
+ 58.1138452
],
[
- -1.8781372,
- 60.2624647
+ -3.4544646,
+ 58.228503
],
[
- -1.7019645,
- 60.2613443
+ -3.4379851,
+ 58.2283222
],
[
- -1.7049134,
- 60.1470532
+ -3.4243233,
+ 58.2427725
],
[
- -1.528659,
- 60.1459283
- ]
- ],
- [
- [
- -0.9847667,
- 60.8943762
+ -3.412307,
+ 58.2438567
],
[
- -0.9860347,
- 60.8361105
+ -3.3735115,
+ 58.2695057
],
[
- -0.8078362,
- 60.8351904
+ -3.3063919,
+ 58.2862038
],
[
- -0.8065683,
- 60.8934578
- ]
- ],
- [
- [
- -7.7696901,
- 56.8788231
+ -3.1229154,
+ 58.2859395
],
[
- -7.7614504,
- 56.7608274
+ -3.123602,
+ 58.3443661
],
[
- -7.6009049,
- 56.7641903
+ -2.9574338,
+ 58.3447264
],
[
- -7.5972473,
- 56.819332
+ -2.951254,
+ 58.6422011
],
[
- -7.4479894,
- 56.8203948
+ -2.8812162,
+ 58.6429157
],
[
- -7.4489319,
- 56.8794098
+ -2.8851004,
+ 58.8112825
],
[
- -7.2841369,
- 56.8794098
+ -2.7180775,
+ 58.8142997
],
[
- -7.2813904,
- 57.0471152
+ -2.7161354,
+ 58.8715749
],
[
- -7.1303283,
- 57.0515969
+ -2.556881,
+ 58.8775984
],
[
- -7.1330749,
- 57.511801
+ -2.5544533,
+ 58.9923453
],
[
- -6.96828,
- 57.5147514
+ -2.5567617,
+ 59.0483775
],
[
- -6.9765198,
- 57.6854668
+ -2.391893,
+ 59.0485996
],
[
- -6.8062317,
- 57.6913392
+ -2.3918002,
+ 59.1106996
],
[
- -6.8089782,
- 57.8041985
+ -2.4733695,
+ 59.1106996
],
[
- -6.6496765,
- 57.8071252
+ -2.5591563,
+ 59.1783028
],
[
- -6.6441833,
- 57.8612267
+ -2.5630406,
+ 59.2210646
],
[
- -6.3200866,
- 57.8626878
+ -2.3921334,
+ 59.224046
],
[
- -6.3200866,
- 58.1551617
+ -2.3911409,
+ 59.2740075
],
[
- -6.1607849,
- 58.1522633
+ -2.3639512,
+ 59.2745036
],
[
- -6.1552917,
- 58.20874
+ -2.3658933,
+ 59.285417
],
[
- -5.9850036,
- 58.2101869
+ -2.3911409,
+ 59.284921
],
[
- -5.9904968,
- 58.2680163
+ -2.3911409,
+ 59.3379505
],
[
- -6.1497986,
- 58.2665717
+ -2.2221759,
+ 59.3381981
],
[
- -6.1415588,
- 58.5557514
+ -2.2233897,
+ 59.395965
],
[
- -6.3173401,
- 58.5557514
+ -2.3758467,
+ 59.396583
],
[
- -6.3091003,
- 58.4983923
+ -2.3899271,
+ 59.4026383
],
[
- -6.4876282,
- 58.4955218
+ -2.4008516,
+ 59.3962122
],
[
- -6.4876282,
- 58.4423768
+ -2.5637882,
+ 59.3952604
],
[
- -6.6606628,
- 58.4395018
+ -2.5637882,
+ 59.3385811
],
[
- -6.6469299,
- 58.3819525
+ -2.7320164,
+ 59.3375306
],
[
- -6.8117248,
- 58.3805125
+ -2.7333896,
+ 59.3952604
],
[
- -6.8117248,
- 58.3286357
+ -3.0726511,
+ 59.3931174
],
[
- -6.9792663,
- 58.3286357
+ -3.0703404,
+ 59.3354759
],
[
- -6.9710266,
- 58.2694608
+ -3.0753186,
+ 59.3355634
],
[
- -7.1413147,
- 58.2680163
+ -3.0749753,
+ 59.3292593
],
[
- -7.1403816,
- 58.0358742
+ -3.0698254,
+ 59.3289091
],
[
- -7.3020636,
- 58.0351031
+ -3.069801,
+ 59.2196159
],
[
- -7.3030347,
- 57.9774797
+ -3.2363384,
+ 59.2166341
],
[
- -7.1379539,
- 57.9777372
+ -3.2336751,
+ 59.1606496
],
[
- -7.1413526,
- 57.9202792
+ -3.4032766,
+ 59.1588895
],
[
- -7.1398961,
- 57.8640206
+ -3.394086,
+ 58.9279316
],
[
- -7.3020636,
- 57.862471
+ -3.5664497,
+ 58.9259268
],
[
- -7.298484,
- 57.7442293
+ -3.5611089,
+ 58.8679885
],
[
- -7.4509193,
- 57.7456951
+ -3.392508,
+ 58.8699339
],
[
- -7.4550392,
- 57.6899522
+ -3.3894734,
+ 58.8698711
],
[
- -7.6186131,
- 57.6906048
+ -3.3891093,
+ 58.8684905
],
[
- -7.6198341,
- 57.7456951
+ -3.3912942,
+ 58.868616
],
[
- -7.7901222,
- 57.7442293
+ -3.3884161,
+ 58.7543084
],
[
- -7.7873756,
- 57.6855477
+ -3.2238208,
+ 58.7555677
],
[
- -7.6222332,
- 57.6853817
+ -3.2189655,
+ 58.691289
],
[
- -7.6173779,
- 57.5712602
+ -3.4634113,
+ 58.6905753
],
[
- -7.788285,
- 57.5709998
+ -3.4551716,
+ 58.6341518
],
[
- -7.7892561,
- 57.512109
+ -3.787508,
+ 58.6341518
],
[
- -7.7038025,
- 57.5115874
+ -3.7861347,
+ 58.5769211
],
[
- -7.6999183,
- 57.4546902
+ -3.9028645,
+ 58.5733411
],
[
- -7.5367796,
- 57.4552126
+ -3.9028645,
+ 58.6477304
],
[
- -7.5348375,
- 57.5126306
+ -4.0690327,
+ 58.6491594
],
[
- -7.4581235,
- 57.5131521
+ -4.0690327,
+ 58.5912376
],
[
- -7.4552103,
- 57.2824165
+ -4.7364521,
+ 58.5933845
],
[
- -7.6115515,
- 57.2845158
+ -4.7364521,
+ 58.6505884
],
[
- -7.6144647,
- 57.2272651
+ -5.0715351,
+ 58.6520173
],
[
- -7.451326,
- 57.2256881
+ -5.0654779,
+ 58.5325854
],
[
- -7.451326,
- 57.1103873
+ -5.2332047,
+ 58.5316087
],
[
- -7.6164068,
- 57.1088053
+ -5.2283494,
+ 58.4719947
],
[
- -7.603783,
- 56.8792358
- ]
- ],
- [
- [
- -1.7106618,
- 59.5626284
+ -5.2424298,
+ 58.4719947
],
[
- -1.5417509,
- 59.562215
+ -5.2366034,
+ 58.4089731
],
[
- -1.5423082,
- 59.5037224
+ -5.2283494,
+ 58.4094818
],
[
- -1.7112191,
- 59.5041365
- ]
- ]
- ],
- "terms_url": "http://geo.nls.uk/maps/",
- "terms_text": "National Library of Scotland Historic Maps"
- },
- {
- "name": "OS 1:25k historic (OSM)",
- "type": "tms",
- "template": "http://ooc.openstreetmap.org/os1/{zoom}/{x}/{y}.jpg",
- "scaleExtent": [
- 6,
- 17
- ],
- "polygon": [
- [
- [
- -9,
- 49.8
+ -5.2210664,
+ 58.3005859
],
[
- -9,
- 61.1
+ -5.5657939,
+ 58.2959933
],
[
- 1.9,
- 61.1
+ -5.5580254,
+ 58.2372573
],
[
- 1.9,
- 49.8
+ -5.4146722,
+ 58.2401326
],
[
- -9,
- 49.8
- ]
- ]
- ]
- },
- {
- "name": "OS New Popular Edition historic",
- "type": "tms",
- "template": "http://ooc.openstreetmap.org/npe/{zoom}/{x}/{y}.png",
- "polygon": [
- [
- [
- -5.8,
- 49.8
+ -5.4141866,
+ 58.2267768
],
[
- -5.8,
- 55.8
+ -5.3885749,
+ 58.2272242
],
[
- 1.9,
- 55.8
+ -5.382714,
+ 58.1198615
],
[
- 1.9,
- 49.8
+ -5.51043,
+ 58.1191362
],
[
- -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
+ -5.5114011,
+ 58.006214
],
[
- -9,
- 61.1
+ -5.6745397,
+ 58.0041559
],
[
- 1.9,
- 61.1
+ -5.6716266,
+ 57.9449366
],
[
- 1.9,
- 49.8
+ -5.6716266,
+ 57.8887166
],
[
- -9,
- 49.8
- ]
- ]
- ],
- "overlay": true
- },
- {
- "name": "OS OpenData StreetView",
- "type": "tms",
- "template": "http://os.openstreetmap.org/sv/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 1,
- 18
- ],
- "polygon": [
- [
- [
- -5.8292886,
- 50.0229734
+ -5.8347652,
+ 57.8856193
],
[
- -5.8292886,
- 50.254819
+ -5.8277052,
+ 57.5988958
],
[
- -5.373356,
- 50.254819
+ -6.0384259,
+ 57.5986357
],
[
- -5.373356,
- 50.3530588
+ -6.0389115,
+ 57.6459559
],
[
- -5.1756021,
- 50.3530588
+ -6.1981658,
+ 57.6456961
],
[
- -5.1756021,
- 50.5925406
+ -6.2076123,
+ 57.7600132
],
[
- -4.9970743,
- 50.5925406
+ -6.537067,
+ 57.7544033
],
[
- -4.9970743,
- 50.6935617
+ -6.5312406,
+ 57.6402392
],
[
- -4.7965738,
- 50.6935617
+ -6.7002056,
+ 57.6360809
],
[
- -4.7965738,
- 50.7822112
+ -6.6807844,
+ 57.5236293
],
[
- -4.6949503,
- 50.7822112
+ -6.8516915,
+ 57.5152857
],
[
- -4.6949503,
- 50.9607371
+ -6.8361545,
+ 57.3385811
],
[
- -4.6043131,
- 50.9607371
+ -6.6730158,
+ 57.3438213
],
[
- -4.6043131,
- 51.0692066
+ -6.674958,
+ 57.2850883
],
[
- -4.3792215,
- 51.0692066
+ -6.5098772,
+ 57.2850883
],
[
- -4.3792215,
- 51.2521782
+ -6.4982244,
+ 57.1757637
],
[
- -3.9039346,
- 51.2521782
+ -6.3506228,
+ 57.1820797
],
[
- -3.9039346,
- 51.2916998
+ -6.3312015,
+ 57.1251969
],
[
- -3.7171671,
- 51.2916998
+ -6.1797156,
+ 57.1230884
],
[
- -3.7171671,
- 51.2453014
+ -6.1719471,
+ 57.0682265
],
[
- -3.1486246,
- 51.2453014
+ -6.4593819,
+ 57.059779
],
[
- -3.1486246,
- 51.362067
+ -6.4564687,
+ 57.1093806
],
[
- -3.7446329,
- 51.362067
+ -6.6671895,
+ 57.1062165
],
[
- -3.7446329,
- 51.4340386
+ -6.6730158,
+ 57.002708
],
[
- -3.8297769,
- 51.4340386
+ -6.5021087,
+ 57.0048233
],
[
- -3.8297769,
- 51.5298246
+ -6.4836097,
+ 56.8917522
],
[
- -4.0852091,
- 51.5298246
+ -6.3266104,
+ 56.8894062
],
[
- -4.0852091,
- 51.4939284
+ -6.3156645,
+ 56.7799312
],
[
- -4.3792215,
- 51.4939284
+ -6.2146739,
+ 56.775675
],
[
- -4.3792215,
- 51.5427168
+ -6.2146739,
+ 56.7234965
],
[
- -5.1444195,
- 51.5427168
+ -6.6866107,
+ 56.7224309
],
[
- -5.1444195,
- 51.6296003
+ -6.6769001,
+ 56.6114413
],
[
- -5.7387103,
- 51.6296003
+ -6.8419809,
+ 56.607166
],
[
- -5.7387103,
- 51.774037
+ -6.8400387,
+ 56.5483307
],
[
- -5.5095393,
- 51.774037
+ -7.1546633,
+ 56.5461895
],
[
- -5.5095393,
- 51.9802596
+ -7.1488369,
+ 56.4872592
],
[
- -5.198799,
- 51.9802596
+ -6.9915246,
+ 56.490476
],
[
- -5.198799,
- 52.0973358
+ -6.9876404,
+ 56.4325329
],
[
- -4.8880588,
- 52.0973358
+ -6.6827265,
+ 56.4314591
],
[
- -4.8880588,
- 52.1831557
+ -6.6769001,
+ 56.5472601
],
[
- -4.4957492,
- 52.1831557
+ -6.5292985,
+ 56.5504717
],
[
- -4.4957492,
- 52.2925739
+ -6.5234721,
+ 56.4379018
],
[
- -4.3015365,
- 52.2925739
+ -6.3661598,
+ 56.4368281
],
[
- -4.3015365,
- 52.3685318
+ -6.3642177,
+ 56.3766524
],
[
- -4.1811246,
- 52.3685318
+ -6.5273563,
+ 56.3712749
],
[
- -4.1811246,
- 52.7933685
+ -6.5171745,
+ 56.2428427
],
[
- -4.4413696,
- 52.7933685
+ -6.4869621,
+ 56.247421
],
[
- -4.4413696,
- 52.7369614
+ -6.4869621,
+ 56.1893882
],
[
- -4.8569847,
- 52.7369614
+ -6.3001945,
+ 56.1985572
],
[
- -4.8569847,
- 52.9317255
+ -6.3029411,
+ 56.2581017
],
[
- -4.7288044,
- 52.9317255
+ -5.9019401,
+ 56.256576
],
[
- -4.7288044,
- 53.5038599
+ -5.8964469,
+ 56.0960466
],
[
- -4.1578191,
- 53.5038599
+ -6.0282829,
+ 56.0883855
],
[
- -4.1578191,
- 53.4113498
+ -6.0392692,
+ 56.1557502
],
[
- -3.3110518,
- 53.4113498
+ -6.3853385,
+ 56.1542205
],
[
- -3.3110518,
- 53.5038599
+ -6.3606193,
+ 55.96099
],
[
- -3.2333667,
- 53.5038599
+ -6.2123039,
+ 55.9640647
],
[
- -3.2333667,
- 54.0159169
+ -6.2047508,
+ 55.9202269
],
[
- -3.3926211,
- 54.0159169
+ -6.5185478,
+ 55.9129158
],
[
- -3.3926211,
- 54.1980953
+ -6.5061881,
+ 55.7501763
],
[
- -3.559644,
- 54.1980953
+ -6.6764762,
+ 55.7409005
],
[
- -3.559644,
- 54.433732
+ -6.6599967,
+ 55.6263176
],
[
- -3.7188984,
- 54.433732
+ -6.3551261,
+ 55.6232161
],
[
- -3.7188984,
- 54.721897
+ -6.3578727,
+ 55.5689002
],
[
- -4.3015365,
- 54.721897
+ -6.0392692,
+ 55.5720059
],
[
- -4.3015365,
- 54.6140739
+ -6.0310294,
+ 55.6247669
],
[
- -5.0473132,
- 54.6140739
+ -5.7398917,
+ 55.6309694
],
[
- -5.0473132,
- 54.7532915
+ -5.7371452,
+ 55.4569279
],
[
- -5.2298731,
- 54.7532915
+ -5.8964469,
+ 55.4600426
],
[
- -5.2298731,
- 55.2190799
+ -5.8964469,
+ 55.2789864
],
[
- -5.6532567,
- 55.2190799
+ -5.4350211,
+ 55.2821151
],
[
- -5.6532567,
- 55.250088
+ -5.4405143,
+ 55.4506979
],
[
- -5.8979647,
- 55.250088
+ -5.2867057,
+ 55.4569279
],
[
- -5.8979647,
- 55.4822462
+ -5.3086784,
+ 55.4070602
],
[
- -6.5933212,
- 55.4822462
+ -4.9735954,
+ 55.4008223
],
[
- -6.5933212,
- 56.3013441
+ -4.9845817,
+ 55.2038242
],
[
- -7.1727691,
- 56.3013441
+ -5.1493766,
+ 55.2038242
],
[
- -7.1727691,
- 56.5601822
+ -5.1411369,
+ 55.037337
],
[
- -6.8171722,
- 56.5601822
- ],
+ -5.2152946,
+ 55.0341891
+ ]
+ ],
+ [
[
- -6.8171722,
- 56.6991713
+ -2.1646559,
+ 60.1622059
],
[
- -6.5315276,
- 56.6991713
+ -1.9930299,
+ 60.1609801
],
[
- -6.5315276,
- 56.9066964
+ -1.9946862,
+ 60.1035151
],
[
- -6.811679,
- 56.9066964
+ -2.1663122,
+ 60.104743
+ ]
+ ],
+ [
+ [
+ -1.5360658,
+ 59.8570831
],
[
- -6.811679,
- 57.3716613
+ -1.3653566,
+ 59.8559841
],
[
- -6.8721038,
- 57.3716613
+ -1.366847,
+ 59.7975565
],
[
- -6.8721038,
- 57.5518893
+ -1.190628,
+ 59.7964199
],
[
- -7.0973235,
- 57.5518893
+ -1.1862046,
+ 59.9695391
],
[
- -7.0973235,
- 57.2411085
+ -1.0078652,
+ 59.9683948
],
[
- -7.1742278,
- 57.2411085
+ -1.0041233,
+ 60.114145
],
[
- -7.1742278,
- 56.9066964
+ -0.8360832,
+ 60.1130715
],
[
- -7.3719817,
- 56.9066964
+ -0.834574,
+ 60.1716772
],
[
- -7.3719817,
- 56.8075885
+ -1.0074262,
+ 60.1727795
],
[
- -7.5202972,
- 56.8075885
+ -1.0052165,
+ 60.2583924
],
[
- -7.5202972,
- 56.7142479
+ -0.8299659,
+ 60.2572778
],
[
- -7.8306806,
- 56.7142479
+ -0.826979,
+ 60.3726551
],
[
- -7.8306806,
- 56.8994605
+ -0.6507514,
+ 60.3715381
],
[
- -7.6494061,
- 56.8994605
+ -0.6477198,
+ 60.4882292
],
[
- -7.6494061,
- 57.4739617
+ -0.9984896,
+ 60.4904445
],
[
- -7.8306806,
- 57.4739617
+ -0.9970279,
+ 60.546555
],
[
- -7.8306806,
- 57.7915584
+ -0.6425288,
+ 60.5443201
],
[
- -7.4736249,
- 57.7915584
+ -0.6394896,
+ 60.6606792
],
[
- -7.4736249,
- 58.086063
+ -0.8148133,
+ 60.6617806
],
[
- -7.1879804,
- 58.086063
+ -0.8132987,
+ 60.7196112
],
[
- -7.1879804,
- 58.367197
+ -0.6383298,
+ 60.7185141
],
[
- -6.8034589,
- 58.367197
+ -0.635467,
+ 60.8275393
],
[
- -6.8034589,
- 58.4155786
+ -0.797568,
+ 60.8285523
],
[
- -6.638664,
- 58.4155786
+ -0.9941426,
+ 60.8297807
],
[
- -6.638664,
- 58.4673277
+ -0.9954966,
+ 60.7782667
],
[
- -6.5178143,
- 58.4673277
+ -1.1670282,
+ 60.7793403
],
[
- -6.5178143,
- 58.5625632
+ -1.1700357,
+ 60.6646181
],
[
- -6.0536224,
- 58.5625632
+ -1.5222599,
+ 60.6668304
],
[
- -6.0536224,
- 58.1568843
+ -1.5237866,
+ 60.6084426
],
[
- -6.1470062,
- 58.1568843
+ -1.6975673,
+ 60.609536
],
[
- -6.1470062,
- 58.1105865
+ -1.7021271,
+ 60.4345249
],
[
- -6.2799798,
- 58.1105865
+ -1.5260578,
+ 60.4334111
],
[
- -6.2799798,
- 57.7122664
+ -1.5275203,
+ 60.3770719
],
[
- -6.1591302,
- 57.7122664
+ -1.8751127,
+ 60.3792746
],
[
- -6.1591302,
- 57.6667563
+ -1.8781372,
+ 60.2624647
],
[
- -5.9339104,
- 57.6667563
+ -1.7019645,
+ 60.2613443
],
[
- -5.9339104,
- 57.8892524
+ -1.7049134,
+ 60.1470532
],
[
- -5.80643,
- 57.8892524
- ],
+ -1.528659,
+ 60.1459283
+ ]
+ ],
+ [
[
- -5.80643,
- 57.9621767
+ -0.9847667,
+ 60.8943762
],
[
- -5.6141692,
- 57.9621767
+ -0.9860347,
+ 60.8361105
],
[
- -5.6141692,
- 58.0911236
+ -0.8078362,
+ 60.8351904
],
[
- -5.490819,
- 58.0911236
- ],
+ -0.8065683,
+ 60.8934578
+ ]
+ ],
+ [
[
- -5.490819,
- 58.3733281
+ -7.7696901,
+ 56.8788231
],
[
- -5.3199118,
- 58.3733281
+ -7.7614504,
+ 56.7608274
],
[
- -5.3199118,
- 58.75015
+ -7.6009049,
+ 56.7641903
],
[
- -3.5719977,
- 58.75015
+ -7.5972473,
+ 56.819332
],
[
- -3.5719977,
- 59.2091788
+ -7.4479894,
+ 56.8203948
],
[
- -3.1944501,
- 59.2091788
+ -7.4489319,
+ 56.8794098
],
[
- -3.1944501,
- 59.4759216
+ -7.2841369,
+ 56.8794098
],
[
- -2.243583,
- 59.4759216
+ -7.2813904,
+ 57.0471152
],
[
- -2.243583,
- 59.1388749
+ -7.1303283,
+ 57.0515969
],
[
- -2.4611012,
- 59.1388749
+ -7.1330749,
+ 57.511801
],
[
- -2.4611012,
- 58.8185938
+ -6.96828,
+ 57.5147514
],
[
- -2.7407675,
- 58.8185938
+ -6.9765198,
+ 57.6854668
],
[
- -2.7407675,
- 58.5804743
+ -6.8062317,
+ 57.6913392
],
[
- -2.9116746,
- 58.5804743
+ -6.8089782,
+ 57.8041985
],
[
- -2.9116746,
- 58.1157523
+ -6.6496765,
+ 57.8071252
],
[
- -3.4865441,
- 58.1157523
+ -6.6441833,
+ 57.8612267
],
[
- -3.4865441,
- 57.740386
+ -6.3200866,
+ 57.8626878
],
[
- -1.7153245,
- 57.740386
+ -6.3200866,
+ 58.1551617
],
[
- -1.7153245,
- 57.2225558
+ -6.1607849,
+ 58.1522633
],
[
- -1.9794538,
- 57.2225558
+ -6.1552917,
+ 58.20874
],
[
- -1.9794538,
- 56.8760742
+ -5.9850036,
+ 58.2101869
],
[
- -2.1658979,
- 56.8760742
+ -5.9904968,
+ 58.2680163
],
[
- -2.1658979,
- 56.6333186
+ -6.1497986,
+ 58.2665717
],
[
- -2.3601106,
- 56.6333186
+ -6.1415588,
+ 58.5557514
],
[
- -2.3601106,
- 56.0477521
+ -6.3173401,
+ 58.5557514
],
[
- -1.9794538,
- 56.0477521
+ -6.3091003,
+ 58.4983923
],
[
- -1.9794538,
- 55.8650949
+ -6.4876282,
+ 58.4955218
],
[
- -1.4745008,
- 55.8650949
+ -6.4876282,
+ 58.4423768
],
[
- -1.4745008,
- 55.2499926
+ -6.6606628,
+ 58.4395018
],
[
- -1.3221997,
- 55.2499926
+ -6.6469299,
+ 58.3819525
],
[
- -1.3221997,
- 54.8221737
+ -6.8117248,
+ 58.3805125
],
[
- -1.0550014,
- 54.8221737
+ -6.8117248,
+ 58.3286357
],
[
- -1.0550014,
- 54.6746628
+ -6.9792663,
+ 58.3286357
],
[
- -0.6618765,
- 54.6746628
+ -6.9710266,
+ 58.2694608
],
[
- -0.6618765,
- 54.5527463
+ -7.1413147,
+ 58.2680163
],
[
- -0.3247617,
- 54.5527463
+ -7.1403816,
+ 58.0358742
],
[
- -0.3247617,
- 54.2865195
+ -7.3020636,
+ 58.0351031
],
[
- 0.0092841,
- 54.2865195
+ -7.3030347,
+ 57.9774797
],
[
- 0.0092841,
- 53.7938518
+ -7.1379539,
+ 57.9777372
],
[
- 0.2081962,
- 53.7938518
+ -7.1413526,
+ 57.9202792
],
[
- 0.2081962,
- 53.5217726
+ -7.1398961,
+ 57.8640206
],
[
- 0.4163548,
- 53.5217726
+ -7.3020636,
+ 57.862471
],
[
- 0.4163548,
- 53.0298851
+ -7.298484,
+ 57.7442293
],
[
- 1.4273388,
- 53.0298851
+ -7.4509193,
+ 57.7456951
],
[
- 1.4273388,
- 52.92021
+ -7.4550392,
+ 57.6899522
],
[
- 1.8333912,
- 52.92021
+ -7.6186131,
+ 57.6906048
],
[
- 1.8333912,
- 52.042488
+ -7.6198341,
+ 57.7456951
],
[
- 1.5235504,
- 52.042488
+ -7.7901222,
+ 57.7442293
],
[
- 1.5235504,
- 51.8261335
+ -7.7873756,
+ 57.6855477
],
[
- 1.2697049,
- 51.8261335
+ -7.6222332,
+ 57.6853817
],
[
- 1.2697049,
- 51.6967453
+ -7.6173779,
+ 57.5712602
],
[
- 1.116651,
- 51.6967453
+ -7.788285,
+ 57.5709998
],
[
- 1.116651,
- 51.440346
+ -7.7892561,
+ 57.512109
],
[
- 1.5235504,
- 51.440346
+ -7.7038025,
+ 57.5115874
],
[
- 1.5235504,
- 51.3331831
+ -7.6999183,
+ 57.4546902
],
[
- 1.4507565,
- 51.3331831
+ -7.5367796,
+ 57.4552126
],
[
- 1.4507565,
- 51.0207553
+ -7.5348375,
+ 57.5126306
],
[
- 1.0699883,
- 51.0207553
+ -7.4581235,
+ 57.5131521
],
[
- 1.0699883,
- 50.9008416
+ -7.4552103,
+ 57.2824165
],
[
- 0.7788126,
- 50.9008416
+ -7.6115515,
+ 57.2845158
],
[
- 0.7788126,
- 50.729843
+ -7.6144647,
+ 57.2272651
],
[
- -0.7255952,
- 50.729843
+ -7.451326,
+ 57.2256881
],
[
- -0.7255952,
- 50.7038437
+ -7.451326,
+ 57.1103873
],
[
- -1.0074383,
- 50.7038437
+ -7.6164068,
+ 57.1088053
],
[
- -1.0074383,
- 50.5736307
- ],
+ -7.603783,
+ 56.8792358
+ ]
+ ],
+ [
[
- -2.3625252,
- 50.5736307
+ -1.7106618,
+ 59.5626284
],
[
- -2.3625252,
- 50.4846421
+ -1.5417509,
+ 59.562215
],
[
- -2.4987805,
- 50.4846421
+ -1.5423082,
+ 59.5037224
],
[
- -2.4987805,
- 50.5736307
+ -1.7112191,
+ 59.5041365
+ ]
+ ]
+ ],
+ "terms_url": "http://geo.nls.uk/maps/",
+ "terms_text": "National Library of Scotland Historic Maps"
+ },
+ {
+ "name": "OS 1:25k historic (OSM)",
+ "type": "tms",
+ "template": "http://ooc.openstreetmap.org/os1/{zoom}/{x}/{y}.jpg",
+ "scaleExtent": [
+ 6,
+ 17
+ ],
+ "polygon": [
+ [
+ [
+ -9,
+ 49.8
],
[
- -3.4096378,
- 50.5736307
+ -9,
+ 61.1
],
[
- -3.4096378,
- 50.2057837
+ 1.9,
+ 61.1
],
[
- -3.6922446,
- 50.2057837
+ 1.9,
+ 49.8
],
[
- -3.6922446,
- 50.1347737
+ -9,
+ 49.8
+ ]
+ ]
+ ]
+ },
+ {
+ "name": "OS New Popular Edition historic",
+ "type": "tms",
+ "template": "http://ooc.openstreetmap.org/npe/{zoom}/{x}/{y}.png",
+ "polygon": [
+ [
+ [
+ -5.8,
+ 49.8
],
[
- -5.005468,
- 50.1347737
+ -5.8,
+ 55.8
],
[
- -5.005468,
- 49.9474456
+ 1.9,
+ 55.8
],
[
- -5.2839506,
- 49.9474456
+ 1.9,
+ 49.8
],
[
- -5.2839506,
- 50.0229734
+ -5.8,
+ 49.8
]
- ],
+ ]
+ ]
+ },
+ {
+ "name": "OS OpenData Locator",
+ "type": "tms",
+ "template": "http://tiles.itoworld.com/os_locator/{zoom}/{x}/{y}.png",
+ "polygon": [
[
[
- -6.4580707,
- 49.8673563
- ],
- [
- -6.4580707,
- 49.9499935
- ],
- [
- -6.3978807,
- 49.9499935
- ],
- [
- -6.3978807,
- 50.0053797
+ -9,
+ 49.8
],
[
- -6.1799606,
- 50.0053797
+ -9,
+ 61.1
],
[
- -6.1799606,
- 49.9168614
+ 1.9,
+ 61.1
],
[
- -6.2540201,
- 49.9168614
+ 1.9,
+ 49.8
],
[
- -6.2540201,
- 49.8673563
+ -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.8343165,
- 49.932156
+ -5.8292886,
+ 50.0229734
],
[
- -5.8343165,
- 49.9754641
+ -5.8292886,
+ 50.254819
],
[
- -5.7683254,
- 49.9754641
+ -5.373356,
+ 50.254819
],
[
- -5.7683254,
- 49.932156
- ]
- ],
- [
- [
- -1.9483797,
- 60.6885737
+ -5.373356,
+ 50.3530588
],
[
- -1.9483797,
- 60.3058841
+ -5.1756021,
+ 50.3530588
],
[
- -1.7543149,
- 60.3058841
+ -5.1756021,
+ 50.5925406
],
[
- -1.7543149,
- 60.1284428
+ -4.9970743,
+ 50.5925406
],
[
- -1.5754914,
- 60.1284428
+ -4.9970743,
+ 50.6935617
],
[
- -1.5754914,
- 59.797917
+ -4.7965738,
+ 50.6935617
],
[
- -1.0316959,
- 59.797917
+ -4.7965738,
+ 50.7822112
],
[
- -1.0316959,
- 60.0354518
+ -4.6949503,
+ 50.7822112
],
[
- -0.6626918,
- 60.0354518
+ -4.6949503,
+ 50.9607371
],
[
- -0.6626918,
- 60.9103862
+ -4.6043131,
+ 50.9607371
],
[
- -1.1034395,
- 60.9103862
+ -4.6043131,
+ 51.0692066
],
[
- -1.1034395,
- 60.8040022
+ -4.3792215,
+ 51.0692066
],
[
- -1.3506319,
- 60.8040022
+ -4.3792215,
+ 51.2521782
],
[
- -1.3506319,
- 60.6885737
- ]
- ],
- [
- [
- -2.203381,
- 60.1968568
+ -3.9039346,
+ 51.2521782
],
[
- -2.203381,
- 60.0929443
+ -3.9039346,
+ 51.2916998
],
[
- -1.9864011,
- 60.0929443
+ -3.7171671,
+ 51.2916998
],
[
- -1.9864011,
- 60.1968568
- ]
- ],
- [
- [
- -1.7543149,
- 59.5698289
+ -3.7171671,
+ 51.2453014
],
[
- -1.7543149,
- 59.4639383
+ -3.1486246,
+ 51.2453014
],
[
- -1.5373349,
- 59.4639383
+ -3.1486246,
+ 51.362067
],
[
- -1.5373349,
- 59.5698289
- ]
- ],
- [
- [
- -4.5585981,
- 59.1370518
+ -3.7446329,
+ 51.362067
],
[
- -4.5585981,
- 58.9569099
+ -3.7446329,
+ 51.4340386
],
[
- -4.2867004,
- 58.9569099
+ -3.8297769,
+ 51.4340386
],
[
- -4.2867004,
- 59.1370518
- ]
- ],
- [
- [
- -6.2787732,
- 59.2025744
+ -3.8297769,
+ 51.5298246
],
[
- -6.2787732,
- 59.0227769
+ -4.0852091,
+ 51.5298246
],
[
- -5.6650612,
- 59.0227769
+ -4.0852091,
+ 51.4939284
],
[
- -5.6650612,
- 59.2025744
- ]
- ],
- [
- [
- -8.7163482,
- 57.9440556
+ -4.3792215,
+ 51.4939284
],
[
- -8.7163482,
- 57.7305936
+ -4.3792215,
+ 51.5427168
],
[
- -8.3592926,
- 57.7305936
+ -5.1444195,
+ 51.5427168
],
[
- -8.3592926,
- 57.9440556
- ]
- ],
- [
- [
- -7.6077005,
- 50.4021026
+ -5.1444195,
+ 51.6296003
],
[
- -7.6077005,
- 50.2688657
+ -5.7387103,
+ 51.6296003
],
[
- -7.3907205,
- 50.2688657
+ -5.7387103,
+ 51.774037
],
[
- -7.3907205,
- 50.4021026
- ]
- ],
- [
- [
- -7.7304303,
- 58.3579902
+ -5.5095393,
+ 51.774037
],
[
- -7.7304303,
- 58.248313
+ -5.5095393,
+ 51.9802596
],
[
- -7.5134503,
- 58.248313
+ -5.198799,
+ 51.9802596
],
[
- -7.5134503,
- 58.3579902
- ]
- ]
- ]
- },
- {
- "name": "OS Scottish Popular historic",
- "type": "tms",
- "template": "http://ooc.openstreetmap.org/npescotland/tiles/{zoom}/{x}/{y}.jpg",
- "scaleExtent": [
- 6,
- 15
- ],
- "polygon": [
- [
- [
- -7.8,
- 54.5
+ -5.198799,
+ 52.0973358
],
[
- -7.8,
- 61.1
+ -4.8880588,
+ 52.0973358
],
[
- -1.1,
- 61.1
+ -4.8880588,
+ 52.1831557
],
[
- -1.1,
- 54.5
+ -4.4957492,
+ 52.1831557
],
[
- -7.8,
- 54.5
- ]
- ]
- ]
- },
- {
- "name": "OpenPT Map (overlay)",
- "type": "tms",
- "template": "http://openptmap.de/tiles/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 5,
- 16
- ],
- "polygon": [
- [
- [
- 6.4901072,
- 53.665658
+ -4.4957492,
+ 52.2925739
],
[
- 8.5665347,
- 53.9848257
+ -4.3015365,
+ 52.2925739
],
[
- 8.1339457,
- 54.709715
+ -4.3015365,
+ 52.3685318
],
[
- 8.317796,
- 55.0952362
+ -4.1811246,
+ 52.3685318
],
[
- 10.1887438,
- 54.7783834
+ -4.1811246,
+ 52.7933685
],
[
- 10.6321475,
- 54.4778841
+ -4.4413696,
+ 52.7933685
],
[
- 11.2702164,
- 54.6221504
+ -4.4413696,
+ 52.7369614
],
[
- 11.681176,
- 54.3709243
+ -4.8569847,
+ 52.7369614
],
[
- 12.0272473,
- 54.3898199
+ -4.8569847,
+ 52.9317255
],
[
- 13.3250145,
- 54.8531617
+ -4.7288044,
+ 52.9317255
],
[
- 13.9198245,
- 54.6972173
+ -4.7288044,
+ 53.5038599
],
[
- 14.2118221,
- 54.1308273
+ -4.1578191,
+ 53.5038599
],
[
- 14.493005,
- 53.2665063
+ -4.1578191,
+ 53.4113498
],
[
- 14.1577485,
- 52.8766495
+ -3.3110518,
+ 53.4113498
],
[
- 14.7525584,
- 52.5819369
+ -3.3110518,
+ 53.5038599
],
[
- 15.0986297,
- 51.0171541
+ -3.2333667,
+ 53.5038599
],
[
- 14.9364088,
- 50.8399279
+ -3.2333667,
+ 54.0159169
],
[
- 14.730929,
- 50.7920977
+ -3.3926211,
+ 54.0159169
],
[
- 14.4389313,
- 50.8808862
+ -3.3926211,
+ 54.1980953
],
[
- 12.9573138,
- 50.3939044
+ -3.559644,
+ 54.1980953
],
[
- 12.51391,
- 50.3939044
+ -3.559644,
+ 54.433732
],
[
- 12.3084302,
- 50.1173237
+ -3.7188984,
+ 54.433732
],
[
- 12.6112425,
- 49.9088337
+ -3.7188984,
+ 54.721897
],
[
- 12.394948,
- 49.7344006
+ -4.3015365,
+ 54.721897
],
[
- 12.7734634,
- 49.4047626
+ -4.3015365,
+ 54.6140739
],
[
- 14.1469337,
- 48.6031036
+ -5.0473132,
+ 54.6140739
],
[
- 14.6768553,
- 48.6531391
+ -5.0473132,
+ 54.7532915
],
[
- 15.0661855,
- 49.0445497
+ -5.2298731,
+ 54.7532915
],
[
- 16.2666202,
- 48.7459305
+ -5.2298731,
+ 55.2190799
],
[
- 16.4937294,
- 48.8741286
+ -5.6532567,
+ 55.2190799
],
[
- 16.904689,
- 48.7173975
+ -5.6532567,
+ 55.250088
],
[
- 16.9371332,
- 48.5315383
+ -5.8979647,
+ 55.250088
],
[
- 16.8384693,
- 48.3823161
+ -5.8979647,
+ 55.4822462
],
[
- 17.2017097,
- 48.010204
+ -6.5933212,
+ 55.4822462
],
[
- 17.1214145,
- 47.6997605
+ -6.5933212,
+ 56.3013441
],
[
- 16.777292,
- 47.6585709
+ -7.1727691,
+ 56.3013441
],
[
- 16.6090543,
- 47.7460598
+ -7.1727691,
+ 56.5601822
],
[
- 16.410228,
- 47.6637214
+ -6.8171722,
+ 56.5601822
],
[
- 16.7352326,
- 47.6147714
+ -6.8171722,
+ 56.6991713
],
[
- 16.5555242,
- 47.3589738
+ -6.5315276,
+ 56.6991713
],
[
- 16.4790525,
- 46.9768539
+ -6.5315276,
+ 56.9066964
],
[
- 16.0355168,
- 46.8096295
+ -6.811679,
+ 56.9066964
],
[
- 16.0508112,
- 46.6366332
+ -6.811679,
+ 57.3716613
],
[
- 14.9572663,
- 46.6313822
+ -6.8721038,
+ 57.3716613
],
[
- 14.574908,
- 46.3892866
+ -6.8721038,
+ 57.5518893
],
[
- 12.3954655,
- 46.6891149
+ -7.0973235,
+ 57.5518893
],
[
- 12.1507562,
- 47.0550608
+ -7.0973235,
+ 57.2411085
],
[
- 11.1183887,
- 46.9142058
+ -7.1742278,
+ 57.2411085
],
[
- 11.0342699,
- 46.7729797
+ -7.1742278,
+ 56.9066964
],
[
- 10.4836739,
- 46.8462544
+ -7.3719817,
+ 56.9066964
],
[
- 10.4607324,
- 46.5472973
+ -7.3719817,
+ 56.8075885
],
[
- 10.1013156,
- 46.5735879
+ -7.5202972,
+ 56.8075885
],
[
- 10.2007287,
- 46.1831867
+ -7.5202972,
+ 56.7142479
],
[
- 9.8948421,
- 46.3629068
+ -7.8306806,
+ 56.7142479
],
[
- 9.5966026,
- 46.2889758
+ -7.8306806,
+ 56.8994605
],
[
- 9.2983631,
- 46.505206
+ -7.6494061,
+ 56.8994605
],
[
- 9.2830687,
- 46.2572605
+ -7.6494061,
+ 57.4739617
],
[
- 9.0536537,
- 45.7953255
+ -7.8306806,
+ 57.4739617
],
[
- 8.4265861,
- 46.2466846
+ -7.8306806,
+ 57.7915584
],
[
- 8.4418804,
- 46.4736161
+ -7.4736249,
+ 57.7915584
],
[
- 7.8759901,
- 45.9284607
+ -7.4736249,
+ 58.086063
],
[
- 7.0959791,
- 45.8645956
+ -7.1879804,
+ 58.086063
],
[
- 6.7747981,
- 46.1620044
+ -7.1879804,
+ 58.367197
],
[
- 6.8206811,
- 46.4051083
+ -6.8034589,
+ 58.367197
],
[
- 6.5453831,
- 46.4578142
+ -6.8034589,
+ 58.4155786
],
[
- 6.3312624,
- 46.3840116
+ -6.638664,
+ 58.4155786
],
[
- 6.3847926,
- 46.2466846
+ -6.638664,
+ 58.4673277
],
[
- 5.8953739,
- 46.0878021
+ -6.5178143,
+ 58.4673277
],
[
- 6.1171418,
- 46.3681838
+ -6.5178143,
+ 58.5625632
],
[
- 6.0942003,
- 46.5998657
+ -6.0536224,
+ 58.5625632
],
[
- 6.4383228,
- 46.7782169
+ -6.0536224,
+ 58.1568843
],
[
- 6.4306756,
- 46.9298747
+ -6.1470062,
+ 58.1568843
],
[
- 7.0806847,
- 47.3460216
+ -6.1470062,
+ 58.1105865
],
[
- 6.8436226,
- 47.3719227
+ -6.2799798,
+ 58.1105865
],
[
- 6.9965659,
- 47.5012373
+ -6.2799798,
+ 57.7122664
],
[
- 7.1800979,
- 47.5064033
+ -6.1591302,
+ 57.7122664
],
[
- 7.2336281,
- 47.439206
+ -6.1591302,
+ 57.6667563
],
[
- 7.4553959,
- 47.4805683
+ -5.9339104,
+ 57.6667563
],
[
- 7.7842241,
- 48.645735
+ -5.9339104,
+ 57.8892524
],
[
- 8.1971711,
- 49.0282701
+ -5.80643,
+ 57.8892524
],
[
- 7.6006921,
- 49.0382974
+ -5.80643,
+ 57.9621767
],
[
- 7.4477487,
- 49.1634679
+ -5.6141692,
+ 57.9621767
],
[
- 7.2030394,
- 49.1034255
+ -5.6141692,
+ 58.0911236
],
[
- 6.6677378,
- 49.1634679
+ -5.490819,
+ 58.0911236
],
[
- 6.6371491,
- 49.3331933
+ -5.490819,
+ 58.3733281
],
[
- 6.3542039,
- 49.4576194
+ -5.3199118,
+ 58.3733281
],
[
- 6.5453831,
- 49.8043366
+ -5.3199118,
+ 58.75015
],
[
- 6.2471436,
- 49.873384
+ -3.5719977,
+ 58.75015
],
[
- 6.0789059,
- 50.1534883
+ -3.5719977,
+ 59.2091788
],
[
- 6.3618511,
- 50.3685934
+ -3.1944501,
+ 59.2091788
],
[
- 6.0865531,
- 50.7039632
+ -3.1944501,
+ 59.4759216
],
[
- 5.8800796,
- 51.0513752
+ -2.243583,
+ 59.4759216
],
[
- 6.1247889,
- 51.1618085
+ -2.243583,
+ 59.1388749
],
[
- 6.1936134,
- 51.491527
+ -2.4611012,
+ 59.1388749
],
[
- 5.9641984,
- 51.7526501
+ -2.4611012,
+ 58.8185938
],
[
- 6.0253758,
- 51.8897286
+ -2.7407675,
+ 58.8185938
],
[
- 6.4536171,
- 51.8661241
+ -2.7407675,
+ 58.5804743
],
[
- 6.8436226,
- 51.9557552
+ -2.9116746,
+ 58.5804743
],
[
- 6.6906793,
- 52.0499105
+ -2.9116746,
+ 58.1157523
],
[
- 7.0042131,
- 52.2282603
+ -3.4865441,
+ 58.1157523
],
[
- 7.0195074,
- 52.4525245
+ -3.4865441,
+ 57.740386
],
[
- 6.6983264,
- 52.4665032
+ -1.7153245,
+ 57.740386
],
[
- 6.6906793,
- 52.6524628
+ -1.7153245,
+ 57.2225558
],
[
- 7.0348017,
- 52.6385432
+ -1.9794538,
+ 57.2225558
],
[
- 7.0730376,
- 52.8330151
+ -1.9794538,
+ 56.8760742
],
[
- 7.2183337,
- 52.9852064
+ -2.1658979,
+ 56.8760742
],
[
- 7.1953922,
- 53.3428087
+ -2.1658979,
+ 56.6333186
],
[
- 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,
- 18
- ],
- "terms_url": "http://openstreetmap.org/",
- "terms_text": "© OpenStreetMap contributors, CC-BY-SA",
- "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": "© OpenStreetMap contributors. North: South: East: West: ",
- "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
+ -2.3601106,
+ 56.6333186
],
[
- 120.445995,
- 15.984
+ -2.3601106,
+ 56.0477521
],
[
- 120.446134,
- 15.974459
+ -1.9794538,
+ 56.0477521
],
[
- 120.476464,
- 15.974592
+ -1.9794538,
+ 55.8650949
],
[
- 120.594247,
- 15.946832
+ -1.4745008,
+ 55.8650949
],
[
- 120.598064,
- 16.090795
+ -1.4745008,
+ 55.2499926
],
[
- 120.596537,
- 16.197999
+ -1.3221997,
+ 55.2499926
],
[
- 120.368537,
- 16.218527
+ -1.3221997,
+ 54.8221737
],
[
- 120.347576,
- 16.042308
+ -1.0550014,
+ 54.8221737
],
[
- 120.336593,
- 15.985768
- ]
- ],
- [
- [
- 120.8268,
- 15.3658
+ -1.0550014,
+ 54.6746628
],
[
- 121.2684,
- 15.2602
+ -0.6618765,
+ 54.6746628
],
[
- 121.2699,
- 14.7025
+ -0.6618765,
+ 54.5527463
],
[
- 120.695,
- 14.8423
- ]
- ]
- ]
- },
- {
- "name": "Slovakia EEA CORINE 2006",
- "type": "tms",
- "template": "http://www.freemap.sk/tms/clc/{zoom}/{x}/{y}.png",
- "polygon": [
- [
- [
- 19.83682,
- 49.25529
+ -0.3247617,
+ 54.5527463
],
[
- 19.80075,
- 49.42385
+ -0.3247617,
+ 54.2865195
],
[
- 19.60437,
- 49.48058
+ 0.0092841,
+ 54.2865195
],
[
- 19.49179,
- 49.63961
+ 0.0092841,
+ 53.7938518
],
[
- 19.21831,
- 49.52604
+ 0.2081962,
+ 53.7938518
],
[
- 19.16778,
- 49.42521
+ 0.2081962,
+ 53.5217726
],
[
- 19.00308,
- 49.42236
+ 0.4163548,
+ 53.5217726
],
[
- 18.97611,
- 49.5308
+ 0.4163548,
+ 53.0298851
],
[
- 18.54685,
- 49.51425
+ 1.4273388,
+ 53.0298851
],
[
- 18.31432,
- 49.33818
+ 1.4273388,
+ 52.92021
],
[
- 18.15913,
- 49.2961
+ 1.8333912,
+ 52.92021
],
[
- 18.05564,
- 49.11134
+ 1.8333912,
+ 52.042488
],
[
- 17.56396,
- 48.84938
+ 1.5235504,
+ 52.042488
],
[
- 17.17929,
- 48.88816
+ 1.5235504,
+ 51.8261335
],
[
- 17.058,
- 48.81105
+ 1.2697049,
+ 51.8261335
],
[
- 16.90426,
- 48.61947
+ 1.2697049,
+ 51.6967453
],
[
- 16.79685,
- 48.38561
+ 1.116651,
+ 51.6967453
],
[
- 17.06762,
- 48.01116
+ 1.116651,
+ 51.440346
],
[
- 17.32787,
- 47.97749
+ 1.5235504,
+ 51.440346
],
[
- 17.51699,
- 47.82535
+ 1.5235504,
+ 51.3331831
],
[
- 17.74776,
- 47.73093
+ 1.4507565,
+ 51.3331831
],
[
- 18.29515,
- 47.72075
+ 1.4507565,
+ 51.0207553
],
[
- 18.67959,
- 47.75541
+ 1.0699883,
+ 51.0207553
],
[
- 18.89755,
- 47.81203
+ 1.0699883,
+ 50.9008416
],
[
- 18.79463,
- 47.88245
+ 0.7788126,
+ 50.9008416
],
[
- 18.84318,
- 48.04046
+ 0.7788126,
+ 50.729843
],
[
- 19.46212,
- 48.05333
+ -0.7255952,
+ 50.729843
],
[
- 19.62064,
- 48.22938
+ -0.7255952,
+ 50.7038437
],
[
- 19.89585,
- 48.09387
+ -1.0074383,
+ 50.7038437
],
[
- 20.33766,
- 48.2643
+ -1.0074383,
+ 50.5736307
],
[
- 20.55395,
- 48.52358
+ -2.3625252,
+ 50.5736307
],
[
- 20.82335,
- 48.55714
+ -2.3625252,
+ 50.4846421
],
[
- 21.10271,
- 48.47096
+ -2.4987805,
+ 50.4846421
],
[
- 21.45863,
- 48.55513
+ -2.4987805,
+ 50.5736307
],
[
- 21.74536,
- 48.31435
+ -3.4096378,
+ 50.5736307
],
[
- 22.15293,
- 48.37179
+ -3.4096378,
+ 50.2057837
],
[
- 22.61255,
- 49.08914
+ -3.6922446,
+ 50.2057837
],
[
- 22.09997,
- 49.23814
+ -3.6922446,
+ 50.1347737
],
[
- 21.9686,
- 49.36363
+ -5.005468,
+ 50.1347737
],
[
- 21.6244,
- 49.46989
+ -5.005468,
+ 49.9474456
],
[
- 21.06873,
- 49.46402
+ -5.2839506,
+ 49.9474456
],
[
- 20.94336,
- 49.31088
+ -5.2839506,
+ 50.0229734
+ ]
+ ],
+ [
+ [
+ -6.4580707,
+ 49.8673563
],
[
- 20.73052,
- 49.44006
+ -6.4580707,
+ 49.9499935
],
[
- 20.22804,
- 49.41714
+ -6.3978807,
+ 49.9499935
],
[
- 20.05234,
- 49.23052
+ -6.3978807,
+ 50.0053797
],
[
- 19.83682,
- 49.25529
- ]
- ]
- ],
- "terms_url": "http://www.eea.europa.eu/data-and-maps/data/clc-2006-vector-data-version-1",
- "terms_text": "EEA Corine 2006"
- },
- {
- "name": "Slovakia EEA GMES Urban Atlas",
- "type": "tms",
- "template": "http://www.freemap.sk/tms/urbanatlas/{zoom}/{x}/{y}.png",
- "polygon": [
- [
- [
- 19.83682,
- 49.25529
+ -6.1799606,
+ 50.0053797
],
[
- 19.80075,
- 49.42385
+ -6.1799606,
+ 49.9168614
],
[
- 19.60437,
- 49.48058
+ -6.2540201,
+ 49.9168614
],
[
- 19.49179,
- 49.63961
- ],
+ -6.2540201,
+ 49.8673563
+ ]
+ ],
+ [
[
- 19.21831,
- 49.52604
+ -5.8343165,
+ 49.932156
],
[
- 19.16778,
- 49.42521
+ -5.8343165,
+ 49.9754641
],
[
- 19.00308,
- 49.42236
+ -5.7683254,
+ 49.9754641
],
[
- 18.97611,
- 49.5308
- ],
+ -5.7683254,
+ 49.932156
+ ]
+ ],
+ [
[
- 18.54685,
- 49.51425
+ -1.9483797,
+ 60.6885737
],
[
- 18.31432,
- 49.33818
+ -1.9483797,
+ 60.3058841
],
[
- 18.15913,
- 49.2961
+ -1.7543149,
+ 60.3058841
],
[
- 18.05564,
- 49.11134
+ -1.7543149,
+ 60.1284428
],
[
- 17.56396,
- 48.84938
+ -1.5754914,
+ 60.1284428
],
[
- 17.17929,
- 48.88816
+ -1.5754914,
+ 59.797917
],
[
- 17.058,
- 48.81105
+ -1.0316959,
+ 59.797917
],
[
- 16.90426,
- 48.61947
+ -1.0316959,
+ 60.0354518
],
[
- 16.79685,
- 48.38561
+ -0.6626918,
+ 60.0354518
],
[
- 17.06762,
- 48.01116
+ -0.6626918,
+ 60.9103862
],
[
- 17.32787,
- 47.97749
+ -1.1034395,
+ 60.9103862
],
[
- 17.51699,
- 47.82535
+ -1.1034395,
+ 60.8040022
],
[
- 17.74776,
- 47.73093
+ -1.3506319,
+ 60.8040022
],
[
- 18.29515,
- 47.72075
- ],
+ -1.3506319,
+ 60.6885737
+ ]
+ ],
+ [
[
- 18.67959,
- 47.75541
+ -2.203381,
+ 60.1968568
],
[
- 18.89755,
- 47.81203
+ -2.203381,
+ 60.0929443
],
[
- 18.79463,
- 47.88245
+ -1.9864011,
+ 60.0929443
],
[
- 18.84318,
- 48.04046
- ],
+ -1.9864011,
+ 60.1968568
+ ]
+ ],
+ [
[
- 19.46212,
- 48.05333
+ -1.7543149,
+ 59.5698289
],
[
- 19.62064,
- 48.22938
+ -1.7543149,
+ 59.4639383
],
[
- 19.89585,
- 48.09387
+ -1.5373349,
+ 59.4639383
],
[
- 20.33766,
- 48.2643
- ],
+ -1.5373349,
+ 59.5698289
+ ]
+ ],
+ [
[
- 20.55395,
- 48.52358
+ -4.5585981,
+ 59.1370518
],
[
- 20.82335,
- 48.55714
+ -4.5585981,
+ 58.9569099
],
[
- 21.10271,
- 48.47096
+ -4.2867004,
+ 58.9569099
],
[
- 21.45863,
- 48.55513
+ -4.2867004,
+ 59.1370518
+ ]
+ ],
+ [
+ [
+ -6.2787732,
+ 59.2025744
],
[
- 21.74536,
- 48.31435
+ -6.2787732,
+ 59.0227769
],
[
- 22.15293,
- 48.37179
+ -5.6650612,
+ 59.0227769
],
[
- 22.61255,
- 49.08914
+ -5.6650612,
+ 59.2025744
+ ]
+ ],
+ [
+ [
+ -8.7163482,
+ 57.9440556
],
[
- 22.09997,
- 49.23814
+ -8.7163482,
+ 57.7305936
],
[
- 21.9686,
- 49.36363
+ -8.3592926,
+ 57.7305936
],
[
- 21.6244,
- 49.46989
+ -8.3592926,
+ 57.9440556
+ ]
+ ],
+ [
+ [
+ -7.6077005,
+ 50.4021026
],
[
- 21.06873,
- 49.46402
+ -7.6077005,
+ 50.2688657
],
[
- 20.94336,
- 49.31088
+ -7.3907205,
+ 50.2688657
],
[
- 20.73052,
- 49.44006
+ -7.3907205,
+ 50.4021026
+ ]
+ ],
+ [
+ [
+ -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/urban-atlas",
- "terms_text": "EEA GMES Urban Atlas"
+ ]
},
{
- "name": "Slovakia Historic Maps",
+ "name": "OS Scottish Popular historic",
"type": "tms",
- "template": "http://tms.freemap.sk/historicke/{zoom}/{x}/{y}.png",
+ "template": "http://ooc.openstreetmap.org/npescotland/tiles/{zoom}/{x}/{y}.jpg",
"scaleExtent": [
- 0,
- 12
+ 6,
+ 15
],
"polygon": [
[
[
- 16.8196949,
- 47.4927236
+ -7.8,
+ 54.5
],
[
- 16.8196949,
- 49.5030322
+ -7.8,
+ 61.1
],
[
- 22.8388318,
- 49.5030322
+ -1.1,
+ 61.1
],
[
- 22.8388318,
- 47.4927236
+ -1.1,
+ 54.5
],
[
- 16.8196949,
- 47.4927236
+ -7.8,
+ 54.5
]
]
]
},
{
- "name": "South Africa CD:NGI Aerial",
+ "name": "OpenPT Map (overlay)",
"type": "tms",
- "template": "http://{switch:a,b,c}.aerial.openstreetmap.org.za/ngi-aerial/{zoom}/{x}/{y}.jpg",
+ "template": "http://openptmap.de/tiles/{zoom}/{x}/{y}.png",
"scaleExtent": [
- 1,
- 22
+ 5,
+ 16
],
"polygon": [
[
[
- 17.8396817,
- -32.7983384
+ 6.4901072,
+ 53.665658
],
[
- 17.8893509,
- -32.6972835
+ 8.5665347,
+ 53.9848257
],
[
- 18.00364,
- -32.6982187
+ 8.1339457,
+ 54.709715
],
[
- 18.0991679,
- -32.7485251
+ 8.317796,
+ 55.0952362
],
[
- 18.2898747,
- -32.5526645
+ 10.1887438,
+ 54.7783834
],
[
- 18.2930182,
- -32.0487089
+ 10.6321475,
+ 54.4778841
],
[
- 18.105455,
- -31.6454966
+ 11.2702164,
+ 54.6221504
],
[
- 17.8529257,
- -31.3443951
+ 11.681176,
+ 54.3709243
],
[
- 17.5480046,
- -30.902171
+ 12.0272473,
+ 54.3898199
],
[
- 17.4044506,
- -30.6374731
+ 13.3250145,
+ 54.8531617
],
[
- 17.2493704,
- -30.3991663
+ 13.9198245,
+ 54.6972173
],
[
- 16.9936977,
- -29.6543552
+ 14.2118221,
+ 54.1308273
],
[
- 16.7987996,
- -29.19437
+ 14.493005,
+ 53.2665063
],
[
- 16.5494139,
- -28.8415949
+ 14.1577485,
+ 52.8766495
],
[
- 16.4498691,
- -28.691876
+ 14.7525584,
+ 52.5819369
],
[
- 16.4491046,
- -28.5515766
+ 15.0986297,
+ 51.0171541
],
[
- 16.6002551,
- -28.4825663
+ 14.9364088,
+ 50.8399279
],
[
- 16.7514057,
- -28.4486958
+ 14.730929,
+ 50.7920977
],
[
- 16.7462192,
- -28.2458973
+ 14.4389313,
+ 50.8808862
],
[
- 16.8855148,
- -28.04729
+ 12.9573138,
+ 50.3939044
],
[
- 16.9929502,
- -28.0244005
+ 12.51391,
+ 50.3939044
],
[
- 17.0529659,
- -28.0257086
+ 12.3084302,
+ 50.1173237
],
[
- 17.1007562,
- -28.0338839
+ 12.6112425,
+ 49.9088337
],
[
- 17.2011527,
- -28.0930546
+ 12.394948,
+ 49.7344006
],
[
- 17.2026346,
- -28.2328424
+ 12.7734634,
+ 49.4047626
],
[
- 17.2474611,
- -28.2338215
+ 14.1469337,
+ 48.6031036
],
[
- 17.2507953,
- -28.198892
+ 14.6768553,
+ 48.6531391
],
[
- 17.3511919,
- -28.1975861
+ 15.0661855,
+ 49.0445497
],
[
- 17.3515624,
- -28.2442655
+ 16.2666202,
+ 48.7459305
],
[
- 17.4015754,
- -28.2452446
+ 16.4937294,
+ 48.8741286
],
[
- 17.4149122,
- -28.3489751
+ 16.904689,
+ 48.7173975
],
[
- 17.4008345,
- -28.547997
+ 16.9371332,
+ 48.5315383
],
[
- 17.4526999,
- -28.5489733
+ 16.8384693,
+ 48.3823161
],
[
- 17.4512071,
- -28.6495106
+ 17.2017097,
+ 48.010204
],
[
- 17.4983599,
- -28.6872054
+ 17.1214145,
+ 47.6997605
],
[
- 17.6028204,
- -28.6830048
+ 16.777292,
+ 47.6585709
],
[
- 17.6499732,
- -28.6967928
+ 16.6090543,
+ 47.7460598
],
[
- 17.6525928,
- -28.7381457
+ 16.410228,
+ 47.6637214
],
[
- 17.801386,
- -28.7381457
+ 16.7352326,
+ 47.6147714
],
[
- 17.9994276,
- -28.7560602
+ 16.5555242,
+ 47.3589738
],
[
- 18.0002748,
- -28.7956172
+ 16.4790525,
+ 46.9768539
],
[
- 18.1574507,
- -28.8718055
+ 16.0355168,
+ 46.8096295
],
[
- 18.5063811,
- -28.8718055
+ 16.0508112,
+ 46.6366332
],
[
- 18.6153564,
- -28.8295875
+ 14.9572663,
+ 46.6313822
],
[
- 18.9087513,
- -28.8277516
+ 14.574908,
+ 46.3892866
],
[
- 19.1046973,
- -28.9488548
+ 12.3954655,
+ 46.6891149
],
[
- 19.1969071,
- -28.9378513
+ 12.1507562,
+ 47.0550608
],
[
- 19.243012,
- -28.8516164
+ 11.1183887,
+ 46.9142058
],
[
- 19.2314858,
- -28.802963
+ 11.0342699,
+ 46.7729797
],
[
- 19.2587296,
- -28.7009928
+ 10.4836739,
+ 46.8462544
],
[
- 19.4431493,
- -28.6973163
+ 10.4607324,
+ 46.5472973
],
[
- 19.5500289,
- -28.4958332
+ 10.1013156,
+ 46.5735879
],
[
- 19.6967264,
- -28.4939914
+ 10.2007287,
+ 46.1831867
],
[
- 19.698822,
- -28.4479358
+ 9.8948421,
+ 46.3629068
],
[
- 19.8507587,
- -28.4433291
+ 9.5966026,
+ 46.2889758
],
[
- 19.8497109,
- -28.4027818
+ 9.2983631,
+ 46.505206
],
[
- 19.9953605,
- -28.399095
- ],
- [
- 19.9893671,
- -24.7497859
- ],
- [
- 20.2916682,
- -24.9192346
+ 9.2830687,
+ 46.2572605
],
[
- 20.4724562,
- -25.1501701
+ 9.0536537,
+ 45.7953255
],
[
- 20.6532441,
- -25.4529449
+ 8.4265861,
+ 46.2466846
],
[
- 20.733265,
- -25.6801957
+ 8.4418804,
+ 46.4736161
],
[
- 20.8281046,
- -25.8963498
+ 7.8759901,
+ 45.9284607
],
[
- 20.8429232,
- -26.215851
+ 7.0959791,
+ 45.8645956
],
[
- 20.6502804,
- -26.4840868
+ 6.7747981,
+ 46.1620044
],
[
- 20.6532441,
- -26.8204869
+ 6.8206811,
+ 46.4051083
],
[
- 21.0889134,
- -26.846933
+ 6.5453831,
+ 46.4578142
],
[
- 21.6727695,
- -26.8389998
+ 6.3312624,
+ 46.3840116
],
[
- 21.7765003,
- -26.6696268
+ 6.3847926,
+ 46.2466846
],
[
- 21.9721069,
- -26.6431395
+ 5.8953739,
+ 46.0878021
],
[
- 22.2803355,
- -26.3274702
+ 6.1171418,
+ 46.3681838
],
[
- 22.5707817,
- -26.1333967
+ 6.0942003,
+ 46.5998657
],
[
- 22.7752795,
- -25.6775246
+ 6.4383228,
+ 46.7782169
],
[
- 23.0005235,
- -25.2761948
+ 6.4306756,
+ 46.9298747
],
[
- 23.4658301,
- -25.2735148
+ 7.0806847,
+ 47.3460216
],
[
- 23.883717,
- -25.597366
+ 6.8436226,
+ 47.3719227
],
[
- 24.2364017,
- -25.613402
+ 6.9965659,
+ 47.5012373
],
[
- 24.603905,
- -25.7896563
+ 7.1800979,
+ 47.5064033
],
[
- 25.110704,
- -25.7389432
+ 7.2336281,
+ 47.439206
],
[
- 25.5078447,
- -25.6855376
+ 7.4553959,
+ 47.4805683
],
[
- 25.6441766,
- -25.4823781
+ 7.7842241,
+ 48.645735
],
[
- 25.8419267,
- -24.7805437
+ 8.1971711,
+ 49.0282701
],
[
- 25.846641,
- -24.7538456
+ 7.6006921,
+ 49.0382974
],
[
- 26.3928487,
- -24.6332894
+ 7.4477487,
+ 49.1634679
],
[
- 26.4739066,
- -24.5653312
+ 7.2030394,
+ 49.1034255
],
[
- 26.5089966,
- -24.4842437
+ 6.6677378,
+ 49.1634679
],
[
- 26.5861946,
- -24.4075775
+ 6.6371491,
+ 49.3331933
],
[
- 26.7300635,
- -24.3014458
+ 6.3542039,
+ 49.4576194
],
[
- 26.8567384,
- -24.2499463
+ 6.5453831,
+ 49.8043366
],
[
- 26.8574402,
- -24.1026901
+ 6.2471436,
+ 49.873384
],
[
- 26.9215471,
- -23.8990957
+ 6.0789059,
+ 50.1534883
],
[
- 26.931831,
- -23.8461891
+ 6.3618511,
+ 50.3685934
],
[
- 26.9714827,
- -23.6994344
+ 6.0865531,
+ 50.7039632
],
[
- 27.0006074,
- -23.6367644
+ 5.8800796,
+ 51.0513752
],
[
- 27.0578041,
- -23.6052574
+ 6.1247889,
+ 51.1618085
],
[
- 27.1360547,
- -23.5203437
+ 6.1936134,
+ 51.491527
],
[
- 27.3339623,
- -23.3973792
+ 5.9641984,
+ 51.7526501
],
[
- 27.5144057,
- -23.3593929
+ 6.0253758,
+ 51.8897286
],
[
- 27.5958145,
- -23.2085465
+ 6.4536171,
+ 51.8661241
],
[
- 27.8098634,
- -23.0994957
+ 6.8436226,
+ 51.9557552
],
[
- 27.8828506,
- -23.0620496
+ 6.6906793,
+ 52.0499105
],
[
- 27.9382928,
- -22.9496487
+ 7.0042131,
+ 52.2282603
],
[
- 28.0407556,
- -22.8255118
+ 7.0195074,
+ 52.4525245
],
[
- 28.2056786,
- -22.6552861
+ 6.6983264,
+ 52.4665032
],
[
- 28.3397223,
- -22.5639374
+ 6.6906793,
+ 52.6524628
],
[
- 28.4906093,
- -22.560697
+ 7.0348017,
+ 52.6385432
],
[
- 28.6108769,
- -22.5400248
+ 7.0730376,
+ 52.8330151
],
[
- 28.828175,
- -22.4550173
+ 7.2183337,
+ 52.9852064
],
[
- 28.9285324,
- -22.4232328
+ 7.1953922,
+ 53.3428087
],
[
- 28.9594116,
- -22.3090081
- ],
+ 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,
+ 18
+ ],
+ "terms_url": "http://openstreetmap.org/",
+ "terms_text": "© OpenStreetMap contributors, CC-BY-SA",
+ "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": "© OpenStreetMap contributors. North: South: East: West: ",
+ "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": [
+ [
[
- 29.0162574,
- -22.208335
+ 120.336593,
+ 15.985768
],
[
- 29.2324117,
- -22.1693453
+ 120.445995,
+ 15.984
],
[
- 29.3531213,
- -22.1842926
+ 120.446134,
+ 15.974459
],
[
- 29.6548952,
- -22.1186426
+ 120.476464,
+ 15.974592
],
[
- 29.7777102,
- -22.1361956
+ 120.594247,
+ 15.946832
],
[
- 29.9292989,
- -22.1849425
+ 120.598064,
+ 16.090795
],
[
- 30.1166795,
- -22.2830348
+ 120.596537,
+ 16.197999
],
[
- 30.2563377,
- -22.2914767
+ 120.368537,
+ 16.218527
],
[
- 30.3033582,
- -22.3395204
+ 120.347576,
+ 16.042308
],
[
- 30.5061784,
- -22.3057617
- ],
+ 120.336593,
+ 15.985768
+ ]
+ ],
+ [
[
- 30.8374279,
- -22.284983
+ 120.8268,
+ 15.3658
],
[
- 31.0058599,
- -22.3077095
+ 121.2684,
+ 15.2602
],
[
- 31.1834152,
- -22.3232913
+ 121.2699,
+ 14.7025
],
[
- 31.2930586,
- -22.3674647
- ],
+ 120.695,
+ 14.8423
+ ]
+ ]
+ ]
+ },
+ {
+ "name": "Slovakia EEA CORINE 2006",
+ "type": "tms",
+ "template": "http://www.freemap.sk/tms/clc/{zoom}/{x}/{y}.png",
+ "polygon": [
+ [
[
- 31.5680579,
- -23.1903385
+ 19.83682,
+ 49.25529
],
[
- 31.5568311,
- -23.4430809
+ 19.80075,
+ 49.42385
],
[
- 31.6931122,
- -23.6175209
+ 19.60437,
+ 49.48058
],
[
- 31.7119696,
- -23.741136
+ 19.49179,
+ 49.63961
],
[
- 31.7774743,
- -23.8800628
+ 19.21831,
+ 49.52604
],
[
- 31.8886337,
- -23.9481098
+ 19.16778,
+ 49.42521
],
[
- 31.9144386,
- -24.1746736
+ 19.00308,
+ 49.42236
],
[
- 31.9948307,
- -24.3040878
+ 18.97611,
+ 49.5308
],
[
- 32.0166656,
- -24.4405988
+ 18.54685,
+ 49.51425
],
[
- 32.0077331,
- -24.6536578
+ 18.31432,
+ 49.33818
],
[
- 32.019643,
- -24.9140701
+ 18.15913,
+ 49.2961
],
[
- 32.035523,
- -25.0849767
+ 18.05564,
+ 49.11134
],
[
- 32.019643,
- -25.3821442
+ 17.56396,
+ 48.84938
],
[
- 31.9928457,
- -25.4493771
+ 17.17929,
+ 48.88816
],
[
- 31.9997931,
- -25.5165725
+ 17.058,
+ 48.81105
],
[
- 32.0057481,
- -25.6078978
+ 16.90426,
+ 48.61947
],
[
- 32.0057481,
- -25.6624806
+ 16.79685,
+ 48.38561
],
[
- 31.9362735,
- -25.8403721
+ 17.06762,
+ 48.01116
],
[
- 31.9809357,
- -25.9546537
+ 17.32787,
+ 47.97749
],
[
- 31.8687838,
- -26.0037251
+ 17.51699,
+ 47.82535
],
[
- 31.4162062,
- -25.7277683
+ 17.74776,
+ 47.73093
],
[
- 31.3229117,
- -25.7438611
+ 18.29515,
+ 47.72075
],
[
- 31.2504595,
- -25.8296526
+ 18.67959,
+ 47.75541
],
[
- 31.1393001,
- -25.9162746
+ 18.89755,
+ 47.81203
],
[
- 31.1164727,
- -25.9912361
+ 18.79463,
+ 47.88245
],
[
- 30.9656135,
- -26.2665756
+ 18.84318,
+ 48.04046
],
[
- 30.8921689,
- -26.3279703
+ 19.46212,
+ 48.05333
],
[
- 30.8534616,
- -26.4035568
+ 19.62064,
+ 48.22938
],
[
- 30.8226943,
- -26.4488849
+ 19.89585,
+ 48.09387
],
[
- 30.8022583,
- -26.5240694
+ 20.33766,
+ 48.2643
],
[
- 30.8038369,
- -26.8082089
+ 20.55395,
+ 48.52358
],
[
- 30.9020939,
- -26.7807451
+ 20.82335,
+ 48.55714
],
[
- 30.9100338,
- -26.8489495
+ 21.10271,
+ 48.47096
],
[
- 30.9824859,
- -26.9082627
+ 21.45863,
+ 48.55513
],
[
- 30.976531,
- -27.0029222
+ 21.74536,
+ 48.31435
],
[
- 31.0034434,
- -27.0441587
+ 22.15293,
+ 48.37179
],
[
- 31.1543322,
- -27.1980416
+ 22.61255,
+ 49.08914
],
[
- 31.5015607,
- -27.311117
+ 22.09997,
+ 49.23814
],
[
- 31.9700183,
- -27.311117
+ 21.9686,
+ 49.36363
],
[
- 31.9700183,
- -27.120472
+ 21.6244,
+ 49.46989
],
[
- 31.9769658,
- -27.050664
+ 21.06873,
+ 49.46402
],
[
- 32.0002464,
- -26.7983892
+ 20.94336,
+ 49.31088
],
[
- 32.1069826,
- -26.7984645
+ 20.73052,
+ 49.44006
],
[
- 32.3114546,
- -26.8479493
+ 20.22804,
+ 49.41714
],
[
- 32.899986,
- -26.8516059
+ 20.05234,
+ 49.23052
],
[
- 32.886091,
- -26.9816971
- ],
+ 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": [
+ [
[
- 32.709427,
- -27.4785436
+ 19.83682,
+ 49.25529
],
[
- 32.6240724,
- -27.7775144
+ 19.80075,
+ 49.42385
],
[
- 32.5813951,
- -28.07479
+ 19.60437,
+ 49.48058
],
[
- 32.5387178,
- -28.2288046
+ 19.49179,
+ 49.63961
],
[
- 32.4275584,
- -28.5021568
+ 19.21831,
+ 49.52604
],
[
- 32.3640388,
- -28.5945699
+ 19.16778,
+ 49.42521
],
[
- 32.0702603,
- -28.8469827
+ 19.00308,
+ 49.42236
],
[
- 31.9878832,
- -28.9069497
+ 18.97611,
+ 49.5308
],
[
- 31.7764818,
- -28.969487
+ 18.54685,
+ 49.51425
],
[
- 31.4638459,
- -29.2859343
+ 18.31432,
+ 49.33818
],
[
- 31.359634,
- -29.3854348
+ 18.15913,
+ 49.2961
],
[
- 31.1680825,
- -29.6307408
+ 18.05564,
+ 49.11134
],
[
- 31.064863,
- -29.7893535
+ 17.56396,
+ 48.84938
],
[
- 31.0534493,
- -29.8470469
+ 17.17929,
+ 48.88816
],
[
- 31.0669933,
- -29.8640319
+ 17.058,
+ 48.81105
],
[
- 31.0455459,
- -29.9502017
+ 16.90426,
+ 48.61947
],
[
- 30.9518556,
- -30.0033946
+ 16.79685,
+ 48.38561
],
[
- 30.8651833,
- -30.1024093
+ 17.06762,
+ 48.01116
],
[
- 30.7244725,
- -30.392502
+ 17.32787,
+ 47.97749
],
[
- 30.3556256,
- -30.9308873
+ 17.51699,
+ 47.82535
],
[
- 30.0972364,
- -31.2458274
+ 17.74776,
+ 47.73093
],
[
- 29.8673136,
- -31.4304296
+ 18.29515,
+ 47.72075
],
[
- 29.7409393,
- -31.5014699
+ 18.67959,
+ 47.75541
],
[
- 29.481312,
- -31.6978686
+ 18.89755,
+ 47.81203
],
[
- 28.8943171,
- -32.2898903
+ 18.79463,
+ 47.88245
],
[
- 28.5497137,
- -32.5894641
+ 18.84318,
+ 48.04046
],
[
- 28.1436499,
- -32.8320732
+ 19.46212,
+ 48.05333
],
[
- 28.0748735,
- -32.941689
+ 19.62064,
+ 48.22938
],
[
- 27.8450942,
- -33.082869
+ 19.89585,
+ 48.09387
],
[
- 27.3757956,
- -33.3860685
+ 20.33766,
+ 48.2643
],
[
- 26.8805407,
- -33.6458951
+ 20.55395,
+ 48.52358
],
[
- 26.5916871,
- -33.7480756
+ 20.82335,
+ 48.55714
],
[
- 26.4527308,
- -33.7935795
+ 21.10271,
+ 48.47096
],
[
- 26.206754,
- -33.7548943
+ 21.45863,
+ 48.55513
],
[
- 26.0077897,
- -33.7223961
+ 21.74536,
+ 48.31435
],
[
- 25.8055494,
- -33.7524272
+ 22.15293,
+ 48.37179
],
[
- 25.7511073,
- -33.8006512
+ 22.61255,
+ 49.08914
],
[
- 25.6529079,
- -33.8543597
+ 22.09997,
+ 49.23814
],
[
- 25.6529079,
- -33.9469768
+ 21.9686,
+ 49.36363
],
[
- 25.7195789,
- -34.0040115
+ 21.6244,
+ 49.46989
],
[
- 25.7202807,
- -34.0511235
+ 21.06873,
+ 49.46402
],
[
- 25.5508915,
- -34.063151
+ 20.94336,
+ 49.31088
],
[
- 25.3504571,
- -34.0502627
+ 20.73052,
+ 49.44006
],
[
- 25.2810609,
- -34.0020322
+ 20.22804,
+ 49.41714
],
[
- 25.0476316,
- -33.9994588
+ 20.05234,
+ 49.23052
],
[
- 24.954724,
- -34.0043594
- ],
+ 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": [
+ [
[
- 24.9496586,
- -34.1010363
+ 16.8196949,
+ 47.4927236
],
[
- 24.8770358,
- -34.1506456
+ 16.8196949,
+ 49.5030322
],
[
- 24.8762914,
- -34.2005281
+ 22.8388318,
+ 49.5030322
],
[
- 24.8532574,
- -34.2189562
+ 22.8388318,
+ 47.4927236
],
[
- 24.7645287,
- -34.2017946
+ 16.8196949,
+ 47.4927236
+ ]
+ ]
+ ]
+ },
+ {
+ "name": "South Africa CD:NGI Aerial",
+ "type": "tms",
+ "template": "http://{switch:a,b,c}.aerial.openstreetmap.org.za/ngi-aerial/{zoom}/{x}/{y}.jpg",
+ "scaleExtent": [
+ 1,
+ 22
+ ],
+ "polygon": [
+ [
+ [
+ 17.8396817,
+ -32.7983384
],
[
- 24.5001356,
- -34.2003254
+ 17.8893509,
+ -32.6972835
],
[
- 24.3486733,
- -34.1163824
+ 18.00364,
+ -32.6982187
],
[
- 24.1988819,
- -34.1019039
+ 18.0991679,
+ -32.7485251
],
[
- 23.9963377,
- -34.0514443
+ 18.2898747,
+ -32.5526645
],
[
- 23.8017509,
- -34.0524332
+ 18.2930182,
+ -32.0487089
],
[
- 23.7493589,
- -34.0111855
+ 18.105455,
+ -31.6454966
],
[
- 23.4973536,
- -34.009014
+ 17.8529257,
+ -31.3443951
],
[
- 23.4155191,
- -34.0434586
+ 17.5480046,
+ -30.902171
],
[
- 23.4154284,
- -34.1140433
+ 17.4044506,
+ -30.6374731
],
[
- 22.9000853,
- -34.0993009
+ 17.2493704,
+ -30.3991663
],
[
- 22.8412418,
- -34.0547911
+ 16.9936977,
+ -29.6543552
],
[
- 22.6470321,
- -34.0502627
+ 16.7987996,
+ -29.19437
],
[
- 22.6459843,
- -34.0072768
+ 16.5494139,
+ -28.8415949
],
[
- 22.570016,
- -34.0064081
+ 16.4498691,
+ -28.691876
],
[
- 22.5050499,
- -34.0645866
+ 16.4491046,
+ -28.5515766
],
[
- 22.2519968,
- -34.0645866
+ 16.6002551,
+ -28.4825663
],
[
- 22.2221334,
- -34.1014701
+ 16.7514057,
+ -28.4486958
],
[
- 22.1621197,
- -34.1057019
+ 16.7462192,
+ -28.2458973
],
[
- 22.1712431,
- -34.1521766
+ 16.8855148,
+ -28.04729
],
[
- 22.1576913,
- -34.2180897
+ 16.9929502,
+ -28.0244005
],
[
- 22.0015632,
- -34.2172232
+ 17.0529659,
+ -28.0257086
],
[
- 21.9496952,
- -34.3220009
+ 17.1007562,
+ -28.0338839
],
[
- 21.8611528,
- -34.4007145
+ 17.2011527,
+ -28.0930546
],
[
- 21.5614708,
- -34.4020114
+ 17.2026346,
+ -28.2328424
],
[
- 21.5468011,
- -34.3661242
+ 17.2474611,
+ -28.2338215
],
[
- 21.501744,
- -34.3669892
+ 17.2507953,
+ -28.198892
],
[
- 21.5006961,
- -34.4020114
+ 17.3511919,
+ -28.1975861
],
[
- 21.4194886,
- -34.4465247
+ 17.3515624,
+ -28.2442655
],
[
- 21.1978706,
- -34.4478208
+ 17.4015754,
+ -28.2452446
],
[
- 21.0988193,
- -34.3991325
+ 17.4149122,
+ -28.3489751
],
[
- 21.0033746,
- -34.3753872
+ 17.4008345,
+ -28.547997
],
[
- 20.893192,
- -34.3997115
+ 17.4526999,
+ -28.5489733
],
[
- 20.8976647,
- -34.4854003
+ 17.4512071,
+ -28.6495106
],
[
- 20.7446802,
- -34.4828092
+ 17.4983599,
+ -28.6872054
],
[
- 20.5042011,
- -34.486264
+ 17.6028204,
+ -28.6830048
],
[
- 20.2527197,
- -34.701477
+ 17.6499732,
+ -28.6967928
],
[
- 20.0803502,
- -34.8361855
+ 17.6525928,
+ -28.7381457
],
[
- 19.9923317,
- -34.8379056
+ 17.801386,
+ -28.7381457
],
[
- 19.899074,
- -34.8275845
+ 17.9994276,
+ -28.7560602
],
[
- 19.8938348,
- -34.7936018
+ 18.0002748,
+ -28.7956172
],
[
- 19.5972963,
- -34.7961833
+ 18.1574507,
+ -28.8718055
],
[
- 19.3929677,
- -34.642015
+ 18.5063811,
+ -28.8718055
],
[
- 19.2877095,
- -34.6404784
+ 18.6153564,
+ -28.8295875
],
[
- 19.2861377,
- -34.5986563
+ 18.9087513,
+ -28.8277516
],
[
- 19.3474363,
- -34.5244458
+ 19.1046973,
+ -28.9488548
],
[
- 19.3285256,
- -34.4534372
+ 19.1969071,
+ -28.9378513
],
[
- 19.098001,
- -34.449981
+ 19.243012,
+ -28.8516164
],
[
- 19.0725583,
- -34.3802371
+ 19.2314858,
+ -28.802963
],
[
- 19.0023531,
- -34.3525593
+ 19.2587296,
+ -28.7009928
],
[
- 18.9520568,
- -34.3949373
+ 19.4431493,
+ -28.6973163
],
[
- 18.7975006,
- -34.3936403
+ 19.5500289,
+ -28.4958332
],
[
- 18.7984174,
- -34.1016376
+ 19.6967264,
+ -28.4939914
],
[
- 18.501748,
- -34.1015292
+ 19.698822,
+ -28.4479358
],
[
- 18.4999545,
- -34.3616945
+ 19.8507587,
+ -28.4433291
],
[
- 18.4477325,
- -34.3620007
+ 19.8497109,
+ -28.4027818
],
[
- 18.4479944,
- -34.3522691
+ 19.9953605,
+ -28.399095
],
[
- 18.3974362,
- -34.3514041
+ 19.9893671,
+ -24.7497859
],
[
- 18.3971742,
- -34.3022959
+ 20.2916682,
+ -24.9192346
],
[
- 18.3565705,
- -34.3005647
+ 20.4724562,
+ -25.1501701
],
[
- 18.3479258,
- -34.2020436
+ 20.6532441,
+ -25.4529449
],
[
- 18.2972095,
- -34.1950274
+ 20.733265,
+ -25.6801957
],
[
- 18.2951139,
- -33.9937138
+ 20.8281046,
+ -25.8963498
],
[
- 18.3374474,
- -33.9914079
+ 20.8429232,
+ -26.215851
],
[
- 18.3476638,
- -33.8492427
+ 20.6502804,
+ -26.4840868
],
[
- 18.3479258,
- -33.781555
+ 20.6532441,
+ -26.8204869
],
[
- 18.4124718,
- -33.7448849
+ 21.0889134,
+ -26.846933
],
[
- 18.3615477,
- -33.6501624
+ 21.6727695,
+ -26.8389998
],
[
- 18.2992013,
- -33.585591
+ 21.7765003,
+ -26.6696268
],
[
- 18.2166839,
- -33.448872
+ 21.9721069,
+ -26.6431395
],
[
- 18.1389858,
- -33.3974083
+ 22.2803355,
+ -26.3274702
],
[
- 17.9473472,
- -33.1602647
+ 22.5707817,
+ -26.1333967
],
[
- 17.8855247,
- -33.0575732
+ 22.7752795,
+ -25.6775246
],
[
- 17.8485884,
- -32.9668505
+ 23.0005235,
+ -25.2761948
],
[
- 17.8396817,
- -32.8507302
- ]
- ]
- ]
- },
- {
- "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
+ 23.4658301,
+ -25.2735148
],
[
- 8.6,
- 47.39
+ 23.883717,
+ -25.597366
],
[
- 8.77,
- 47.39
+ 24.2364017,
+ -25.613402
],
[
- 8.77,
- 47.31
+ 24.603905,
+ -25.7896563
],
[
- 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
+ 25.110704,
+ -25.7389432
],
[
- 12.0943104,
- 55.3842256
+ 25.5078447,
+ -25.6855376
],
[
- 12.1573875,
- 55.3833103
+ 25.6441766,
+ -25.4823781
],
[
- 12.1587287,
- 55.4013326
+ 25.8419267,
+ -24.7805437
],
[
- 12.1903468,
- 55.400558
+ 25.846641,
+ -24.7538456
],
[
- 12.1931411,
- 55.4364665
+ 26.3928487,
+ -24.6332894
],
[
- 12.2564251,
- 55.4347995
+ 26.4739066,
+ -24.5653312
],
[
- 12.2547073,
- 55.4168882
+ 26.5089966,
+ -24.4842437
],
[
- 12.3822489,
- 55.4134349
+ 26.5861946,
+ -24.4075775
],
[
- 12.3795942,
- 55.3954143
+ 26.7300635,
+ -24.3014458
],
[
- 12.4109213,
- 55.3946958
+ 26.8567384,
+ -24.2499463
],
[
- 12.409403,
- 55.3766417
+ 26.8574402,
+ -24.1026901
],
[
- 12.4407807,
- 55.375779
+ 26.9215471,
+ -23.8990957
],
[
- 12.4394142,
- 55.3578314
+ 26.931831,
+ -23.8461891
],
[
- 12.4707413,
- 55.3569971
+ 26.9714827,
+ -23.6994344
],
[
- 12.4629475,
- 55.2672214
+ 27.0006074,
+ -23.6367644
],
[
- 12.4315633,
- 55.2681491
+ 27.0578041,
+ -23.6052574
],
[
- 12.430045,
- 55.2502103
+ 27.1360547,
+ -23.5203437
],
[
- 12.3672011,
- 55.2519673
+ 27.3339623,
+ -23.3973792
],
[
- 12.3656858,
- 55.2340267
+ 27.5144057,
+ -23.3593929
],
[
- 12.2714604,
- 55.2366031
+ 27.5958145,
+ -23.2085465
],
[
- 12.2744467,
- 55.272476
+ 27.8098634,
+ -23.0994957
],
[
- 12.2115654,
- 55.2741475
+ 27.8828506,
+ -23.0620496
],
[
- 12.2130078,
- 55.2920322
+ 27.9382928,
+ -22.9496487
],
[
- 12.1815665,
- 55.2928638
+ 28.0407556,
+ -22.8255118
],
[
- 12.183141,
- 55.3107091
+ 28.2056786,
+ -22.6552861
],
[
- 12.2144897,
- 55.3100981
+ 28.3397223,
+ -22.5639374
],
[
- 12.2159927,
- 55.3279764
+ 28.4906093,
+ -22.560697
],
[
- 12.1214458,
- 55.3303379
+ 28.6108769,
+ -22.5400248
],
[
- 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",
- "polygon": [
- [
- [
- -0.856,
- 51.071
+ 28.828175,
+ -22.4550173
],
[
- -0.856,
- 51.473
+ 28.9285324,
+ -22.4232328
],
[
- 0.062,
- 51.473
+ 28.9594116,
+ -22.3090081
],
[
- 0.062,
- 51.071
+ 29.0162574,
+ -22.208335
],
[
- -0.856,
- 51.071
- ]
- ]
- ]
- },
- {
- "name": "TIGER 2012 Roads Overlay",
- "type": "tms",
- "description": "Public domain road data from the US Government.",
- "template": "http://{switch:a,b,c}.tile.openstreetmap.us/tiger2012_roads_expanded/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 16,
- 19
- ],
- "polygon": [
- [
- [
- -124.7617886,
- 48.4130148
+ 29.2324117,
+ -22.1693453
],
[
- -124.6059492,
- 45.90245
+ 29.3531213,
+ -22.1842926
],
[
- -124.9934269,
- 40.0557614
+ 29.6548952,
+ -22.1186426
],
[
- -122.5369737,
- 36.8566086
+ 29.7777102,
+ -22.1361956
],
[
- -119.9775867,
- 33.0064099
+ 29.9292989,
+ -22.1849425
],
[
- -117.675935,
- 32.4630223
+ 30.1166795,
+ -22.2830348
],
[
- -114.8612307,
- 32.4799891
+ 30.2563377,
+ -22.2914767
],
[
- -111.0089311,
- 31.336015
+ 30.3033582,
+ -22.3395204
],
[
- -108.1992687,
- 31.3260016
+ 30.5061784,
+ -22.3057617
],
[
- -108.1871123,
- 31.7755116
+ 30.8374279,
+ -22.284983
],
[
- -106.5307225,
- 31.7820947
+ 31.0058599,
+ -22.3077095
],
[
- -106.4842052,
- 31.7464455
+ 31.1834152,
+ -22.3232913
],
[
- -106.429317,
- 31.7520583
+ 31.2930586,
+ -22.3674647
],
[
- -106.2868855,
- 31.5613291
+ 31.5680579,
+ -23.1903385
],
[
- -106.205248,
- 31.446704
+ 31.5568311,
+ -23.4430809
],
[
- -105.0205259,
- 30.5360988
+ 31.6931122,
+ -23.6175209
],
[
- -104.5881916,
- 29.6997856
+ 31.7119696,
+ -23.741136
],
[
- -103.2518856,
- 28.8908685
+ 31.7774743,
+ -23.8800628
],
[
- -102.7173632,
- 29.3920567
+ 31.8886337,
+ -23.9481098
],
[
- -102.1513983,
- 29.7475702
+ 31.9144386,
+ -24.1746736
],
[
- -101.2552871,
- 29.4810523
+ 31.9948307,
+ -24.3040878
],
[
- -100.0062436,
- 28.0082173
+ 32.0166656,
+ -24.4405988
],
[
- -99.2351068,
- 26.4475962
+ 32.0077331,
+ -24.6536578
],
[
- -98.0109067,
- 25.9928035
+ 32.019643,
+ -24.9140701
],
[
- -97.435024,
- 25.8266009
+ 32.035523,
+ -25.0849767
],
[
- -96.9555259,
- 25.9821589
+ 32.019643,
+ -25.3821442
],
[
- -96.8061741,
- 27.7978168
+ 31.9928457,
+ -25.4493771
],
[
- -95.5563349,
- 28.5876066
+ 31.9997931,
+ -25.5165725
],
[
- -93.7405308,
- 29.4742093
+ 32.0057481,
+ -25.6078978
],
[
- -90.9028456,
- 28.8564513
+ 32.0057481,
+ -25.6624806
],
[
- -88.0156706,
- 28.9944338
+ 31.9362735,
+ -25.8403721
],
[
- -88.0162494,
- 30.0038862
+ 31.9809357,
+ -25.9546537
],
[
- -86.0277506,
- 30.0047454
+ 31.8687838,
+ -26.0037251
],
[
- -84.0187909,
- 28.9961781
+ 31.4162062,
+ -25.7277683
],
[
- -81.9971976,
- 25.9826768
+ 31.3229117,
+ -25.7438611
],
[
- -81.9966618,
- 25.0134917
+ 31.2504595,
+ -25.8296526
],
[
- -84.0165592,
- 25.0125783
+ 31.1393001,
+ -25.9162746
],
[
- -84.0160068,
- 24.0052745
+ 31.1164727,
+ -25.9912361
],
[
- -80.0199985,
- 24.007096
+ 30.9656135,
+ -26.2665756
],
[
- -79.8901116,
- 26.8550713
+ 30.8921689,
+ -26.3279703
],
[
- -80.0245309,
- 32.0161282
+ 30.8534616,
+ -26.4035568
],
[
- -75.4147385,
- 35.0531894
+ 30.8226943,
+ -26.4488849
],
[
- -74.0211163,
- 39.5727927
+ 30.8022583,
+ -26.5240694
],
[
- -72.002019,
- 40.9912464
+ 30.8038369,
+ -26.8082089
],
[
- -69.8797398,
- 40.9920457
+ 30.9020939,
+ -26.7807451
],
[
- -69.8489304,
- 43.2619916
+ 30.9100338,
+ -26.8489495
],
[
- -66.9452845,
- 44.7104937
+ 30.9824859,
+ -26.9082627
],
[
- -67.7596632,
- 47.0990024
+ 30.976531,
+ -27.0029222
],
[
- -69.2505131,
- 47.5122328
+ 31.0034434,
+ -27.0441587
],
[
- -70.4614886,
- 46.2176574
+ 31.1543322,
+ -27.1980416
],
[
- -71.412273,
- 45.254878
+ 31.5015607,
+ -27.311117
],
[
- -72.0222508,
- 45.0059846
+ 31.9700183,
+ -27.311117
],
[
- -75.0798841,
- 44.9802854
+ 31.9700183,
+ -27.120472
],
[
- -76.9023061,
- 43.8024568
+ 31.9769658,
+ -27.050664
],
[
- -78.7623935,
- 43.6249578
+ 32.0002464,
+ -26.7983892
],
[
- -79.15798,
- 43.4462589
+ 32.1069826,
+ -26.7984645
],
[
- -79.0060087,
- 42.8005317
+ 32.3114546,
+ -26.8479493
],
[
- -82.662475,
- 41.6889458
+ 32.899986,
+ -26.8516059
],
[
- -82.1761642,
- 43.588535
+ 32.886091,
+ -26.9816971
],
[
- -83.2813977,
- 46.138853
+ 32.709427,
+ -27.4785436
],
[
- -87.5064535,
- 48.0142702
+ 32.6240724,
+ -27.7775144
],
[
- -88.3492194,
- 48.2963271
+ 32.5813951,
+ -28.07479
],
[
- -89.4353148,
- 47.9837822
+ 32.5387178,
+ -28.2288046
],
[
- -93.9981078,
- 49.0067142
+ 32.4275584,
+ -28.5021568
],
[
- -95.1105379,
- 49.412004
+ 32.3640388,
+ -28.5945699
],
[
- -96.0131199,
- 49.0060547
+ 32.0702603,
+ -28.8469827
],
[
- -123.3228926,
- 49.0042878
+ 31.9878832,
+ -28.9069497
],
[
- -123.2275233,
- 48.1849927
- ]
- ],
- [
- [
- -160.5787616,
- 22.5062947
+ 31.7764818,
+ -28.969487
],
[
- -160.5782192,
- 21.4984647
+ 31.4638459,
+ -29.2859343
],
[
- -158.7470604,
- 21.2439843
+ 31.359634,
+ -29.3854348
],
[
- -157.5083185,
- 20.995803
+ 31.1680825,
+ -29.6307408
],
[
- -155.9961942,
- 18.7790194
+ 31.064863,
+ -29.7893535
],
[
- -154.6217803,
- 18.7586966
+ 31.0534493,
+ -29.8470469
],
[
- -154.6890176,
- 19.8805722
+ 31.0669933,
+ -29.8640319
],
[
- -156.2927622,
- 21.2225888
+ 31.0455459,
+ -29.9502017
],
[
- -157.5047384,
- 21.9984962
+ 30.9518556,
+ -30.0033946
],
[
- -159.0093692,
- 22.5070181
- ]
- ],
- [
- [
- -167.1571546,
- 68.721974
+ 30.8651833,
+ -30.1024093
],
[
- -164.8553982,
- 67.0255078
+ 30.7244725,
+ -30.392502
],
[
- -168.002195,
- 66.0017503
+ 30.3556256,
+ -30.9308873
],
[
- -169.0087448,
- 66.001546
+ 30.0972364,
+ -31.2458274
],
[
- -169.0075381,
- 64.9987675
+ 29.8673136,
+ -31.4304296
],
[
- -172.5143281,
- 63.8767267
+ 29.7409393,
+ -31.5014699
],
[
- -173.8197023,
- 59.74014
+ 29.481312,
+ -31.6978686
],
[
- -162.5018149,
- 58.0005815
+ 28.8943171,
+ -32.2898903
],
[
- -160.0159024,
- 58.0012389
+ 28.5497137,
+ -32.5894641
],
[
- -160.0149725,
- 57.000035
+ 28.1436499,
+ -32.8320732
],
[
- -160.5054788,
- 56.9999017
+ 28.0748735,
+ -32.941689
],
[
- -165.8092575,
- 54.824847
+ 27.8450942,
+ -33.082869
],
[
- -178.000097,
- 52.2446469
+ 27.3757956,
+ -33.3860685
],
[
- -177.9992996,
- 51.2554252
+ 26.8805407,
+ -33.6458951
],
[
- -171.4689067,
- 51.8215329
+ 26.5916871,
+ -33.7480756
],
[
- -162.40251,
- 53.956664
+ 26.4527308,
+ -33.7935795
],
[
- -159.0075717,
- 55.002502
+ 26.206754,
+ -33.7548943
],
[
- -158.0190709,
- 55.0027849
+ 26.0077897,
+ -33.7223961
],
[
- -151.9963213,
- 55.9991902
+ 25.8055494,
+ -33.7524272
],
[
- -151.500341,
- 57.9987853
+ 25.7511073,
+ -33.8006512
],
[
- -151.5012894,
- 58.9919816
+ 25.6529079,
+ -33.8543597
],
[
- -138.5159989,
- 58.9953194
+ 25.6529079,
+ -33.9469768
],
[
- -138.5150471,
- 57.9986434
+ 25.7195789,
+ -34.0040115
],
[
- -133.9948193,
- 54.0031685
+ 25.7202807,
+ -34.0511235
],
[
- -130.0044418,
- 54.0043387
+ 25.5508915,
+ -34.063151
],
[
- -130.0070826,
- 57.0000507
+ 25.3504571,
+ -34.0502627
],
[
- -131.975877,
- 56.9995156
+ 25.2810609,
+ -34.0020322
],
[
- -135.1229873,
- 59.756601
+ 25.0476316,
+ -33.9994588
],
[
- -138.0071813,
- 59.991805
+ 24.954724,
+ -34.0043594
],
[
- -139.1715881,
- 60.4127229
+ 24.9496586,
+ -34.1010363
],
[
- -140.9874011,
- 61.0118551
+ 24.8770358,
+ -34.1506456
],
[
- -140.9683975,
- 69.9535069
+ 24.8762914,
+ -34.2005281
],
[
- -156.176891,
- 71.5633329
+ 24.8532574,
+ -34.2189562
],
[
- -160.413634,
- 70.7397728
+ 24.7645287,
+ -34.2017946
],
[
- -163.0218273,
- 69.9707435
+ 24.5001356,
+ -34.2003254
],
[
- -164.9717003,
- 68.994689
- ]
- ]
- ],
- "overlay": true
- },
- {
- "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
+ 24.3486733,
+ -34.1163824
],
[
- 1.2015377,
- 43.6329729
+ 24.1988819,
+ -34.1019039
],
[
- 1.2011107,
- 43.6554932
+ 23.9963377,
+ -34.0514443
],
[
- 1.2227985,
- 43.6557029
+ 23.8017509,
+ -34.0524332
],
[
- 1.2226231,
- 43.6653353
+ 23.7493589,
+ -34.0111855
],
[
- 1.2275341,
- 43.6653849
+ 23.4973536,
+ -34.009014
],
[
- 1.2275417,
- 43.6656387
+ 23.4155191,
+ -34.0434586
],
[
- 1.2337568,
- 43.6656883
+ 23.4154284,
+ -34.1140433
],
[
- 1.2337644,
- 43.6650153
+ 22.9000853,
+ -34.0993009
],
[
- 1.2351218,
- 43.6650319
+ 22.8412418,
+ -34.0547911
],
[
- 1.2350913,
- 43.6670729
+ 22.6470321,
+ -34.0502627
],
[
- 1.2443566,
- 43.6671556
+ 22.6459843,
+ -34.0072768
],
[
- 1.2441584,
- 43.6743925
+ 22.570016,
+ -34.0064081
],
[
- 1.2493973,
- 43.6744256
+ 22.5050499,
+ -34.0645866
],
[
- 1.2493973,
- 43.6746628
+ 22.2519968,
+ -34.0645866
],
[
- 1.2555666,
- 43.6747234
+ 22.2221334,
+ -34.1014701
],
[
- 1.2555742,
- 43.6744532
+ 22.1621197,
+ -34.1057019
],
[
- 1.2569545,
- 43.6744697
+ 22.1712431,
+ -34.1521766
],
[
- 1.2568782,
- 43.678529
+ 22.1576913,
+ -34.2180897
],
[
- 1.2874873,
- 43.6788257
+ 22.0015632,
+ -34.2172232
],
[
- 1.2870803,
- 43.7013229
+ 21.9496952,
+ -34.3220009
],
[
- 1.3088219,
- 43.7014632
+ 21.8611528,
+ -34.4007145
],
[
- 1.3086493,
- 43.7127673
+ 21.5614708,
+ -34.4020114
],
[
- 1.3303262,
- 43.7129544
+ 21.5468011,
+ -34.3661242
],
[
- 1.3300242,
- 43.7305221
+ 21.501744,
+ -34.3669892
],
[
- 1.3367106,
- 43.7305845
+ 21.5006961,
+ -34.4020114
],
[
- 1.3367322,
- 43.7312235
+ 21.4194886,
+ -34.4465247
],
[
- 1.3734338,
- 43.7310456
+ 21.1978706,
+ -34.4478208
],
[
- 1.3735848,
- 43.7245772
+ 21.0988193,
+ -34.3991325
],
[
- 1.4604504,
- 43.7252947
+ 21.0033746,
+ -34.3753872
],
[
- 1.4607783,
- 43.7028034
+ 20.893192,
+ -34.3997115
],
[
- 1.4824875,
- 43.7029516
+ 20.8976647,
+ -34.4854003
],
[
- 1.4829828,
- 43.6692071
+ 20.7446802,
+ -34.4828092
],
[
- 1.5046832,
- 43.6693616
+ 20.5042011,
+ -34.486264
],
[
- 1.5048383,
- 43.6581174
+ 20.2527197,
+ -34.701477
],
[
- 1.5265475,
- 43.6582656
+ 20.0803502,
+ -34.8361855
],
[
- 1.5266945,
- 43.6470298
+ 19.9923317,
+ -34.8379056
],
[
- 1.548368,
- 43.6471633
+ 19.899074,
+ -34.8275845
],
[
- 1.5485357,
- 43.6359385
+ 19.8938348,
+ -34.7936018
],
[
- 1.5702172,
- 43.636082
+ 19.5972963,
+ -34.7961833
],
[
- 1.5705123,
- 43.6135777
+ 19.3929677,
+ -34.642015
],
[
- 1.5488166,
- 43.6134276
+ 19.2877095,
+ -34.6404784
],
[
- 1.549097,
- 43.5909479
+ 19.2861377,
+ -34.5986563
],
[
- 1.5707695,
- 43.5910694
+ 19.3474363,
+ -34.5244458
],
[
- 1.5709373,
- 43.5798341
+ 19.3285256,
+ -34.4534372
],
[
- 1.5793714,
- 43.5798894
+ 19.098001,
+ -34.449981
],
[
- 1.5794782,
- 43.5737682
+ 19.0725583,
+ -34.3802371
],
[
- 1.5809119,
- 43.5737792
+ 19.0023531,
+ -34.3525593
],
[
- 1.5810859,
- 43.5573794
+ 18.9520568,
+ -34.3949373
],
[
- 1.5712334,
- 43.5573131
+ 18.7975006,
+ -34.3936403
],
[
- 1.5716504,
- 43.5235497
+ 18.7984174,
+ -34.1016376
],
[
- 1.3984804,
- 43.5222618
+ 18.501748,
+ -34.1015292
],
[
- 1.3986509,
- 43.5110113
+ 18.4999545,
+ -34.3616945
],
[
- 1.3120959,
- 43.5102543
+ 18.4477325,
+ -34.3620007
],
[
- 1.3118968,
- 43.5215192
+ 18.4479944,
+ -34.3522691
],
[
- 1.2902569,
- 43.5213126
+ 18.3974362,
+ -34.3514041
],
[
- 1.2898637,
- 43.5438168
+ 18.3971742,
+ -34.3022959
],
[
- 1.311517,
- 43.5440133
+ 18.3565705,
+ -34.3005647
],
[
- 1.3113271,
- 43.5552596
+ 18.3479258,
+ -34.2020436
],
[
- 1.3036924,
- 43.5551924
+ 18.2972095,
+ -34.1950274
],
[
- 1.3036117,
- 43.5595099
+ 18.2951139,
+ -33.9937138
],
[
- 1.2955449,
- 43.5594317
+ 18.3374474,
+ -33.9914079
],
[
- 1.2955449,
- 43.5595489
+ 18.3476638,
+ -33.8492427
],
[
- 1.2895595,
- 43.5594473
+ 18.3479258,
+ -33.781555
],
[
- 1.2892899,
- 43.5775366
+ 18.4124718,
+ -33.7448849
],
[
- 1.2675698,
- 43.5773647
+ 18.3615477,
+ -33.6501624
],
[
- 1.2673973,
- 43.5886141
+ 18.2992013,
+ -33.585591
],
[
- 1.25355,
- 43.5885047
+ 18.2166839,
+ -33.448872
],
[
- 1.2533774,
- 43.5956282
+ 18.1389858,
+ -33.3974083
],
[
- 1.2518029,
- 43.5956282
+ 17.9473472,
+ -33.1602647
],
[
- 1.2518029,
- 43.5949409
+ 17.8855247,
+ -33.0575732
],
[
- 1.2350437,
- 43.5947847
+ 17.8485884,
+ -32.9668505
],
[
- 1.2350437,
- 43.5945972
- ],
+ 17.8396817,
+ -32.8507302
+ ]
+ ]
+ ]
+ },
+ {
+ "name": "Stadt Uster Orthophoto 2008 10cm",
+ "type": "tms",
+ "template": "http://mapproxy.sosm.ch:8080/tiles/uster/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
+ "polygon": [
+ [
[
- 1.2239572,
- 43.5945972
+ 8.6,
+ 47.31
],
[
- 1.2239357,
- 43.5994708
- ],
- [
- 1.2139708,
- 43.599299
- ],
- [
- 1.2138845,
- 43.6046408
+ 8.6,
+ 47.39
],
[
- 1.2020647,
- 43.6044846
+ 8.77,
+ 47.39
],
[
- 1.2019464,
- 43.61048
+ 8.77,
+ 47.31
],
[
- 1.1924294,
- 43.6103695
+ 8.6,
+ 47.31
]
]
],
- "terms_url": "https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData",
- "terms_text": "ToulouseMetropole"
+ "terms_text": "Stadt Uster Vermessung Orthophoto 2008"
},
{
- "name": "Toulouse - Orthophotoplan 2011",
+ "name": "Stevns (Denmark)",
"type": "tms",
- "template": "http://wms.openstreetmap.fr/tms/1.0.0/toulouse_ortho2011/{zoom}/{x}/{y}",
+ "template": "http://{switch:a,b,c}.tile.openstreetmap.dk/stevns/2009/{zoom}/{x}/{y}.png",
"scaleExtent": [
0,
- 22
+ 20
],
"polygon": [
[
[
- 1.1135067,
- 43.6867566
+ 12.0913942,
+ 55.3491574
],
[
- 1.1351836,
- 43.6870842
+ 12.0943104,
+ 55.3842256
],
[
- 1.1348907,
- 43.6983471
+ 12.1573875,
+ 55.3833103
],
[
- 1.1782867,
- 43.6990338
+ 12.1587287,
+ 55.4013326
],
[
- 1.1779903,
- 43.7102786
+ 12.1903468,
+ 55.400558
],
[
- 1.1996591,
- 43.7106144
+ 12.1931411,
+ 55.4364665
],
[
- 1.1993387,
- 43.7218722
+ 12.2564251,
+ 55.4347995
],
[
- 1.2427356,
- 43.7225269
+ 12.2547073,
+ 55.4168882
],
[
- 1.2424336,
- 43.7337491
+ 12.3822489,
+ 55.4134349
],
[
- 1.2641536,
- 43.734092
+ 12.3795942,
+ 55.3954143
],
[
- 1.2638301,
- 43.7453588
+ 12.4109213,
+ 55.3946958
],
[
- 1.2855285,
- 43.7456548
+ 12.409403,
+ 55.3766417
],
[
- 1.2852481,
- 43.756935
+ 12.4407807,
+ 55.375779
],
[
- 1.306925,
- 43.757231
+ 12.4394142,
+ 55.3578314
],
[
- 1.3066446,
- 43.7684779
+ 12.4707413,
+ 55.3569971
],
[
- 1.3283431,
- 43.7687894
+ 12.4629475,
+ 55.2672214
],
[
- 1.3280842,
- 43.780034
+ 12.4315633,
+ 55.2681491
],
[
- 1.4367275,
- 43.7815757
+ 12.430045,
+ 55.2502103
],
[
- 1.4373098,
- 43.7591004
+ 12.3672011,
+ 55.2519673
],
[
- 1.4590083,
- 43.7593653
+ 12.3656858,
+ 55.2340267
],
[
- 1.4593318,
- 43.7481479
+ 12.2714604,
+ 55.2366031
],
[
- 1.4810303,
- 43.7483972
+ 12.2744467,
+ 55.272476
],
[
- 1.4813322,
- 43.7371777
+ 12.2115654,
+ 55.2741475
],
[
- 1.5030307,
- 43.7374115
+ 12.2130078,
+ 55.2920322
],
[
- 1.5035915,
- 43.7149664
+ 12.1815665,
+ 55.2928638
],
[
- 1.5253115,
- 43.7151846
+ 12.183141,
+ 55.3107091
],
[
- 1.5256135,
- 43.7040057
+ 12.2144897,
+ 55.3100981
],
[
- 1.5472688,
- 43.7042552
+ 12.2159927,
+ 55.3279764
],
[
- 1.5475708,
- 43.6930431
+ 12.1214458,
+ 55.3303379
],
[
- 1.5692045,
- 43.6932926
- ],
+ 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",
+ "polygon": [
+ [
[
- 1.5695712,
- 43.6820316
+ -0.856,
+ 51.071
],
[
- 1.5912049,
- 43.6822656
+ -0.856,
+ 51.473
],
[
- 1.5917441,
- 43.6597998
+ 0.062,
+ 51.473
],
[
- 1.613421,
- 43.6600339
+ 0.062,
+ 51.071
],
[
- 1.613723,
- 43.6488291
- ],
+ -0.856,
+ 51.071
+ ]
+ ]
+ ]
+ },
+ {
+ "name": "TIGER 2012 Roads Overlay",
+ "type": "tms",
+ "description": "Public domain road data from the US Government.",
+ "template": "http://{switch:a,b,c}.tile.openstreetmap.us/tiger2012_roads_expanded/{zoom}/{x}/{y}.png",
+ "scaleExtent": [
+ 16,
+ 19
+ ],
+ "polygon": [
+ [
[
- 1.6353783,
- 43.6490788
+ -124.7617886,
+ 48.4130148
],
[
- 1.6384146,
- 43.5140731
+ -124.6059492,
+ 45.90245
],
[
- 1.2921649,
- 43.5094658
+ -124.9934269,
+ 40.0557614
],
[
- 1.2918629,
- 43.5206966
+ -122.5369737,
+ 36.8566086
],
[
- 1.2702076,
- 43.5203994
+ -119.9775867,
+ 33.0064099
],
[
- 1.2698841,
- 43.5316437
+ -117.675935,
+ 32.4630223
],
[
- 1.2482288,
- 43.531331
+ -114.8612307,
+ 32.4799891
],
[
- 1.2476048,
- 43.5537788
+ -111.0089311,
+ 31.336015
],
[
- 1.2259628,
- 43.5534914
+ -108.1992687,
+ 31.3260016
],
[
- 1.2256819,
- 43.564716
+ -108.1871123,
+ 31.7755116
],
[
- 1.2039835,
- 43.564419
+ -106.5307225,
+ 31.7820947
],
[
- 1.2033148,
- 43.5869049
+ -106.4842052,
+ 31.7464455
],
[
- 1.1816164,
- 43.5865611
+ -106.429317,
+ 31.7520583
],
[
- 1.1810237,
- 43.6090368
+ -106.2868855,
+ 31.5613291
],
[
- 1.1592821,
- 43.6086932
+ -106.205248,
+ 31.446704
],
[
- 1.1589585,
- 43.6199523
+ -105.0205259,
+ 30.5360988
],
[
- 1.1372601,
- 43.6196244
+ -104.5881916,
+ 29.6997856
],
[
- 1.1365933,
- 43.642094
+ -103.2518856,
+ 28.8908685
],
[
- 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
+ -102.7173632,
+ 29.3920567
],
[
- 0.54585,
- 47.4608163
+ -102.1513983,
+ 29.7475702
],
[
- 0.5392188,
- 47.4606983
+ -101.2552871,
+ 29.4810523
],
[
- 0.5393484,
- 47.456243
+ -100.0062436,
+ 28.0082173
],
[
- 0.5327959,
- 47.4561003
+ -99.2351068,
+ 26.4475962
],
[
- 0.5329011,
- 47.451565
+ -98.0109067,
+ 25.9928035
],
[
- 0.52619,
- 47.4514013
+ -97.435024,
+ 25.8266009
],
[
- 0.5265854,
- 47.4424884
+ -96.9555259,
+ 25.9821589
],
[
- 0.5000941,
- 47.4420739
+ -96.8061741,
+ 27.7978168
],
[
- 0.5002357,
- 47.4375835
+ -95.5563349,
+ 28.5876066
],
[
- 0.4936014,
- 47.4374324
+ -93.7405308,
+ 29.4742093
],
[
- 0.4937,
- 47.4329285
+ -90.9028456,
+ 28.8564513
],
[
- 0.4606141,
- 47.4324593
+ -88.0156706,
+ 28.9944338
],
[
- 0.4607248,
- 47.4279827
+ -88.0162494,
+ 30.0038862
],
[
- 0.4541016,
- 47.4278125
+ -86.0277506,
+ 30.0047454
],
[
- 0.454932,
- 47.4053921
+ -84.0187909,
+ 28.9961781
],
[
- 0.4615431,
- 47.4054476
+ -81.9971976,
+ 25.9826768
],
[
- 0.4619097,
- 47.3964924
+ -81.9966618,
+ 25.0134917
],
[
- 0.4684346,
- 47.3966005
+ -84.0165592,
+ 25.0125783
],
[
- 0.4691319,
- 47.3786415
+ -84.0160068,
+ 24.0052745
],
[
- 0.4757125,
- 47.3787609
+ -80.0199985,
+ 24.007096
],
[
- 0.4762116,
- 47.3652018
+ -79.8901116,
+ 26.8550713
],
[
- 0.4828297,
- 47.3653499
+ -80.0245309,
+ 32.0161282
],
[
- 0.4832223,
- 47.3518574
+ -75.4147385,
+ 35.0531894
],
[
- 0.5097927,
- 47.3522592
+ -74.0211163,
+ 39.5727927
],
[
- 0.5095688,
- 47.3567713
+ -72.002019,
+ 40.9912464
],
[
- 0.5227698,
- 47.3569785
+ -69.8797398,
+ 40.9920457
],
[
- 0.5226429,
- 47.3614867
+ -69.8489304,
+ 43.2619916
],
[
- 0.5490721,
- 47.3618878
+ -66.9452845,
+ 44.7104937
],
[
- 0.5489087,
- 47.3663307
+ -67.7596632,
+ 47.0990024
],
[
- 0.5555159,
- 47.3664985
+ -69.2505131,
+ 47.5122328
],
[
- 0.5559105,
- 47.3575522
+ -70.4614886,
+ 46.2176574
],
[
- 0.6152789,
- 47.358407
+ -71.412273,
+ 45.254878
],
[
- 0.6152963,
- 47.362893
+ -72.0222508,
+ 45.0059846
],
[
- 0.6285093,
- 47.3630936
+ -75.0798841,
+ 44.9802854
],
[
- 0.6288256,
- 47.353987
+ -76.9023061,
+ 43.8024568
],
[
- 0.6155012,
- 47.3538823
+ -78.7623935,
+ 43.6249578
],
[
- 0.6157682,
- 47.3493424
+ -79.15798,
+ 43.4462589
],
[
- 0.6090956,
- 47.3492991
+ -79.0060087,
+ 42.8005317
],
[
- 0.6094735,
- 47.3402962
+ -82.662475,
+ 41.6889458
],
[
- 0.6160477,
- 47.3404448
+ -82.1761642,
+ 43.588535
],
[
- 0.616083,
- 47.3369074
+ -83.2813977,
+ 46.138853
],
[
- 0.77497,
- 47.3388218
+ -87.5064535,
+ 48.0142702
],
[
- 0.7745786,
- 47.351628
+ -88.3492194,
+ 48.2963271
],
[
- 0.7680363,
- 47.3515901
+ -89.4353148,
+ 47.9837822
],
[
- 0.767589,
- 47.3605298
+ -93.9981078,
+ 49.0067142
],
[
- 0.7742443,
- 47.3606238
+ -95.1105379,
+ 49.412004
],
[
- 0.7733465,
- 47.3921266
+ -96.0131199,
+ 49.0060547
],
[
- 0.7667434,
- 47.3920195
+ -123.3228926,
+ 49.0042878
],
[
- 0.7664411,
- 47.4010837
- ],
+ -123.2275233,
+ 48.1849927
+ ]
+ ],
+ [
[
- 0.7730647,
- 47.4011115
+ -160.5787616,
+ 22.5062947
],
[
- 0.7728868,
- 47.4101297
+ -160.5782192,
+ 21.4984647
],
[
- 0.7661849,
- 47.4100226
+ -158.7470604,
+ 21.2439843
],
[
- 0.7660267,
- 47.4145044
+ -157.5083185,
+ 20.995803
],
[
- 0.7527613,
- 47.4143038
+ -155.9961942,
+ 18.7790194
],
[
- 0.7529788,
- 47.4098086
- ],
- [
- 0.7462373,
- 47.4097016
- ],
- [
- 0.7459424,
- 47.4232208
+ -154.6217803,
+ 18.7586966
],
[
- 0.7392324,
- 47.4231451
+ -154.6890176,
+ 19.8805722
],
[
- 0.738869,
- 47.4366116
+ -156.2927622,
+ 21.2225888
],
[
- 0.7323267,
- 47.4365171
+ -157.5047384,
+ 21.9984962
],
[
- 0.7321869,
- 47.4410556
- ],
+ -159.0093692,
+ 22.5070181
+ ]
+ ],
+ [
[
- 0.7255048,
- 47.44098
+ -167.1571546,
+ 68.721974
],
[
- 0.7254209,
- 47.4453479
+ -164.8553982,
+ 67.0255078
],
[
- 0.7318793,
- 47.4454803
+ -168.002195,
+ 66.0017503
],
[
- 0.7318514,
- 47.4501126
+ -169.0087448,
+ 66.001546
],
[
- 0.7384496,
- 47.450226
+ -169.0075381,
+ 64.9987675
],
[
- 0.7383098,
- 47.454631
+ -172.5143281,
+ 63.8767267
],
[
- 0.7449359,
- 47.4547444
+ -173.8197023,
+ 59.74014
],
[
- 0.7443209,
- 47.4771985
+ -162.5018149,
+ 58.0005815
],
[
- 0.7310685,
- 47.4769717
+ -160.0159024,
+ 58.0012389
],
[
- 0.7309008,
- 47.4815445
+ -160.0149725,
+ 57.000035
],
[
- 0.7176205,
- 47.4812611
+ -160.5054788,
+ 56.9999017
],
[
- 0.7177883,
- 47.4768394
+ -165.8092575,
+ 54.824847
],
[
- 0.69777,
- 47.4764993
+ -178.000097,
+ 52.2446469
],
[
- 0.6980496,
- 47.4719827
+ -177.9992996,
+ 51.2554252
],
[
- 0.6914514,
- 47.4718882
+ -171.4689067,
+ 51.8215329
],
[
- 0.6917309,
- 47.4630241
+ -162.40251,
+ 53.956664
],
[
- 0.6851048,
- 47.4629295
+ -159.0075717,
+ 55.002502
],
[
- 0.684937,
- 47.4673524
+ -158.0190709,
+ 55.0027849
],
[
- 0.678255,
- 47.4673335
+ -151.9963213,
+ 55.9991902
],
[
- 0.6779754,
- 47.4762158
+ -151.500341,
+ 57.9987853
],
[
- 0.6714051,
- 47.4761592
+ -151.5012894,
+ 58.9919816
],
[
- 0.6710417,
- 47.4881952
+ -138.5159989,
+ 58.9953194
],
[
- 0.6577334,
- 47.4879685
+ -138.5150471,
+ 57.9986434
],
[
- 0.6578173,
- 47.48504
+ -133.9948193,
+ 54.0031685
],
[
- 0.6511911,
- 47.4848322
+ -130.0044418,
+ 54.0043387
],
[
- 0.6514707,
- 47.4758568
+ -130.0070826,
+ 57.0000507
],
[
- 0.6448166,
- 47.4757245
+ -131.975877,
+ 56.9995156
],
[
- 0.6449284,
- 47.4712646
+ -135.1229873,
+ 59.756601
],
[
- 0.6117976,
- 47.4707543
+ -138.0071813,
+ 59.991805
],
[
- 0.6118815,
- 47.4663129
+ -139.1715881,
+ 60.4127229
],
[
- 0.6052833,
- 47.4661239
+ -140.9874011,
+ 61.0118551
],
[
- 0.6054231,
- 47.4616631
+ -140.9683975,
+ 69.9535069
],
[
- 0.5988808,
- 47.4615497
+ -156.176891,
+ 71.5633329
],
[
- 0.5990206,
- 47.4570886
+ -160.413634,
+ 70.7397728
],
[
- 0.572488,
- 47.4566916
+ -163.0218273,
+ 69.9707435
],
[
- 0.5721805,
- 47.4656513
+ -164.9717003,
+ 68.994689
]
]
],
- "terms_url": "http://wiki.openstreetmap.org/wiki/Tours/Orthophoto",
- "terms_text": "Orthophoto Tour(s) Plus 2008"
+ "overlay": true
},
{
- "name": "Tours - Orthophotos 2008-2010",
+ "name": "Toulouse - Orthophotoplan 2007",
"type": "tms",
- "template": "http://wms.openstreetmap.fr/tms/1.0.0/tours/{zoom}/{x}/{y}",
+ "template": "http://wms.openstreetmap.fr/tms/1.0.0/toulouse_ortho2007/{zoom}/{x}/{y}",
"scaleExtent": [
0,
- 20
+ 22
],
"polygon": [
[
[
- 0.5457462,
- 47.465264
- ],
- [
- 0.54585,
- 47.4608163
- ],
- [
- 0.5392188,
- 47.4606983
+ 1.1919978,
+ 43.6328791
],
[
- 0.5393484,
- 47.456243
+ 1.2015377,
+ 43.6329729
],
[
- 0.5327959,
- 47.4561003
+ 1.2011107,
+ 43.6554932
],
[
- 0.5329011,
- 47.451565
+ 1.2227985,
+ 43.6557029
],
[
- 0.52619,
- 47.4514013
+ 1.2226231,
+ 43.6653353
],
[
- 0.5265854,
- 47.4424884
+ 1.2275341,
+ 43.6653849
],
[
- 0.5000941,
- 47.4420739
+ 1.2275417,
+ 43.6656387
],
[
- 0.5002357,
- 47.4375835
+ 1.2337568,
+ 43.6656883
],
[
- 0.4936014,
- 47.4374324
+ 1.2337644,
+ 43.6650153
],
[
- 0.4937,
- 47.4329285
+ 1.2351218,
+ 43.6650319
],
[
- 0.4606141,
- 47.4324593
+ 1.2350913,
+ 43.6670729
],
[
- 0.4607248,
- 47.4279827
+ 1.2443566,
+ 43.6671556
],
[
- 0.4541016,
- 47.4278125
+ 1.2441584,
+ 43.6743925
],
[
- 0.454932,
- 47.4053921
+ 1.2493973,
+ 43.6744256
],
[
- 0.4615431,
- 47.4054476
+ 1.2493973,
+ 43.6746628
],
[
- 0.4619097,
- 47.3964924
+ 1.2555666,
+ 43.6747234
],
[
- 0.4684346,
- 47.3966005
+ 1.2555742,
+ 43.6744532
],
[
- 0.4691319,
- 47.3786415
+ 1.2569545,
+ 43.6744697
],
[
- 0.4757125,
- 47.3787609
+ 1.2568782,
+ 43.678529
],
[
- 0.4762116,
- 47.3652018
+ 1.2874873,
+ 43.6788257
],
[
- 0.4828297,
- 47.3653499
+ 1.2870803,
+ 43.7013229
],
[
- 0.4829611,
- 47.3608321
+ 1.3088219,
+ 43.7014632
],
[
- 0.4763543,
- 47.360743
+ 1.3086493,
+ 43.7127673
],
[
- 0.476654,
- 47.3517263
+ 1.3303262,
+ 43.7129544
],
[
- 0.4700497,
- 47.3516186
+ 1.3300242,
+ 43.7305221
],
[
- 0.4701971,
- 47.3471313
+ 1.3367106,
+ 43.7305845
],
[
- 0.4637503,
- 47.3470104
+ 1.3367322,
+ 43.7312235
],
[
- 0.4571425,
- 47.3424146
+ 1.3734338,
+ 43.7310456
],
[
- 0.4572922,
- 47.3379061
+ 1.3735848,
+ 43.7245772
],
[
- 0.4506741,
- 47.3378081
+ 1.4604504,
+ 43.7252947
],
[
- 0.4508379,
- 47.3333051
+ 1.4607783,
+ 43.7028034
],
[
- 0.4442212,
- 47.3332032
+ 1.4824875,
+ 43.7029516
],
[
- 0.4443809,
- 47.328711
+ 1.4829828,
+ 43.6692071
],
[
- 0.4311392,
- 47.3284977
+ 1.5046832,
+ 43.6693616
],
[
- 0.4316262,
- 47.3150004
+ 1.5048383,
+ 43.6581174
],
[
- 0.4382432,
- 47.3151136
+ 1.5265475,
+ 43.6582656
],
[
- 0.4383815,
- 47.3106174
+ 1.5266945,
+ 43.6470298
],
[
- 0.4714487,
- 47.3111374
+ 1.548368,
+ 43.6471633
],
[
- 0.4713096,
- 47.3156565
+ 1.5485357,
+ 43.6359385
],
[
- 0.477888,
- 47.3157542
+ 1.5702172,
+ 43.636082
],
[
- 0.4780733,
- 47.3112802
+ 1.5705123,
+ 43.6135777
],
[
- 0.4846826,
- 47.3113639
+ 1.5488166,
+ 43.6134276
],
[
- 0.4848576,
- 47.3068686
+ 1.549097,
+ 43.5909479
],
[
- 0.4914359,
- 47.3069803
+ 1.5707695,
+ 43.5910694
],
[
- 0.491745,
- 47.2979733
+ 1.5709373,
+ 43.5798341
],
[
- 0.4851578,
- 47.2978722
+ 1.5793714,
+ 43.5798894
],
[
- 0.4854269,
- 47.2888744
+ 1.5794782,
+ 43.5737682
],
[
- 0.4788485,
- 47.2887697
+ 1.5809119,
+ 43.5737792
],
[
- 0.4791574,
- 47.2797818
+ 1.5810859,
+ 43.5573794
],
[
- 0.4857769,
- 47.2799005
+ 1.5712334,
+ 43.5573131
],
[
- 0.4859107,
- 47.2753885
+ 1.5716504,
+ 43.5235497
],
[
- 0.492539,
- 47.2755029
+ 1.3984804,
+ 43.5222618
],
[
- 0.4926669,
- 47.2710127
+ 1.3986509,
+ 43.5110113
],
[
- 0.4992986,
- 47.2711066
+ 1.3120959,
+ 43.5102543
],
[
- 0.4994296,
- 47.2666116
+ 1.3118968,
+ 43.5215192
],
[
- 0.5192658,
- 47.2669245
+ 1.2902569,
+ 43.5213126
],
[
- 0.5194225,
- 47.2624231
+ 1.2898637,
+ 43.5438168
],
[
- 0.5260186,
- 47.2625205
+ 1.311517,
+ 43.5440133
],
[
- 0.5258735,
- 47.2670183
+ 1.3113271,
+ 43.5552596
],
[
- 0.5456972,
- 47.2673383
+ 1.3036924,
+ 43.5551924
],
[
- 0.5455537,
- 47.2718283
+ 1.3036117,
+ 43.5595099
],
[
- 0.5587737,
- 47.2720366
+ 1.2955449,
+ 43.5594317
],
[
- 0.5586259,
- 47.2765185
+ 1.2955449,
+ 43.5595489
],
[
- 0.5652252,
- 47.2766278
+ 1.2895595,
+ 43.5594473
],
[
- 0.5650848,
- 47.2811206
+ 1.2892899,
+ 43.5775366
],
[
- 0.5716753,
- 47.2812285
+ 1.2675698,
+ 43.5773647
],
[
- 0.5715223,
- 47.2857217
+ 1.2673973,
+ 43.5886141
],
[
- 0.5781436,
- 47.2858299
+ 1.25355,
+ 43.5885047
],
[
- 0.5779914,
- 47.2903294
+ 1.2533774,
+ 43.5956282
],
[
- 0.5846023,
- 47.2904263
+ 1.2518029,
+ 43.5956282
],
[
- 0.5843076,
- 47.2994231
+ 1.2518029,
+ 43.5949409
],
[
- 0.597499,
- 47.2996094
+ 1.2350437,
+ 43.5947847
],
[
- 0.5976637,
- 47.2951375
+ 1.2350437,
+ 43.5945972
],
[
- 0.6571596,
- 47.2960036
+ 1.2239572,
+ 43.5945972
],
[
- 0.6572988,
- 47.2915091
+ 1.2239357,
+ 43.5994708
],
[
- 0.6705019,
- 47.2917186
+ 1.2139708,
+ 43.599299
],
[
- 0.6703475,
- 47.2962082
+ 1.2138845,
+ 43.6046408
],
[
- 0.6836175,
- 47.2963688
+ 1.2020647,
+ 43.6044846
],
[
- 0.6834322,
- 47.3008929
+ 1.2019464,
+ 43.61048
],
[
- 0.690062,
- 47.3009558
- ],
+ 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": [
+ [
[
- 0.6899241,
- 47.3054703
+ 1.1135067,
+ 43.6867566
],
[
- 0.7362019,
- 47.3061157
+ 1.1351836,
+ 43.6870842
],
[
- 0.7360848,
- 47.3106063
+ 1.1348907,
+ 43.6983471
],
[
- 0.7559022,
- 47.3108935
+ 1.1782867,
+ 43.6990338
],
[
- 0.7557718,
- 47.315392
+ 1.1779903,
+ 43.7102786
],
[
- 0.7623755,
- 47.3154716
+ 1.1996591,
+ 43.7106144
],
[
- 0.7622314,
- 47.3199941
+ 1.1993387,
+ 43.7218722
],
[
- 0.7754911,
- 47.3201546
+ 1.2427356,
+ 43.7225269
+ ],
+ [
+ 1.2424336,
+ 43.7337491
+ ],
+ [
+ 1.2641536,
+ 43.734092
+ ],
+ [
+ 1.2638301,
+ 43.7453588
+ ],
+ [
+ 1.2855285,
+ 43.7456548
+ ],
+ [
+ 1.2852481,
+ 43.756935
+ ],
+ [
+ 1.306925,
+ 43.757231
+ ],
+ [
+ 1.3066446,
+ 43.7684779
+ ],
+ [
+ 1.3283431,
+ 43.7687894
+ ],
+ [
+ 1.3280842,
+ 43.780034
+ ],
+ [
+ 1.4367275,
+ 43.7815757
+ ],
+ [
+ 1.4373098,
+ 43.7591004
+ ],
+ [
+ 1.4590083,
+ 43.7593653
+ ],
+ [
+ 1.4593318,
+ 43.7481479
+ ],
+ [
+ 1.4810303,
+ 43.7483972
+ ],
+ [
+ 1.4813322,
+ 43.7371777
+ ],
+ [
+ 1.5030307,
+ 43.7374115
+ ],
+ [
+ 1.5035915,
+ 43.7149664
+ ],
+ [
+ 1.5253115,
+ 43.7151846
+ ],
+ [
+ 1.5256135,
+ 43.7040057
+ ],
+ [
+ 1.5472688,
+ 43.7042552
+ ],
+ [
+ 1.5475708,
+ 43.6930431
+ ],
+ [
+ 1.5692045,
+ 43.6932926
+ ],
+ [
+ 1.5695712,
+ 43.6820316
+ ],
+ [
+ 1.5912049,
+ 43.6822656
+ ],
+ [
+ 1.5917441,
+ 43.6597998
+ ],
+ [
+ 1.613421,
+ 43.6600339
+ ],
+ [
+ 1.613723,
+ 43.6488291
+ ],
+ [
+ 1.6353783,
+ 43.6490788
+ ],
+ [
+ 1.6384146,
+ 43.5140731
+ ],
+ [
+ 1.2921649,
+ 43.5094658
+ ],
+ [
+ 1.2918629,
+ 43.5206966
+ ],
+ [
+ 1.2702076,
+ 43.5203994
+ ],
+ [
+ 1.2698841,
+ 43.5316437
+ ],
+ [
+ 1.2482288,
+ 43.531331
+ ],
+ [
+ 1.2476048,
+ 43.5537788
+ ],
+ [
+ 1.2259628,
+ 43.5534914
+ ],
+ [
+ 1.2256819,
+ 43.564716
+ ],
+ [
+ 1.2039835,
+ 43.564419
+ ],
+ [
+ 1.2033148,
+ 43.5869049
+ ],
+ [
+ 1.1816164,
+ 43.5865611
+ ],
+ [
+ 1.1810237,
+ 43.6090368
+ ],
+ [
+ 1.1592821,
+ 43.6086932
+ ],
+ [
+ 1.1589585,
+ 43.6199523
+ ],
+ [
+ 1.1372601,
+ 43.6196244
+ ],
+ [
+ 1.1365933,
+ 43.642094
+ ],
+ [
+ 1.1149055,
+ 43.6417629
+ ]
+ ]
+ ],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData",
+ "terms_text": "ToulouseMetropole"
+ },
+ {
+ "name": "Tours - Orthophotos 2008",
+ "type": "tms",
+ "template": "http://tms.mapspot.ge/tms/2/nonstandard/{zoom}/{x}/{y}.jpeg",
+ "polygon": [
+ [
+ [
+ 0.5457462,
+ 47.465264
+ ],
+ [
+ 0.54585,
+ 47.4608163
+ ],
+ [
+ 0.5392188,
+ 47.4606983
+ ],
+ [
+ 0.5393484,
+ 47.456243
+ ],
+ [
+ 0.5327959,
+ 47.4561003
+ ],
+ [
+ 0.5329011,
+ 47.451565
+ ],
+ [
+ 0.52619,
+ 47.4514013
+ ],
+ [
+ 0.5265854,
+ 47.4424884
+ ],
+ [
+ 0.5000941,
+ 47.4420739
+ ],
+ [
+ 0.5002357,
+ 47.4375835
+ ],
+ [
+ 0.4936014,
+ 47.4374324
+ ],
+ [
+ 0.4937,
+ 47.4329285
+ ],
+ [
+ 0.4606141,
+ 47.4324593
+ ],
+ [
+ 0.4607248,
+ 47.4279827
+ ],
+ [
+ 0.4541016,
+ 47.4278125
+ ],
+ [
+ 0.454932,
+ 47.4053921
+ ],
+ [
+ 0.4615431,
+ 47.4054476
+ ],
+ [
+ 0.4619097,
+ 47.3964924
+ ],
+ [
+ 0.4684346,
+ 47.3966005
+ ],
+ [
+ 0.4691319,
+ 47.3786415
+ ],
+ [
+ 0.4757125,
+ 47.3787609
+ ],
+ [
+ 0.4762116,
+ 47.3652018
+ ],
+ [
+ 0.4828297,
+ 47.3653499
+ ],
+ [
+ 0.4832223,
+ 47.3518574
+ ],
+ [
+ 0.5097927,
+ 47.3522592
+ ],
+ [
+ 0.5095688,
+ 47.3567713
+ ],
+ [
+ 0.5227698,
+ 47.3569785
+ ],
+ [
+ 0.5226429,
+ 47.3614867
+ ],
+ [
+ 0.5490721,
+ 47.3618878
+ ],
+ [
+ 0.5489087,
+ 47.3663307
+ ],
+ [
+ 0.5555159,
+ 47.3664985
+ ],
+ [
+ 0.5559105,
+ 47.3575522
+ ],
+ [
+ 0.6152789,
+ 47.358407
+ ],
+ [
+ 0.6152963,
+ 47.362893
+ ],
+ [
+ 0.6285093,
+ 47.3630936
+ ],
+ [
+ 0.6288256,
+ 47.353987
+ ],
+ [
+ 0.6155012,
+ 47.3538823
+ ],
+ [
+ 0.6157682,
+ 47.3493424
+ ],
+ [
+ 0.6090956,
+ 47.3492991
+ ],
+ [
+ 0.6094735,
+ 47.3402962
+ ],
+ [
+ 0.6160477,
+ 47.3404448
+ ],
+ [
+ 0.616083,
+ 47.3369074
],
[
0.77497,
@@ -48625,5640 +48872,6239 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"terms_text": "Orthophoto Tour(s) Plus 2008"
},
{
- "name": "USGS Large Scale Imagery",
+ "name": "Tours - Orthophotos 2008-2010",
"type": "tms",
- "template": "http://{switch:a,b,c}.tile.openstreetmap.us/usgs_large_scale/{zoom}/{x}/{y}.jpg",
+ "template": "http://wms.openstreetmap.fr/tms/1.0.0/tours/{zoom}/{x}/{y}",
"scaleExtent": [
- 12,
+ 0,
20
],
"polygon": [
[
[
- -123.2549305,
- 48.7529029
+ 0.5457462,
+ 47.465264
],
[
- -123.2549305,
- 48.5592263
+ 0.54585,
+ 47.4608163
],
[
- -123.192224,
- 48.5592263
+ 0.5392188,
+ 47.4606983
],
[
- -123.192224,
- 48.4348366
+ 0.5393484,
+ 47.456243
],
[
- -122.9419646,
- 48.4348366
+ 0.5327959,
+ 47.4561003
],
[
- -122.9419646,
- 48.3720812
+ 0.5329011,
+ 47.451565
],
[
- -122.8806229,
- 48.3720812
+ 0.52619,
+ 47.4514013
],
[
- -122.8806229,
- 48.3094763
+ 0.5265854,
+ 47.4424884
],
[
- -122.8167566,
- 48.3094763
+ 0.5000941,
+ 47.4420739
],
[
- -122.8167566,
- 48.1904587
+ 0.5002357,
+ 47.4375835
],
[
- -123.0041133,
- 48.1904587
+ 0.4936014,
+ 47.4374324
],
[
- -123.0041133,
- 48.1275918
+ 0.4937,
+ 47.4329285
],
[
- -123.058416,
- 48.1275918
+ 0.4606141,
+ 47.4324593
],
[
- -123.058416,
- 48.190514
+ 0.4607248,
+ 47.4279827
],
[
- -123.254113,
- 48.190514
+ 0.4541016,
+ 47.4278125
],
[
- -123.254113,
- 48.1274982
+ 0.454932,
+ 47.4053921
],
[
- -123.3706593,
- 48.1274982
+ 0.4615431,
+ 47.4054476
],
[
- -123.3706593,
- 48.1908403
+ 0.4619097,
+ 47.3964924
],
[
- -124.0582632,
- 48.1908403
+ 0.4684346,
+ 47.3966005
],
[
- -124.0582632,
- 48.253442
+ 0.4691319,
+ 47.3786415
],
[
- -124.1815163,
- 48.253442
+ 0.4757125,
+ 47.3787609
],
[
- -124.1815163,
- 48.3164666
+ 0.4762116,
+ 47.3652018
],
[
- -124.4319117,
- 48.3164666
+ 0.4828297,
+ 47.3653499
],
[
- -124.4319117,
- 48.3782613
+ 0.4829611,
+ 47.3608321
],
[
- -124.5564618,
- 48.3782613
+ 0.4763543,
+ 47.360743
],
[
- -124.5564618,
- 48.4408305
+ 0.476654,
+ 47.3517263
],
[
- -124.7555107,
- 48.4408305
+ 0.4700497,
+ 47.3516186
],
[
- -124.7555107,
- 48.1914986
+ 0.4701971,
+ 47.3471313
],
[
- -124.8185282,
- 48.1914986
+ 0.4637503,
+ 47.3470104
],
[
- -124.8185282,
- 48.1228381
+ 0.4571425,
+ 47.3424146
],
[
- -124.7552951,
- 48.1228381
+ 0.4572922,
+ 47.3379061
],
[
- -124.7552951,
- 47.5535253
+ 0.4506741,
+ 47.3378081
],
[
- -124.3812108,
- 47.5535253
+ 0.4508379,
+ 47.3333051
],
[
- -124.3812108,
- 47.1218696
+ 0.4442212,
+ 47.3332032
],
[
- -124.1928897,
- 47.1218696
+ 0.4443809,
+ 47.328711
],
[
- -124.1928897,
- 43.7569431
+ 0.4311392,
+ 47.3284977
],
[
- -124.4443382,
- 43.7569431
+ 0.4316262,
+ 47.3150004
],
[
- -124.4443382,
- 43.1425556
+ 0.4382432,
+ 47.3151136
],
[
- -124.6398855,
- 43.1425556
+ 0.4383815,
+ 47.3106174
],
[
- -124.6398855,
- 42.6194503
+ 0.4714487,
+ 47.3111374
],
[
- -124.4438525,
- 42.6194503
+ 0.4713096,
+ 47.3156565
],
[
- -124.4438525,
- 39.8080662
+ 0.477888,
+ 47.3157542
],
[
- -123.8815685,
- 39.8080662
+ 0.4780733,
+ 47.3112802
],
[
- -123.8815685,
- 39.1102825
+ 0.4846826,
+ 47.3113639
],
[
- -123.75805,
- 39.1102825
+ 0.4848576,
+ 47.3068686
],
[
- -123.75805,
- 38.4968799
+ 0.4914359,
+ 47.3069803
],
[
- -123.2702803,
- 38.4968799
+ 0.491745,
+ 47.2979733
],
[
- -123.2702803,
- 37.9331905
+ 0.4851578,
+ 47.2978722
],
[
- -122.8148084,
- 37.9331905
+ 0.4854269,
+ 47.2888744
],
[
- -122.8148084,
- 37.8019606
+ 0.4788485,
+ 47.2887697
],
[
- -122.5664316,
- 37.8019606
+ 0.4791574,
+ 47.2797818
],
[
- -122.5664316,
- 36.9319611
+ 0.4857769,
+ 47.2799005
],
[
- -121.8784026,
- 36.9319611
+ 0.4859107,
+ 47.2753885
],
[
- -121.8784026,
- 36.6897596
+ 0.492539,
+ 47.2755029
],
[
- -122.0034748,
- 36.6897596
+ 0.4926669,
+ 47.2710127
],
[
- -122.0034748,
- 36.4341056
+ 0.4992986,
+ 47.2711066
],
[
- -121.9414159,
- 36.4341056
+ 0.4994296,
+ 47.2666116
],
[
- -121.9414159,
- 35.9297636
+ 0.5192658,
+ 47.2669245
],
[
- -121.5040977,
- 35.9297636
+ 0.5194225,
+ 47.2624231
],
[
- -121.5040977,
- 35.8100273
+ 0.5260186,
+ 47.2625205
],
[
- -121.3790276,
- 35.8100273
+ 0.5258735,
+ 47.2670183
],
[
- -121.3790276,
- 35.4239164
+ 0.5456972,
+ 47.2673383
],
[
- -120.9426515,
- 35.4239164
+ 0.5455537,
+ 47.2718283
],
[
- -120.9426515,
- 35.1849683
+ 0.5587737,
+ 47.2720366
],
[
- -120.8171978,
- 35.1849683
+ 0.5586259,
+ 47.2765185
],
[
- -120.8171978,
- 35.1219894
+ 0.5652252,
+ 47.2766278
],
[
- -120.6918447,
- 35.1219894
+ 0.5650848,
+ 47.2811206
],
[
- -120.6918447,
- 34.4966794
+ 0.5716753,
+ 47.2812285
],
[
- -120.5045898,
- 34.4966794
+ 0.5715223,
+ 47.2857217
],
[
- -120.5045898,
- 34.4339651
+ 0.5781436,
+ 47.2858299
],
[
- -120.0078775,
- 34.4339651
+ 0.5779914,
+ 47.2903294
],
[
- -120.0078775,
- 34.3682626
+ 0.5846023,
+ 47.2904263
],
[
- -119.5283517,
- 34.3682626
+ 0.5843076,
+ 47.2994231
],
[
- -119.5283517,
- 34.0576434
+ 0.597499,
+ 47.2996094
],
[
- -119.0060985,
- 34.0576434
+ 0.5976637,
+ 47.2951375
],
[
- -119.0060985,
- 33.9975267
+ 0.6571596,
+ 47.2960036
],
[
- -118.5046259,
- 33.9975267
+ 0.6572988,
+ 47.2915091
],
[
- -118.5046259,
- 33.8694631
+ 0.6705019,
+ 47.2917186
],
[
- -118.4413209,
- 33.8694631
+ 0.6703475,
+ 47.2962082
],
[
- -118.4413209,
- 33.6865253
+ 0.6836175,
+ 47.2963688
],
[
- -118.066912,
- 33.6865253
+ 0.6834322,
+ 47.3008929
],
[
- -118.066912,
- 33.3063832
+ 0.690062,
+ 47.3009558
],
[
- -117.5030045,
- 33.3063832
+ 0.6899241,
+ 47.3054703
],
[
- -117.5030045,
- 33.0500337
+ 0.7362019,
+ 47.3061157
],
[
- -117.3188195,
- 33.0500337
+ 0.7360848,
+ 47.3106063
],
[
- -117.3188195,
- 32.6205888
+ 0.7559022,
+ 47.3108935
],
[
- -117.1917023,
- 32.6205888
+ 0.7557718,
+ 47.315392
],
[
- -117.1917023,
- 32.4974566
+ 0.7623755,
+ 47.3154716
],
[
- -116.746496,
- 32.4974566
+ 0.7622314,
+ 47.3199941
],
[
- -116.746496,
- 32.5609161
+ 0.7754911,
+ 47.3201546
],
[
- -115.9970138,
- 32.5609161
+ 0.77497,
+ 47.3388218
],
[
- -115.9970138,
- 32.6264942
+ 0.7745786,
+ 47.351628
],
[
- -114.8808125,
- 32.6264942
+ 0.7680363,
+ 47.3515901
],
[
- -114.8808125,
- 32.4340796
+ 0.767589,
+ 47.3605298
],
[
- -114.6294474,
- 32.4340796
+ 0.7742443,
+ 47.3606238
],
[
- -114.6294474,
- 32.3731636
+ 0.7733465,
+ 47.3921266
],
[
- -114.4447437,
- 32.3731636
+ 0.7667434,
+ 47.3920195
],
[
- -114.4447437,
- 32.3075418
+ 0.7664411,
+ 47.4010837
],
[
- -114.2557628,
- 32.3075418
+ 0.7730647,
+ 47.4011115
],
[
- -114.2557628,
- 32.2444561
+ 0.7728868,
+ 47.4101297
],
[
- -114.0680274,
- 32.2444561
+ 0.7661849,
+ 47.4100226
],
[
- -114.0680274,
- 32.1829113
+ 0.7660267,
+ 47.4145044
],
[
- -113.8166499,
- 32.1829113
+ 0.7527613,
+ 47.4143038
],
[
- -113.8166499,
- 32.1207622
+ 0.7529788,
+ 47.4098086
],
[
- -113.6307421,
- 32.1207622
+ 0.7462373,
+ 47.4097016
],
[
- -113.6307421,
- 32.0565099
+ 0.7459424,
+ 47.4232208
],
[
- -113.4417495,
- 32.0565099
+ 0.7392324,
+ 47.4231451
],
[
- -113.4417495,
- 31.9984372
+ 0.738869,
+ 47.4366116
],
[
- -113.2546027,
- 31.9984372
+ 0.7323267,
+ 47.4365171
],
[
- -113.2546027,
- 31.9325434
+ 0.7321869,
+ 47.4410556
],
[
- -113.068072,
- 31.9325434
+ 0.7255048,
+ 47.44098
],
[
- -113.068072,
- 31.8718062
+ 0.7254209,
+ 47.4453479
],
[
- -112.8161105,
- 31.8718062
+ 0.7318793,
+ 47.4454803
],
[
- -112.8161105,
- 31.8104171
+ 0.7318514,
+ 47.4501126
],
[
- -112.6308756,
- 31.8104171
+ 0.7384496,
+ 47.450226
],
[
- -112.6308756,
- 31.7464723
+ 0.7383098,
+ 47.454631
],
[
- -112.4418918,
- 31.7464723
+ 0.7449359,
+ 47.4547444
],
[
- -112.4418918,
- 31.6856001
+ 0.7443209,
+ 47.4771985
],
[
- -112.257192,
- 31.6856001
+ 0.7310685,
+ 47.4769717
],
[
- -112.257192,
- 31.6210352
+ 0.7309008,
+ 47.4815445
],
[
- -112.0033787,
- 31.6210352
+ 0.7176205,
+ 47.4812611
],
[
- -112.0033787,
- 31.559584
+ 0.7177883,
+ 47.4768394
],
[
- -111.815619,
- 31.559584
+ 0.69777,
+ 47.4764993
],
[
- -111.815619,
- 31.4970238
+ 0.6980496,
+ 47.4719827
],
[
- -111.6278586,
- 31.4970238
+ 0.6914514,
+ 47.4718882
],
[
- -111.6278586,
- 31.4339867
+ 0.6917309,
+ 47.4630241
],
[
- -111.4418978,
- 31.4339867
+ 0.6851048,
+ 47.4629295
],
[
- -111.4418978,
- 31.3733859
+ 0.684937,
+ 47.4673524
],
[
- -111.2559708,
- 31.3733859
+ 0.678255,
+ 47.4673335
],
[
- -111.2559708,
- 31.3113225
+ 0.6779754,
+ 47.4762158
],
[
- -108.1845822,
- 31.3113225
+ 0.6714051,
+ 47.4761592
],
[
- -108.1845822,
- 31.7459502
+ 0.6710417,
+ 47.4881952
],
[
- -106.5065055,
- 31.7459502
+ 0.6577334,
+ 47.4879685
],
[
- -106.5065055,
- 31.6842308
+ 0.6578173,
+ 47.48504
],
[
- -106.3797265,
- 31.6842308
+ 0.6511911,
+ 47.4848322
],
[
- -106.3797265,
- 31.621752
+ 0.6514707,
+ 47.4758568
],
[
- -106.317434,
- 31.621752
+ 0.6448166,
+ 47.4757245
],
[
- -106.317434,
- 31.4968167
+ 0.6449284,
+ 47.4712646
],
[
- -106.2551769,
- 31.4968167
+ 0.6117976,
+ 47.4707543
],
[
- -106.2551769,
- 31.4344889
+ 0.6118815,
+ 47.4663129
],
[
- -106.1924698,
- 31.4344889
+ 0.6052833,
+ 47.4661239
],
[
- -106.1924698,
- 31.3721296
+ 0.6054231,
+ 47.4616631
],
[
- -106.0039212,
- 31.3721296
+ 0.5988808,
+ 47.4615497
],
[
- -106.0039212,
- 31.309328
+ 0.5990206,
+ 47.4570886
],
[
- -105.9416582,
- 31.309328
+ 0.572488,
+ 47.4566916
],
[
- -105.9416582,
- 31.2457547
- ],
+ 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": [
+ [
[
- -105.8798174,
- 31.2457547
+ -123.2549305,
+ 48.7529029
],
[
- -105.8798174,
- 31.1836194
+ -123.2549305,
+ 48.5592263
],
[
- -105.8162349,
- 31.1836194
+ -123.192224,
+ 48.5592263
],
[
- -105.8162349,
- 31.1207155
+ -123.192224,
+ 48.4348366
],
[
- -105.6921198,
- 31.1207155
+ -122.9419646,
+ 48.4348366
],
[
- -105.6921198,
- 31.0584835
+ -122.9419646,
+ 48.3720812
],
[
- -105.6302881,
- 31.0584835
+ -122.8806229,
+ 48.3720812
],
[
- -105.6302881,
- 30.9328271
+ -122.8806229,
+ 48.3094763
],
[
- -105.5044418,
- 30.9328271
+ -122.8167566,
+ 48.3094763
],
[
- -105.5044418,
- 30.8715864
+ -122.8167566,
+ 48.1904587
],
[
- -105.4412973,
- 30.8715864
+ -123.0041133,
+ 48.1904587
],
[
- -105.4412973,
- 30.808463
+ -123.0041133,
+ 48.1275918
],
[
- -105.3781497,
- 30.808463
+ -123.058416,
+ 48.1275918
],
[
- -105.3781497,
- 30.7471828
+ -123.058416,
+ 48.190514
],
[
- -105.1904658,
- 30.7471828
+ -123.254113,
+ 48.190514
],
[
- -105.1904658,
- 30.6843231
+ -123.254113,
+ 48.1274982
],
[
- -105.1286244,
- 30.6843231
+ -123.3706593,
+ 48.1274982
],
[
- -105.1286244,
- 30.6199737
+ -123.3706593,
+ 48.1908403
],
[
- -105.0036504,
- 30.6199737
+ -124.0582632,
+ 48.1908403
],
[
- -105.0036504,
- 30.5589058
+ -124.0582632,
+ 48.253442
],
[
- -104.9417962,
- 30.5589058
+ -124.1815163,
+ 48.253442
],
[
- -104.9417962,
- 30.4963236
+ -124.1815163,
+ 48.3164666
],
[
- -104.8782018,
- 30.4963236
+ -124.4319117,
+ 48.3164666
],
[
- -104.8782018,
- 30.3098261
+ -124.4319117,
+ 48.3782613
],
[
- -104.8155257,
- 30.3098261
+ -124.5564618,
+ 48.3782613
],
[
- -104.8155257,
- 30.2478305
+ -124.5564618,
+ 48.4408305
],
[
- -104.7536079,
- 30.2478305
+ -124.7555107,
+ 48.4408305
],
[
- -104.7536079,
- 29.9353916
+ -124.7555107,
+ 48.1914986
],
[
- -104.690949,
- 29.9353916
+ -124.8185282,
+ 48.1914986
],
[
- -104.690949,
- 29.8090156
+ -124.8185282,
+ 48.1228381
],
[
- -104.6291301,
- 29.8090156
+ -124.7552951,
+ 48.1228381
],
[
- -104.6291301,
- 29.6843577
+ -124.7552951,
+ 47.5535253
],
[
- -104.5659869,
- 29.6843577
+ -124.3812108,
+ 47.5535253
],
[
- -104.5659869,
- 29.6223459
+ -124.3812108,
+ 47.1218696
],
[
- -104.5037188,
- 29.6223459
+ -124.1928897,
+ 47.1218696
],
[
- -104.5037188,
- 29.5595436
+ -124.1928897,
+ 43.7569431
],
[
- -104.4410072,
- 29.5595436
+ -124.4443382,
+ 43.7569431
],
[
- -104.4410072,
- 29.4974832
+ -124.4443382,
+ 43.1425556
],
[
- -104.2537551,
- 29.4974832
+ -124.6398855,
+ 43.1425556
],
[
- -104.2537551,
- 29.3716718
+ -124.6398855,
+ 42.6194503
],
[
- -104.1291984,
- 29.3716718
+ -124.4438525,
+ 42.6194503
],
[
- -104.1291984,
- 29.3091621
+ -124.4438525,
+ 39.8080662
],
[
- -104.0688737,
- 29.3091621
+ -123.8815685,
+ 39.8080662
],
[
- -104.0688737,
- 29.2467276
+ -123.8815685,
+ 39.1102825
],
[
- -103.8187309,
- 29.2467276
+ -123.75805,
+ 39.1102825
],
[
- -103.8187309,
- 29.1843076
+ -123.75805,
+ 38.4968799
],
[
- -103.755736,
- 29.1843076
+ -123.2702803,
+ 38.4968799
],
[
- -103.755736,
- 29.1223174
+ -123.2702803,
+ 37.9331905
],
[
- -103.5667542,
- 29.1223174
+ -122.8148084,
+ 37.9331905
],
[
- -103.5667542,
- 29.0598119
+ -122.8148084,
+ 37.8019606
],
[
- -103.5049819,
- 29.0598119
+ -122.5664316,
+ 37.8019606
],
[
- -103.5049819,
- 28.9967506
+ -122.5664316,
+ 36.9319611
],
[
- -103.3165753,
- 28.9967506
+ -121.8784026,
+ 36.9319611
],
[
- -103.3165753,
- 28.9346923
+ -121.8784026,
+ 36.6897596
],
[
- -103.0597572,
- 28.9346923
+ -122.0034748,
+ 36.6897596
],
[
- -103.0597572,
- 29.0592965
+ -122.0034748,
+ 36.4341056
],
[
- -102.9979694,
- 29.0592965
+ -121.9414159,
+ 36.4341056
],
[
- -102.9979694,
- 29.1212855
+ -121.9414159,
+ 35.9297636
],
[
- -102.9331397,
- 29.1212855
+ -121.5040977,
+ 35.9297636
],
[
- -102.9331397,
- 29.1848575
+ -121.5040977,
+ 35.8100273
],
[
- -102.8095989,
- 29.1848575
+ -121.3790276,
+ 35.8100273
],
[
- -102.8095989,
- 29.2526154
+ -121.3790276,
+ 35.4239164
],
[
- -102.8701345,
- 29.2526154
+ -120.9426515,
+ 35.4239164
],
[
- -102.8701345,
- 29.308096
+ -120.9426515,
+ 35.1849683
],
[
- -102.8096681,
- 29.308096
+ -120.8171978,
+ 35.1849683
],
[
- -102.8096681,
- 29.3715484
+ -120.8171978,
+ 35.1219894
],
[
- -102.7475655,
- 29.3715484
+ -120.6918447,
+ 35.1219894
],
[
- -102.7475655,
- 29.5581899
+ -120.6918447,
+ 34.4966794
],
[
- -102.684554,
- 29.5581899
+ -120.5045898,
+ 34.4966794
],
[
- -102.684554,
- 29.6847655
+ -120.5045898,
+ 34.4339651
],
[
- -102.4967764,
- 29.6847655
+ -120.0078775,
+ 34.4339651
],
[
- -102.4967764,
- 29.7457694
+ -120.0078775,
+ 34.3682626
],
[
- -102.3086647,
- 29.7457694
+ -119.5283517,
+ 34.3682626
],
[
- -102.3086647,
- 29.8086627
+ -119.5283517,
+ 34.0576434
],
[
- -102.1909323,
- 29.8086627
+ -119.0060985,
+ 34.0576434
],
[
- -102.1909323,
- 29.7460097
+ -119.0060985,
+ 33.9975267
],
[
- -101.5049914,
- 29.7460097
+ -118.5046259,
+ 33.9975267
],
[
- -101.5049914,
- 29.6846777
+ -118.5046259,
+ 33.8694631
],
[
- -101.3805796,
- 29.6846777
+ -118.4413209,
+ 33.8694631
],
[
- -101.3805796,
- 29.5594459
+ -118.4413209,
+ 33.6865253
],
[
- -101.3175057,
- 29.5594459
+ -118.066912,
+ 33.6865253
],
[
- -101.3175057,
- 29.4958934
+ -118.066912,
+ 33.3063832
],
[
- -101.1910075,
- 29.4958934
+ -117.5030045,
+ 33.3063832
],
[
- -101.1910075,
- 29.4326115
+ -117.5030045,
+ 33.0500337
],
[
- -101.067501,
- 29.4326115
+ -117.3188195,
+ 33.0500337
],
[
- -101.067501,
- 29.308808
+ -117.3188195,
+ 32.6205888
],
[
- -100.9418897,
- 29.308808
+ -117.1917023,
+ 32.6205888
],
[
- -100.9418897,
- 29.2456231
+ -117.1917023,
+ 32.4974566
],
[
- -100.8167271,
- 29.2456231
+ -116.746496,
+ 32.4974566
],
[
- -100.8167271,
- 29.1190449
+ -116.746496,
+ 32.5609161
],
[
- -100.7522672,
- 29.1190449
+ -115.9970138,
+ 32.5609161
],
[
- -100.7522672,
- 29.0578214
+ -115.9970138,
+ 32.6264942
],
[
- -100.6925358,
- 29.0578214
+ -114.8808125,
+ 32.6264942
],
[
- -100.6925358,
- 28.8720431
+ -114.8808125,
+ 32.4340796
],
[
- -100.6290158,
- 28.8720431
+ -114.6294474,
+ 32.4340796
],
[
- -100.6290158,
- 28.8095363
+ -114.6294474,
+ 32.3731636
],
[
- -100.5679901,
- 28.8095363
+ -114.4447437,
+ 32.3731636
],
[
- -100.5679901,
- 28.622554
+ -114.4447437,
+ 32.3075418
],
[
- -100.5040411,
- 28.622554
+ -114.2557628,
+ 32.3075418
],
[
- -100.5040411,
- 28.5583804
+ -114.2557628,
+ 32.2444561
],
[
- -100.4421832,
- 28.5583804
+ -114.0680274,
+ 32.2444561
],
[
- -100.4421832,
- 28.4968266
+ -114.0680274,
+ 32.1829113
],
[
- -100.379434,
- 28.4968266
+ -113.8166499,
+ 32.1829113
],
[
- -100.379434,
- 28.3092865
+ -113.8166499,
+ 32.1207622
],
[
- -100.3171942,
- 28.3092865
+ -113.6307421,
+ 32.1207622
],
[
- -100.3171942,
- 28.1835681
+ -113.6307421,
+ 32.0565099
],
[
- -100.254483,
- 28.1835681
+ -113.4417495,
+ 32.0565099
],
[
- -100.254483,
- 28.1213885
+ -113.4417495,
+ 31.9984372
],
[
- -100.1282282,
- 28.1213885
+ -113.2546027,
+ 31.9984372
],
[
- -100.1282282,
- 28.059215
+ -113.2546027,
+ 31.9325434
],
[
- -100.0659537,
- 28.059215
+ -113.068072,
+ 31.9325434
],
[
- -100.0659537,
- 27.9966087
+ -113.068072,
+ 31.8718062
],
[
- -100.0023855,
- 27.9966087
+ -112.8161105,
+ 31.8718062
],
[
- -100.0023855,
- 27.9332152
+ -112.8161105,
+ 31.8104171
],
[
- -99.9426497,
- 27.9332152
+ -112.6308756,
+ 31.8104171
],
[
- -99.9426497,
- 27.7454658
+ -112.6308756,
+ 31.7464723
],
[
- -99.816851,
- 27.7454658
+ -112.4418918,
+ 31.7464723
],
[
- -99.816851,
- 27.6834301
+ -112.4418918,
+ 31.6856001
],
[
- -99.7541346,
- 27.6834301
+ -112.257192,
+ 31.6856001
],
[
- -99.7541346,
- 27.6221543
+ -112.257192,
+ 31.6210352
],
[
- -99.6291629,
- 27.6221543
+ -112.0033787,
+ 31.6210352
],
[
- -99.6291629,
- 27.5588977
+ -112.0033787,
+ 31.559584
],
[
- -99.5672838,
- 27.5588977
+ -111.815619,
+ 31.559584
],
[
- -99.5672838,
- 27.4353752
+ -111.815619,
+ 31.4970238
],
[
- -99.5041798,
- 27.4353752
+ -111.6278586,
+ 31.4970238
],
[
- -99.5041798,
- 27.3774021
+ -111.6278586,
+ 31.4339867
],
[
- -99.5671796,
- 27.3774021
+ -111.4418978,
+ 31.4339867
],
[
- -99.5671796,
- 27.2463726
+ -111.4418978,
+ 31.3733859
],
[
- -99.504975,
- 27.2463726
+ -111.2559708,
+ 31.3733859
],
[
- -99.504975,
- 26.9965649
+ -111.2559708,
+ 31.3113225
],
[
- -99.4427427,
- 26.9965649
+ -108.1845822,
+ 31.3113225
],
[
- -99.4427427,
- 26.872803
+ -108.1845822,
+ 31.7459502
],
[
- -99.3800633,
- 26.872803
+ -106.5065055,
+ 31.7459502
],
[
- -99.3800633,
- 26.8068179
+ -106.5065055,
+ 31.6842308
],
[
- -99.3190684,
- 26.8068179
+ -106.3797265,
+ 31.6842308
],
[
- -99.3190684,
- 26.7473614
+ -106.3797265,
+ 31.621752
],
[
- -99.2537541,
- 26.7473614
+ -106.317434,
+ 31.621752
],
[
- -99.2537541,
- 26.6210068
+ -106.317434,
+ 31.4968167
],
[
- -99.1910617,
- 26.6210068
+ -106.2551769,
+ 31.4968167
],
[
- -99.1910617,
- 26.4956737
+ -106.2551769,
+ 31.4344889
],
[
- -99.1300639,
- 26.4956737
+ -106.1924698,
+ 31.4344889
],
[
- -99.1300639,
- 26.3713808
+ -106.1924698,
+ 31.3721296
],
[
- -99.0029473,
- 26.3713808
+ -106.0039212,
+ 31.3721296
],
[
- -99.0029473,
- 26.3093836
+ -106.0039212,
+ 31.309328
],
[
- -98.816572,
- 26.3093836
+ -105.9416582,
+ 31.309328
],
[
- -98.816572,
- 26.2457762
+ -105.9416582,
+ 31.2457547
],
[
- -98.6920082,
- 26.2457762
+ -105.8798174,
+ 31.2457547
],
[
- -98.6920082,
- 26.1837096
+ -105.8798174,
+ 31.1836194
],
[
- -98.4440896,
- 26.1837096
+ -105.8162349,
+ 31.1836194
],
[
- -98.4440896,
- 26.1217217
+ -105.8162349,
+ 31.1207155
],
[
- -98.3823181,
- 26.1217217
+ -105.6921198,
+ 31.1207155
],
[
- -98.3823181,
- 26.0596488
+ -105.6921198,
+ 31.0584835
],
[
- -98.2532707,
- 26.0596488
+ -105.6302881,
+ 31.0584835
],
[
- -98.2532707,
- 25.9986871
+ -105.6302881,
+ 30.9328271
],
[
- -98.0109084,
- 25.9986871
+ -105.5044418,
+ 30.9328271
],
[
- -98.0109084,
- 25.9932255
+ -105.5044418,
+ 30.8715864
],
[
- -97.6932319,
- 25.9932255
+ -105.4412973,
+ 30.8715864
],
[
- -97.6932319,
- 25.9334103
+ -105.4412973,
+ 30.808463
],
[
- -97.6313904,
- 25.9334103
+ -105.3781497,
+ 30.808463
],
[
- -97.6313904,
- 25.8695893
+ -105.3781497,
+ 30.7471828
],
[
- -97.5046779,
- 25.8695893
+ -105.1904658,
+ 30.7471828
],
[
- -97.5046779,
- 25.8073488
+ -105.1904658,
+ 30.6843231
],
[
- -97.3083401,
- 25.8073488
+ -105.1286244,
+ 30.6843231
],
[
- -97.3083401,
- 25.8731159
+ -105.1286244,
+ 30.6199737
],
[
- -97.2456326,
- 25.8731159
+ -105.0036504,
+ 30.6199737
],
[
- -97.2456326,
- 25.9353731
+ -105.0036504,
+ 30.5589058
],
[
- -97.1138939,
- 25.9353731
+ -104.9417962,
+ 30.5589058
],
[
- -97.1138939,
- 27.6809179
+ -104.9417962,
+ 30.4963236
],
[
- -97.0571035,
- 27.6809179
+ -104.8782018,
+ 30.4963236
],
[
- -97.0571035,
- 27.8108242
+ -104.8782018,
+ 30.3098261
],
[
- -95.5810766,
- 27.8108242
+ -104.8155257,
+ 30.3098261
],
[
- -95.5810766,
- 28.7468827
+ -104.8155257,
+ 30.2478305
],
[
- -94.271041,
- 28.7468827
+ -104.7536079,
+ 30.2478305
],
[
- -94.271041,
- 29.5594076
+ -104.7536079,
+ 29.9353916
],
[
- -92.5029947,
- 29.5594076
+ -104.690949,
+ 29.9353916
],
[
- -92.5029947,
- 29.4974754
+ -104.690949,
+ 29.8090156
],
[
- -91.8776216,
- 29.4974754
+ -104.6291301,
+ 29.8090156
],
[
- -91.8776216,
- 29.3727013
+ -104.6291301,
+ 29.6843577
],
[
- -91.378418,
- 29.3727013
+ -104.5659869,
+ 29.6843577
],
[
- -91.378418,
- 29.2468326
+ -104.5659869,
+ 29.6223459
],
[
- -91.3153953,
- 29.2468326
+ -104.5037188,
+ 29.6223459
],
[
- -91.3153953,
- 29.1844301
+ -104.5037188,
+ 29.5595436
],
[
- -91.1294702,
- 29.1844301
+ -104.4410072,
+ 29.5595436
],
[
- -91.1294702,
- 29.1232559
+ -104.4410072,
+ 29.4974832
],
[
- -91.0052632,
- 29.1232559
+ -104.2537551,
+ 29.4974832
],
[
- -91.0052632,
- 28.9968437
+ -104.2537551,
+ 29.3716718
],
[
- -89.4500159,
- 28.9968437
+ -104.1291984,
+ 29.3716718
],
[
- -89.4500159,
- 28.8677422
+ -104.1291984,
+ 29.3091621
],
[
- -88.8104309,
- 28.8677422
+ -104.0688737,
+ 29.3091621
],
[
- -88.8104309,
- 30.1841864
+ -104.0688737,
+ 29.2467276
],
[
- -85.8791527,
- 30.1841864
+ -103.8187309,
+ 29.2467276
],
[
- -85.8791527,
- 29.5455038
+ -103.8187309,
+ 29.1843076
],
[
- -84.8368083,
- 29.5455038
+ -103.755736,
+ 29.1843076
],
[
- -84.8368083,
- 29.6225158
+ -103.755736,
+ 29.1223174
],
[
- -84.7482786,
- 29.6225158
+ -103.5667542,
+ 29.1223174
],
[
- -84.7482786,
- 29.683624
+ -103.5667542,
+ 29.0598119
],
[
- -84.685894,
- 29.683624
+ -103.5049819,
+ 29.0598119
],
[
- -84.685894,
- 29.7468386
+ -103.5049819,
+ 28.9967506
],
[
- -83.6296975,
- 29.7468386
+ -103.3165753,
+ 28.9967506
],
[
- -83.6296975,
- 29.4324361
+ -103.3165753,
+ 28.9346923
],
[
- -83.3174937,
- 29.4324361
+ -103.0597572,
+ 28.9346923
],
[
- -83.3174937,
- 29.0579442
+ -103.0597572,
+ 29.0592965
],
[
- -82.879659,
- 29.0579442
+ -102.9979694,
+ 29.0592965
],
[
- -82.879659,
- 27.7453529
+ -102.9979694,
+ 29.1212855
],
[
- -82.8182822,
- 27.7453529
+ -102.9331397,
+ 29.1212855
],
[
- -82.8182822,
- 26.9290868
+ -102.9331397,
+ 29.1848575
],
[
- -82.3796782,
- 26.9290868
+ -102.8095989,
+ 29.1848575
],
[
- -82.3796782,
- 26.3694183
+ -102.8095989,
+ 29.2526154
],
[
- -81.8777106,
- 26.3694183
+ -102.8701345,
+ 29.2526154
],
[
- -81.8777106,
- 25.805971
+ -102.8701345,
+ 29.308096
],
[
- -81.5036862,
- 25.805971
+ -102.8096681,
+ 29.308096
],
[
- -81.5036862,
- 25.7474753
+ -102.8096681,
+ 29.3715484
],
[
- -81.4405462,
- 25.7474753
+ -102.7475655,
+ 29.3715484
],
[
- -81.4405462,
- 25.6851489
+ -102.7475655,
+ 29.5581899
],
[
- -81.3155883,
- 25.6851489
+ -102.684554,
+ 29.5581899
],
[
- -81.3155883,
- 25.5600985
+ -102.684554,
+ 29.6847655
],
[
- -81.2538534,
- 25.5600985
+ -102.4967764,
+ 29.6847655
],
[
- -81.2538534,
- 25.4342361
+ -102.4967764,
+ 29.7457694
],
[
- -81.1902012,
- 25.4342361
+ -102.3086647,
+ 29.7457694
],
[
- -81.1902012,
- 25.1234341
+ -102.3086647,
+ 29.8086627
],
[
- -81.1288133,
- 25.1234341
+ -102.1909323,
+ 29.8086627
],
[
- -81.1288133,
- 25.0619389
+ -102.1909323,
+ 29.7460097
],
[
- -81.0649231,
- 25.0619389
+ -101.5049914,
+ 29.7460097
],
[
- -81.0649231,
- 24.8157807
+ -101.5049914,
+ 29.6846777
],
[
- -81.6289469,
- 24.8157807
+ -101.3805796,
+ 29.6846777
],
[
- -81.6289469,
- 24.7538367
+ -101.3805796,
+ 29.5594459
],
[
- -81.6907173,
- 24.7538367
+ -101.3175057,
+ 29.5594459
],
[
- -81.6907173,
- 24.6899374
+ -101.3175057,
+ 29.4958934
],
[
- -81.8173189,
- 24.6899374
+ -101.1910075,
+ 29.4958934
],
[
- -81.8173189,
- 24.6279161
+ -101.1910075,
+ 29.4326115
],
[
- -82.1910041,
- 24.6279161
+ -101.067501,
+ 29.4326115
],
[
- -82.1910041,
- 24.496294
+ -101.067501,
+ 29.308808
],
[
- -81.6216596,
- 24.496294
+ -100.9418897,
+ 29.308808
],
[
- -81.6216596,
- 24.559484
+ -100.9418897,
+ 29.2456231
],
[
- -81.372006,
- 24.559484
+ -100.8167271,
+ 29.2456231
],
[
- -81.372006,
- 24.6220687
+ -100.8167271,
+ 29.1190449
],
[
- -81.0593278,
- 24.6220687
+ -100.7522672,
+ 29.1190449
],
[
- -81.0593278,
- 24.684826
+ -100.7522672,
+ 29.0578214
],
[
- -80.9347147,
- 24.684826
+ -100.6925358,
+ 29.0578214
],
[
- -80.9347147,
- 24.7474828
+ -100.6925358,
+ 28.8720431
],
[
- -80.7471081,
- 24.7474828
+ -100.6290158,
+ 28.8720431
],
[
- -80.7471081,
- 24.8100618
+ -100.6290158,
+ 28.8095363
],
[
- -80.3629898,
- 24.8100618
+ -100.5679901,
+ 28.8095363
],
[
- -80.3629898,
- 25.1175858
+ -100.5679901,
+ 28.622554
],
[
- -80.122344,
- 25.1175858
+ -100.5040411,
+ 28.622554
],
[
- -80.122344,
- 25.7472357
+ -100.5040411,
+ 28.5583804
],
[
- -80.0588458,
- 25.7472357
+ -100.4421832,
+ 28.5583804
],
[
- -80.0588458,
- 26.3708251
+ -100.4421832,
+ 28.4968266
],
[
- -79.995837,
- 26.3708251
+ -100.379434,
+ 28.4968266
],
[
- -79.995837,
- 26.9398003
+ -100.379434,
+ 28.3092865
],
[
- -80.0587265,
- 26.9398003
+ -100.3171942,
+ 28.3092865
],
[
- -80.0587265,
- 27.1277466
+ -100.3171942,
+ 28.1835681
],
[
- -80.1226251,
- 27.1277466
+ -100.254483,
+ 28.1835681
],
[
- -80.1226251,
- 27.2534279
+ -100.254483,
+ 28.1213885
],
[
- -80.1846956,
- 27.2534279
+ -100.1282282,
+ 28.1213885
],
[
- -80.1846956,
- 27.3781229
+ -100.1282282,
+ 28.059215
],
[
- -80.246175,
- 27.3781229
+ -100.0659537,
+ 28.059215
],
[
- -80.246175,
- 27.5658729
+ -100.0659537,
+ 27.9966087
],
[
- -80.3094768,
- 27.5658729
+ -100.0023855,
+ 27.9966087
],
[
- -80.3094768,
- 27.7530311
+ -100.0023855,
+ 27.9332152
],
[
- -80.3721485,
- 27.7530311
+ -99.9426497,
+ 27.9332152
],
[
- -80.3721485,
- 27.8774451
+ -99.9426497,
+ 27.7454658
],
[
- -80.4351457,
- 27.8774451
+ -99.816851,
+ 27.7454658
],
[
- -80.4351457,
- 28.0033366
+ -99.816851,
+ 27.6834301
],
[
- -80.4966078,
- 28.0033366
+ -99.7541346,
+ 27.6834301
],
[
- -80.4966078,
- 28.1277326
+ -99.7541346,
+ 27.6221543
],
[
- -80.5587159,
- 28.1277326
+ -99.6291629,
+ 27.6221543
],
[
- -80.5587159,
- 28.3723509
+ -99.6291629,
+ 27.5588977
],
[
- -80.4966335,
- 28.3723509
+ -99.5672838,
+ 27.5588977
],
[
- -80.4966335,
- 29.5160326
+ -99.5672838,
+ 27.4353752
],
[
- -81.1213644,
- 29.5160326
+ -99.5041798,
+ 27.4353752
],
[
- -81.1213644,
- 31.6846966
+ -99.5041798,
+ 27.3774021
],
[
- -80.6018723,
- 31.6846966
+ -99.5671796,
+ 27.3774021
],
[
- -80.6018723,
- 32.2475309
+ -99.5671796,
+ 27.2463726
],
[
- -79.4921024,
- 32.2475309
+ -99.504975,
+ 27.2463726
],
[
- -79.4921024,
- 32.9970261
+ -99.504975,
+ 26.9965649
],
[
- -79.1116488,
- 32.9970261
+ -99.4427427,
+ 26.9965649
],
[
- -79.1116488,
- 33.3729457
+ -99.4427427,
+ 26.872803
],
[
- -78.6153621,
- 33.3729457
+ -99.3800633,
+ 26.872803
],
[
- -78.6153621,
- 33.8097638
+ -99.3800633,
+ 26.8068179
],
[
- -77.9316963,
- 33.8097638
+ -99.3190684,
+ 26.8068179
],
[
- -77.9316963,
- 33.8718243
+ -99.3190684,
+ 26.7473614
],
[
- -77.8692252,
- 33.8718243
+ -99.2537541,
+ 26.7473614
],
[
- -77.8692252,
- 34.0552454
+ -99.2537541,
+ 26.6210068
],
[
- -77.6826392,
- 34.0552454
+ -99.1910617,
+ 26.6210068
],
[
- -77.6826392,
- 34.2974598
+ -99.1910617,
+ 26.4956737
],
[
- -77.2453509,
- 34.2974598
+ -99.1300639,
+ 26.4956737
],
[
- -77.2453509,
- 34.5598585
+ -99.1300639,
+ 26.3713808
],
[
- -76.4973277,
- 34.5598585
+ -99.0029473,
+ 26.3713808
],
[
- -76.4973277,
- 34.622796
+ -99.0029473,
+ 26.3093836
],
[
- -76.4337602,
- 34.622796
+ -98.816572,
+ 26.3093836
],
[
- -76.4337602,
- 34.6849285
+ -98.816572,
+ 26.2457762
],
[
- -76.373212,
- 34.6849285
+ -98.6920082,
+ 26.2457762
],
[
- -76.373212,
- 34.7467674
+ -98.6920082,
+ 26.1837096
],
[
- -76.3059364,
- 34.7467674
+ -98.4440896,
+ 26.1837096
],
[
- -76.3059364,
- 34.808551
+ -98.4440896,
+ 26.1217217
],
[
- -76.2468017,
- 34.808551
+ -98.3823181,
+ 26.1217217
],
[
- -76.2468017,
- 34.8728418
+ -98.3823181,
+ 26.0596488
],
[
- -76.1825922,
- 34.8728418
+ -98.2532707,
+ 26.0596488
],
[
- -76.1825922,
- 34.9335332
+ -98.2532707,
+ 25.9986871
],
[
- -76.120814,
- 34.9335332
+ -98.0109084,
+ 25.9986871
],
[
- -76.120814,
- 34.9952359
+ -98.0109084,
+ 25.9932255
],
[
- -75.9979015,
- 34.9952359
+ -97.6932319,
+ 25.9932255
],
[
- -75.9979015,
- 35.0578182
+ -97.6932319,
+ 25.9334103
],
[
- -75.870338,
- 35.0578182
+ -97.6313904,
+ 25.9334103
],
[
- -75.870338,
- 35.1219097
+ -97.6313904,
+ 25.8695893
],
[
- -75.7462194,
- 35.1219097
+ -97.5046779,
+ 25.8695893
],
[
- -75.7462194,
- 35.1818911
+ -97.5046779,
+ 25.8073488
],
[
- -75.4929694,
- 35.1818911
+ -97.3083401,
+ 25.8073488
],
[
- -75.4929694,
- 35.3082988
+ -97.3083401,
+ 25.8731159
],
[
- -75.4325662,
- 35.3082988
+ -97.2456326,
+ 25.8731159
],
[
- -75.4325662,
- 35.7542495
+ -97.2456326,
+ 25.9353731
],
[
- -75.4969907,
- 35.7542495
+ -97.1138939,
+ 25.9353731
],
[
- -75.4969907,
- 37.8105602
+ -97.1138939,
+ 27.6809179
],
[
- -75.3082972,
- 37.8105602
+ -97.0571035,
+ 27.6809179
],
[
- -75.3082972,
- 37.8720088
+ -97.0571035,
+ 27.8108242
],
[
- -75.245601,
- 37.8720088
+ -95.5810766,
+ 27.8108242
],
[
- -75.245601,
- 37.9954849
+ -95.5810766,
+ 28.7468827
],
[
- -75.1828751,
- 37.9954849
+ -94.271041,
+ 28.7468827
],
[
- -75.1828751,
- 38.0585079
+ -94.271041,
+ 29.5594076
],
[
- -75.1184793,
- 38.0585079
+ -92.5029947,
+ 29.5594076
],
[
- -75.1184793,
- 38.2469091
+ -92.5029947,
+ 29.4974754
],
[
- -75.0592098,
- 38.2469091
+ -91.8776216,
+ 29.4974754
],
[
- -75.0592098,
- 38.3704316
+ -91.8776216,
+ 29.3727013
],
[
- -74.9948111,
- 38.3704316
+ -91.378418,
+ 29.3727013
],
[
- -74.9948111,
- 38.8718417
+ -91.378418,
+ 29.2468326
],
[
- -74.4878252,
- 38.8718417
+ -91.3153953,
+ 29.2468326
],
[
- -74.4878252,
- 39.3089428
+ -91.3153953,
+ 29.1844301
],
[
- -74.1766317,
- 39.3089428
+ -91.1294702,
+ 29.1844301
],
[
- -74.1766317,
- 39.6224653
+ -91.1294702,
+ 29.1232559
],
[
- -74.0567045,
- 39.6224653
+ -91.0052632,
+ 29.1232559
],
[
- -74.0567045,
- 39.933178
+ -91.0052632,
+ 28.9968437
],
[
- -73.9959035,
- 39.933178
+ -89.4500159,
+ 28.9968437
],
[
- -73.9959035,
- 40.1854852
+ -89.4500159,
+ 28.8677422
],
[
- -73.9341593,
- 40.1854852
+ -88.8104309,
+ 28.8677422
],
[
- -73.9341593,
- 40.4959486
+ -88.8104309,
+ 30.1841864
],
[
- -73.8723024,
- 40.4959486
+ -85.8791527,
+ 30.1841864
],
[
- -73.8723024,
- 40.5527135
+ -85.8791527,
+ 29.5455038
],
[
- -71.8074506,
- 40.5527135
+ -84.8368083,
+ 29.5455038
],
[
- -71.8074506,
- 41.3088005
+ -84.8368083,
+ 29.6225158
],
[
- -70.882512,
- 41.3088005
+ -84.7482786,
+ 29.6225158
],
[
- -70.882512,
- 41.184978
+ -84.7482786,
+ 29.683624
],
[
- -70.7461947,
- 41.184978
+ -84.685894,
+ 29.683624
],
[
- -70.7461947,
- 41.3091865
+ -84.685894,
+ 29.7468386
],
[
- -70.4337553,
- 41.3091865
+ -83.6296975,
+ 29.7468386
],
[
- -70.4337553,
- 41.4963885
+ -83.6296975,
+ 29.4324361
],
[
- -69.9334281,
- 41.4963885
+ -83.3174937,
+ 29.4324361
],
[
- -69.9334281,
- 41.6230802
+ -83.3174937,
+ 29.0579442
],
[
- -69.869857,
- 41.6230802
+ -82.879659,
+ 29.0579442
],
[
- -69.869857,
- 41.8776895
+ -82.879659,
+ 27.7453529
],
[
- -69.935791,
- 41.8776895
+ -82.8182822,
+ 27.7453529
],
[
- -69.935791,
- 42.0032342
+ -82.8182822,
+ 26.9290868
],
[
- -69.9975823,
- 42.0032342
+ -82.3796782,
+ 26.9290868
],
[
- -69.9975823,
- 42.0650191
+ -82.3796782,
+ 26.3694183
],
[
- -70.0606103,
- 42.0650191
+ -81.8777106,
+ 26.3694183
],
[
- -70.0606103,
- 42.1294348
+ -81.8777106,
+ 25.805971
],
[
- -70.5572884,
- 42.1294348
+ -81.5036862,
+ 25.805971
],
[
- -70.5572884,
- 43.2487079
+ -81.5036862,
+ 25.7474753
],
[
- -70.4974097,
- 43.2487079
+ -81.4405462,
+ 25.7474753
],
[
- -70.4974097,
- 43.3092194
+ -81.4405462,
+ 25.6851489
],
[
- -70.3704249,
- 43.3092194
+ -81.3155883,
+ 25.6851489
],
[
- -70.3704249,
- 43.371963
+ -81.3155883,
+ 25.5600985
],
[
- -70.3085701,
- 43.371963
+ -81.2538534,
+ 25.5600985
],
[
- -70.3085701,
- 43.4969879
+ -81.2538534,
+ 25.4342361
],
[
- -70.183921,
- 43.4969879
+ -81.1902012,
+ 25.4342361
],
[
- -70.183921,
- 43.6223531
+ -81.1902012,
+ 25.1234341
],
[
- -70.057583,
- 43.6223531
+ -81.1288133,
+ 25.1234341
],
[
- -70.057583,
- 43.6850173
+ -81.1288133,
+ 25.0619389
],
[
- -69.7455247,
- 43.6850173
+ -81.0649231,
+ 25.0619389
],
[
- -69.7455247,
- 43.7476571
+ -81.0649231,
+ 24.8157807
],
[
- -69.2472845,
- 43.7476571
+ -81.6289469,
+ 24.8157807
],
[
- -69.2472845,
- 43.8107035
+ -81.6289469,
+ 24.7538367
],
[
- -69.0560701,
- 43.8107035
+ -81.6907173,
+ 24.7538367
],
[
- -69.0560701,
- 43.8717247
+ -81.6907173,
+ 24.6899374
],
[
- -68.9950522,
- 43.8717247
+ -81.8173189,
+ 24.6899374
],
[
- -68.9950522,
- 43.9982022
+ -81.8173189,
+ 24.6279161
],
[
- -68.4963672,
- 43.9982022
+ -82.1910041,
+ 24.6279161
],
[
- -68.4963672,
- 44.0597368
+ -82.1910041,
+ 24.496294
],
[
- -68.3081038,
- 44.0597368
+ -81.6216596,
+ 24.496294
],
[
- -68.3081038,
- 44.122137
+ -81.6216596,
+ 24.559484
],
[
- -68.1851802,
- 44.122137
+ -81.372006,
+ 24.559484
],
[
- -68.1851802,
- 44.3081382
+ -81.372006,
+ 24.6220687
],
[
- -67.9956019,
- 44.3081382
+ -81.0593278,
+ 24.6220687
],
[
- -67.9956019,
- 44.3727489
+ -81.0593278,
+ 24.684826
],
[
- -67.8103041,
- 44.3727489
+ -80.9347147,
+ 24.684826
],
[
- -67.8103041,
- 44.435178
+ -80.9347147,
+ 24.7474828
],
[
- -67.4965289,
- 44.435178
+ -80.7471081,
+ 24.7474828
],
[
- -67.4965289,
- 44.4968776
+ -80.7471081,
+ 24.8100618
],
[
- -67.37102,
- 44.4968776
+ -80.3629898,
+ 24.8100618
],
[
- -67.37102,
- 44.5600642
+ -80.3629898,
+ 25.1175858
],
[
- -67.1848753,
- 44.5600642
+ -80.122344,
+ 25.1175858
],
[
- -67.1848753,
- 44.6213345
+ -80.122344,
+ 25.7472357
],
[
- -67.1221208,
- 44.6213345
+ -80.0588458,
+ 25.7472357
],
[
- -67.1221208,
- 44.6867918
+ -80.0588458,
+ 26.3708251
],
[
- -67.059365,
- 44.6867918
+ -79.995837,
+ 26.3708251
],
[
- -67.059365,
- 44.7473657
+ -79.995837,
+ 26.9398003
],
[
- -66.9311098,
- 44.7473657
+ -80.0587265,
+ 26.9398003
],
[
- -66.9311098,
- 44.9406566
+ -80.0587265,
+ 27.1277466
],
[
- -66.994683,
- 44.9406566
+ -80.1226251,
+ 27.1277466
],
[
- -66.994683,
- 45.0024514
+ -80.1226251,
+ 27.2534279
],
[
- -67.0595847,
- 45.0024514
+ -80.1846956,
+ 27.2534279
],
[
- -67.0595847,
- 45.1273377
+ -80.1846956,
+ 27.3781229
],
[
- -67.1201974,
- 45.1273377
+ -80.246175,
+ 27.3781229
],
[
- -67.1201974,
- 45.1910115
+ -80.246175,
+ 27.5658729
],
[
- -67.2469811,
- 45.1910115
+ -80.3094768,
+ 27.5658729
],
[
- -67.2469811,
- 45.253442
+ -80.3094768,
+ 27.7530311
],
[
- -67.3177546,
- 45.253442
+ -80.3721485,
+ 27.7530311
],
[
- -67.3177546,
- 45.1898369
+ -80.3721485,
+ 27.8774451
],
[
- -67.370749,
- 45.1898369
+ -80.4351457,
+ 27.8774451
],
[
- -67.370749,
- 45.2534001
+ -80.4351457,
+ 28.0033366
],
[
- -67.4326888,
- 45.2534001
+ -80.4966078,
+ 28.0033366
],
[
- -67.4326888,
- 45.3083409
+ -80.4966078,
+ 28.1277326
],
[
- -67.3708571,
- 45.3083409
+ -80.5587159,
+ 28.1277326
],
[
- -67.3708571,
- 45.4396986
+ -80.5587159,
+ 28.3723509
],
[
- -67.4305573,
- 45.4396986
+ -80.4966335,
+ 28.3723509
],
[
- -67.4305573,
- 45.4950095
+ -80.4966335,
+ 29.5160326
],
[
- -67.37099,
- 45.4950095
+ -81.1213644,
+ 29.5160326
],
[
- -67.37099,
- 45.6264543
+ -81.1213644,
+ 31.6846966
],
[
- -67.6214982,
- 45.6264543
+ -80.6018723,
+ 31.6846966
],
[
- -67.6214982,
- 45.6896133
+ -80.6018723,
+ 32.2475309
],
[
- -67.683828,
- 45.6896133
+ -79.4921024,
+ 32.2475309
],
[
- -67.683828,
- 45.753259
+ -79.4921024,
+ 32.9970261
],
[
- -67.7462097,
- 45.753259
+ -79.1116488,
+ 32.9970261
],
[
- -67.7462097,
- 47.1268165
+ -79.1116488,
+ 33.3729457
],
[
- -67.8700141,
- 47.1268165
+ -78.6153621,
+ 33.3729457
],
[
- -67.8700141,
- 47.1900278
+ -78.6153621,
+ 33.8097638
],
[
- -67.9323803,
- 47.1900278
+ -77.9316963,
+ 33.8097638
],
[
- -67.9323803,
- 47.2539678
+ -77.9316963,
+ 33.8718243
],
[
- -67.9959387,
- 47.2539678
+ -77.8692252,
+ 33.8718243
],
[
- -67.9959387,
- 47.3149737
+ -77.8692252,
+ 34.0552454
],
[
- -68.1206676,
- 47.3149737
+ -77.6826392,
+ 34.0552454
],
[
- -68.1206676,
- 47.3780823
+ -77.6826392,
+ 34.2974598
],
[
- -68.4423175,
- 47.3780823
+ -77.2453509,
+ 34.2974598
],
[
- -68.4423175,
- 47.3166082
+ -77.2453509,
+ 34.5598585
],
[
- -68.6314305,
- 47.3166082
+ -76.4973277,
+ 34.5598585
],
[
- -68.6314305,
- 47.2544676
+ -76.4973277,
+ 34.622796
],
[
- -68.9978037,
- 47.2544676
+ -76.4337602,
+ 34.622796
],
[
- -68.9978037,
- 47.439895
+ -76.4337602,
+ 34.6849285
],
[
- -69.0607223,
- 47.439895
+ -76.373212,
+ 34.6849285
],
[
- -69.0607223,
- 47.5047558
+ -76.373212,
+ 34.7467674
],
[
- -69.2538122,
- 47.5047558
+ -76.3059364,
+ 34.7467674
],
[
- -69.2538122,
- 47.4398084
+ -76.3059364,
+ 34.808551
],
[
- -69.3179284,
- 47.4398084
+ -76.2468017,
+ 34.808551
],
[
- -69.3179284,
- 47.378601
+ -76.2468017,
+ 34.8728418
],
[
- -69.4438546,
- 47.378601
+ -76.1825922,
+ 34.8728418
],
[
- -69.4438546,
- 47.3156274
+ -76.1825922,
+ 34.9335332
],
[
- -69.5038204,
- 47.3156274
+ -76.120814,
+ 34.9335332
],
[
- -69.5038204,
- 47.2525839
+ -76.120814,
+ 34.9952359
],
[
- -69.5667838,
- 47.2525839
+ -75.9979015,
+ 34.9952359
],
[
- -69.5667838,
- 47.1910884
+ -75.9979015,
+ 35.0578182
],
[
- -69.6303478,
- 47.1910884
+ -75.870338,
+ 35.0578182
],
[
- -69.6303478,
- 47.128701
+ -75.870338,
+ 35.1219097
],
[
- -69.6933103,
- 47.128701
+ -75.7462194,
+ 35.1219097
],
[
- -69.6933103,
- 47.0654307
+ -75.7462194,
+ 35.1818911
],
[
- -69.7557063,
- 47.0654307
+ -75.4929694,
+ 35.1818911
],
[
- -69.7557063,
- 47.0042751
+ -75.4929694,
+ 35.3082988
],
[
- -69.8180391,
- 47.0042751
+ -75.4325662,
+ 35.3082988
],
[
- -69.8180391,
- 46.9415344
+ -75.4325662,
+ 35.7542495
],
[
- -69.8804023,
- 46.9415344
+ -75.4969907,
+ 35.7542495
],
[
- -69.8804023,
- 46.8792519
+ -75.4969907,
+ 37.8105602
],
[
- -69.9421674,
- 46.8792519
+ -75.3082972,
+ 37.8105602
],
[
- -69.9421674,
- 46.8177399
+ -75.3082972,
+ 37.8720088
],
[
- -70.0063088,
- 46.8177399
+ -75.245601,
+ 37.8720088
],
[
- -70.0063088,
- 46.6920295
+ -75.245601,
+ 37.9954849
],
[
- -70.0704265,
- 46.6920295
+ -75.1828751,
+ 37.9954849
],
[
- -70.0704265,
- 46.4425926
+ -75.1828751,
+ 38.0585079
],
[
- -70.1945902,
- 46.4425926
+ -75.1184793,
+ 38.0585079
],
[
- -70.1945902,
- 46.3785887
+ -75.1184793,
+ 38.2469091
],
[
- -70.2562047,
- 46.3785887
+ -75.0592098,
+ 38.2469091
],
[
- -70.2562047,
- 46.3152628
+ -75.0592098,
+ 38.3704316
],
[
- -70.3203651,
- 46.3152628
+ -74.9948111,
+ 38.3704316
],
[
- -70.3203651,
- 46.0651209
+ -74.9948111,
+ 38.8718417
],
[
- -70.3814988,
- 46.0651209
+ -74.4878252,
+ 38.8718417
],
[
- -70.3814988,
- 45.93552
+ -74.4878252,
+ 39.3089428
],
[
- -70.3201618,
- 45.93552
+ -74.1766317,
+ 39.3089428
],
[
- -70.3201618,
- 45.879479
+ -74.1766317,
+ 39.6224653
],
[
- -70.4493131,
- 45.879479
+ -74.0567045,
+ 39.6224653
],
[
- -70.4493131,
- 45.7538713
+ -74.0567045,
+ 39.933178
],
[
- -70.5070021,
- 45.7538713
+ -73.9959035,
+ 39.933178
],
[
- -70.5070021,
- 45.6916912
+ -73.9959035,
+ 40.1854852
],
[
- -70.6316642,
- 45.6916912
+ -73.9341593,
+ 40.1854852
],
[
- -70.6316642,
- 45.6291619
+ -73.9341593,
+ 40.4959486
],
[
- -70.7575538,
- 45.6291619
+ -73.8723024,
+ 40.4959486
],
[
- -70.7575538,
- 45.4414685
+ -73.8723024,
+ 40.5527135
],
[
- -70.8809878,
- 45.4414685
+ -71.8074506,
+ 40.5527135
],
[
- -70.8809878,
- 45.3780612
+ -71.8074506,
+ 41.3088005
],
[
- -71.13328,
- 45.3780612
+ -70.882512,
+ 41.3088005
],
[
- -71.13328,
- 45.3151452
+ -70.882512,
+ 41.184978
],
[
- -71.3830282,
- 45.3151452
+ -70.7461947,
+ 41.184978
],
[
- -71.3830282,
- 45.253416
+ -70.7461947,
+ 41.3091865
],
[
- -71.5076448,
- 45.253416
+ -70.4337553,
+ 41.3091865
],
[
- -71.5076448,
- 45.0655726
+ -70.4337553,
+ 41.4963885
],
[
- -73.9418929,
- 45.0655726
+ -69.9334281,
+ 41.4963885
],
[
- -73.9418929,
- 45.0031242
+ -69.9334281,
+ 41.6230802
],
[
- -74.7469725,
- 45.0031242
+ -69.869857,
+ 41.6230802
],
[
- -74.7469725,
- 45.0649003
+ -69.869857,
+ 41.8776895
],
[
- -74.8800964,
- 45.0649003
+ -69.935791,
+ 41.8776895
],
[
- -74.8800964,
- 45.0029023
+ -69.935791,
+ 42.0032342
],
[
- -75.0662455,
- 45.0029023
+ -69.9975823,
+ 42.0032342
],
[
- -75.0662455,
- 44.9415167
+ -69.9975823,
+ 42.0650191
],
[
- -75.2539363,
- 44.9415167
+ -70.0606103,
+ 42.0650191
],
[
- -75.2539363,
- 44.8776043
+ -70.0606103,
+ 42.1294348
],
[
- -75.3789648,
- 44.8776043
+ -70.5572884,
+ 42.1294348
],
[
- -75.3789648,
- 44.8153462
+ -70.5572884,
+ 43.2487079
],
[
- -75.4431283,
- 44.8153462
+ -70.4974097,
+ 43.2487079
],
[
- -75.4431283,
- 44.7536053
+ -70.4974097,
+ 43.3092194
],
[
- -75.5666566,
- 44.7536053
+ -70.3704249,
+ 43.3092194
],
[
- -75.5666566,
- 44.6909879
+ -70.3704249,
+ 43.371963
],
[
- -75.6290205,
- 44.6909879
+ -70.3085701,
+ 43.371963
],
[
- -75.6290205,
- 44.6284958
+ -70.3085701,
+ 43.4969879
],
[
- -75.7540484,
- 44.6284958
+ -70.183921,
+ 43.4969879
],
[
- -75.7540484,
- 44.566385
+ -70.183921,
+ 43.6223531
],
[
- -75.817312,
- 44.566385
+ -70.057583,
+ 43.6223531
],
[
- -75.817312,
- 44.5028932
+ -70.057583,
+ 43.6850173
],
[
- -75.8799549,
- 44.5028932
+ -69.7455247,
+ 43.6850173
],
[
- -75.8799549,
- 44.3784946
+ -69.7455247,
+ 43.7476571
],
[
- -76.1300319,
- 44.3784946
+ -69.2472845,
+ 43.7476571
],
[
- -76.1300319,
- 44.3159227
+ -69.2472845,
+ 43.8107035
],
[
- -76.1926961,
- 44.3159227
+ -69.0560701,
+ 43.8107035
],
[
- -76.1926961,
- 44.2534378
+ -69.0560701,
+ 43.8717247
],
[
- -76.3182619,
- 44.2534378
+ -68.9950522,
+ 43.8717247
],
[
- -76.3182619,
- 44.1916726
+ -68.9950522,
+ 43.9982022
],
[
- -76.3792975,
- 44.1916726
+ -68.4963672,
+ 43.9982022
],
[
- -76.3792975,
- 44.0653733
+ -68.4963672,
+ 44.0597368
],
[
- -76.4427584,
- 44.0653733
+ -68.3081038,
+ 44.0597368
],
[
- -76.4427584,
- 43.9963825
+ -68.3081038,
+ 44.122137
],
[
- -76.317027,
- 43.9963825
+ -68.1851802,
+ 44.122137
],
[
- -76.317027,
- 43.9414581
+ -68.1851802,
+ 44.3081382
],
[
- -76.5076611,
- 43.9414581
+ -67.9956019,
+ 44.3081382
],
[
- -76.5076611,
- 43.8723335
+ -67.9956019,
+ 44.3727489
],
[
- -76.3829974,
- 43.8723335
+ -67.8103041,
+ 44.3727489
],
[
- -76.3829974,
- 43.8091872
+ -67.8103041,
+ 44.435178
],
[
- -76.2534102,
- 43.8091872
+ -67.4965289,
+ 44.435178
],
[
- -76.2534102,
- 43.5665222
+ -67.4965289,
+ 44.4968776
],
[
- -76.5064833,
- 43.5665222
+ -67.37102,
+ 44.4968776
],
[
- -76.5064833,
- 43.5033881
+ -67.37102,
+ 44.5600642
],
[
- -76.6331208,
- 43.5033881
+ -67.1848753,
+ 44.5600642
],
[
- -76.6331208,
- 43.4432252
+ -67.1848753,
+ 44.6213345
],
[
- -76.6951085,
- 43.4432252
+ -67.1221208,
+ 44.6213345
],
[
- -76.6951085,
- 43.3786858
+ -67.1221208,
+ 44.6867918
],
[
- -76.8177798,
- 43.3786858
+ -67.059365,
+ 44.6867918
],
[
- -76.8177798,
- 43.318066
+ -67.059365,
+ 44.7473657
],
[
- -77.682,
- 43.318066
+ -66.9311098,
+ 44.7473657
],
[
- -77.682,
- 43.3789376
+ -66.9311098,
+ 44.9406566
],
[
- -78.0565883,
- 43.3789376
+ -66.994683,
+ 44.9406566
],
[
- -78.0565883,
- 43.4396918
+ -66.994683,
+ 45.0024514
],
[
- -78.4389748,
- 43.4396918
+ -67.0595847,
+ 45.0024514
],
[
- -78.4389748,
- 43.3794382
+ -67.0595847,
+ 45.1273377
],
[
- -78.8803396,
- 43.3794382
+ -67.1201974,
+ 45.1273377
],
[
- -78.8803396,
- 43.3149724
+ -67.1201974,
+ 45.1910115
],
[
- -79.1298858,
- 43.3149724
+ -67.2469811,
+ 45.1910115
],
[
- -79.1298858,
- 43.2429286
+ -67.2469811,
+ 45.253442
],
[
- -79.0669615,
- 43.2429286
+ -67.3177546,
+ 45.253442
],
[
- -79.0669615,
- 43.1299931
+ -67.3177546,
+ 45.1898369
],
[
- -79.1298858,
- 43.1299931
+ -67.370749,
+ 45.1898369
],
[
- -79.1298858,
- 43.0577305
+ -67.370749,
+ 45.2534001
],
[
- -79.071264,
- 43.0577305
+ -67.4326888,
+ 45.2534001
],
[
- -79.071264,
- 42.9294906
+ -67.4326888,
+ 45.3083409
],
[
- -78.943264,
- 42.9294906
+ -67.3708571,
+ 45.3083409
],
[
- -78.943264,
- 42.7542165
+ -67.3708571,
+ 45.4396986
],
[
- -79.069439,
- 42.7542165
+ -67.4305573,
+ 45.4396986
],
[
- -79.069439,
- 42.6941622
+ -67.4305573,
+ 45.4950095
],
[
- -79.133439,
- 42.6941622
+ -67.37099,
+ 45.4950095
],
[
- -79.133439,
- 42.6296973
+ -67.37099,
+ 45.6264543
],
[
- -79.1947499,
- 42.6296973
+ -67.6214982,
+ 45.6264543
],
[
- -79.1947499,
- 42.5663538
+ -67.6214982,
+ 45.6896133
],
[
- -79.3786827,
- 42.5663538
+ -67.683828,
+ 45.6896133
],
[
- -79.3786827,
- 42.5033425
+ -67.683828,
+ 45.753259
],
[
- -79.4442961,
- 42.5033425
+ -67.7462097,
+ 45.753259
],
[
- -79.4442961,
- 42.4410614
+ -67.7462097,
+ 47.1268165
],
[
- -79.5679936,
- 42.4410614
+ -67.8700141,
+ 47.1268165
],
[
- -79.5679936,
- 42.3775264
+ -67.8700141,
+ 47.1900278
],
[
- -79.6906154,
- 42.3775264
+ -67.9323803,
+ 47.1900278
],
[
- -79.6906154,
- 42.3171086
+ -67.9323803,
+ 47.2539678
],
[
- -79.8164642,
- 42.3171086
+ -67.9959387,
+ 47.2539678
],
[
- -79.8164642,
- 42.2534481
+ -67.9959387,
+ 47.3149737
],
[
- -80.0052373,
- 42.2534481
+ -68.1206676,
+ 47.3149737
],
[
- -80.0052373,
- 42.1909188
+ -68.1206676,
+ 47.3780823
],
[
- -80.1916829,
- 42.1909188
+ -68.4423175,
+ 47.3780823
],
[
- -80.1916829,
- 42.1272555
+ -68.4423175,
+ 47.3166082
],
[
- -80.3167992,
- 42.1272555
+ -68.6314305,
+ 47.3166082
],
[
- -80.3167992,
- 42.0669857
+ -68.6314305,
+ 47.2544676
],
[
- -80.5063234,
- 42.0669857
+ -68.9978037,
+ 47.2544676
],
[
- -80.5063234,
- 42.0034331
+ -68.9978037,
+ 47.439895
],
[
- -80.6930471,
- 42.0034331
+ -69.0607223,
+ 47.439895
],
[
- -80.6930471,
- 41.9415141
+ -69.0607223,
+ 47.5047558
],
[
- -80.9440403,
- 41.9415141
+ -69.2538122,
+ 47.5047558
],
[
- -80.9440403,
- 41.8781193
+ -69.2538122,
+ 47.4398084
],
[
- -81.1942729,
- 41.8781193
+ -69.3179284,
+ 47.4398084
],
[
- -81.1942729,
- 41.8166455
+ -69.3179284,
+ 47.378601
],
[
- -81.3190089,
- 41.8166455
+ -69.4438546,
+ 47.378601
],
[
- -81.3190089,
- 41.7545453
+ -69.4438546,
+ 47.3156274
],
[
- -81.4418435,
- 41.7545453
+ -69.5038204,
+ 47.3156274
],
[
- -81.4418435,
- 41.690965
+ -69.5038204,
+ 47.2525839
],
[
- -81.5053523,
- 41.690965
+ -69.5667838,
+ 47.2525839
],
[
- -81.5053523,
- 41.6301643
+ -69.5667838,
+ 47.1910884
],
[
- -82.7470081,
- 41.6301643
+ -69.6303478,
+ 47.1910884
],
[
- -82.7470081,
- 41.7536942
+ -69.6303478,
+ 47.128701
],
[
- -82.8839135,
- 41.7536942
+ -69.6933103,
+ 47.128701
],
[
- -82.8839135,
- 41.5656075
+ -69.6933103,
+ 47.0654307
],
[
- -82.9957195,
- 41.5656075
+ -69.7557063,
+ 47.0654307
],
[
- -82.9957195,
- 41.6270375
+ -69.7557063,
+ 47.0042751
],
[
- -83.1257796,
- 41.6270375
+ -69.8180391,
+ 47.0042751
],
[
- -83.1257796,
- 41.6878411
+ -69.8180391,
+ 46.9415344
],
[
- -83.2474733,
- 41.6878411
+ -69.8804023,
+ 46.9415344
],
[
- -83.2474733,
- 41.7536942
+ -69.8804023,
+ 46.8792519
],
[
- -83.3737305,
- 41.7536942
+ -69.9421674,
+ 46.8792519
],
[
- -83.3737305,
- 41.809276
+ -69.9421674,
+ 46.8177399
],
[
- -83.3106019,
- 41.809276
+ -70.0063088,
+ 46.8177399
],
[
- -83.3106019,
- 41.8716064
+ -70.0063088,
+ 46.6920295
],
[
- -83.2474733,
- 41.8716064
+ -70.0704265,
+ 46.6920295
],
[
- -83.2474733,
- 41.9361393
+ -70.0704265,
+ 46.4425926
],
[
- -83.1843447,
- 41.9361393
+ -70.1945902,
+ 46.4425926
],
[
- -83.1843447,
- 41.9960851
+ -70.1945902,
+ 46.3785887
],
[
- -83.1207681,
- 41.9960851
+ -70.2562047,
+ 46.3785887
],
[
- -83.1207681,
- 42.2464812
+ -70.2562047,
+ 46.3152628
],
[
- -83.0589194,
- 42.2464812
+ -70.3203651,
+ 46.3152628
],
[
- -83.0589194,
- 42.3089555
+ -70.3203651,
+ 46.0651209
],
[
- -82.8685328,
- 42.3089555
+ -70.3814988,
+ 46.0651209
],
[
- -82.8685328,
- 42.3717652
+ -70.3814988,
+ 45.93552
],
[
- -82.8072219,
- 42.3717652
+ -70.3201618,
+ 45.93552
],
[
- -82.8072219,
- 42.558553
+ -70.3201618,
+ 45.879479
],
[
- -82.7553745,
- 42.558553
+ -70.4493131,
+ 45.879479
],
[
- -82.7553745,
- 42.4954945
+ -70.4493131,
+ 45.7538713
],
[
- -82.5599041,
- 42.4954945
+ -70.5070021,
+ 45.7538713
],
[
- -82.5599041,
- 42.558553
+ -70.5070021,
+ 45.6916912
],
[
- -82.4967755,
- 42.558553
+ -70.6316642,
+ 45.6916912
],
[
- -82.4967755,
- 42.6833607
+ -70.6316642,
+ 45.6291619
],
[
- -82.4328863,
- 42.6833607
+ -70.7575538,
+ 45.6291619
],
[
- -82.4328863,
- 42.9342196
+ -70.7575538,
+ 45.4414685
],
[
- -82.3700552,
- 42.9342196
+ -70.8809878,
+ 45.4414685
],
[
- -82.3700552,
- 43.0648071
+ -70.8809878,
+ 45.3780612
],
[
- -82.4328863,
- 43.0648071
+ -71.13328,
+ 45.3780612
],
[
- -82.4328863,
- 43.1917566
+ -71.13328,
+ 45.3151452
],
[
- -82.4947464,
- 43.1917566
+ -71.3830282,
+ 45.3151452
],
[
- -82.4947464,
- 43.5034627
+ -71.3830282,
+ 45.253416
],
[
- -82.557133,
- 43.5034627
+ -71.5076448,
+ 45.253416
],
[
- -82.557133,
- 43.8160901
+ -71.5076448,
+ 45.0655726
],
[
- -82.6197884,
- 43.8160901
+ -73.9418929,
+ 45.0655726
],
[
- -82.6197884,
- 43.9422098
+ -73.9418929,
+ 45.0031242
],
[
- -82.6839499,
- 43.9422098
+ -74.7469725,
+ 45.0031242
],
[
- -82.6839499,
- 44.0022641
+ -74.7469725,
+ 45.0649003
],
[
- -82.7465346,
- 44.0022641
+ -74.8800964,
+ 45.0649003
],
[
- -82.7465346,
- 44.0670545
+ -74.8800964,
+ 45.0029023
],
[
- -82.8708696,
- 44.0670545
+ -75.0662455,
+ 45.0029023
],
[
- -82.8708696,
- 44.1291935
+ -75.0662455,
+ 44.9415167
],
[
- -83.008517,
- 44.1291935
+ -75.2539363,
+ 44.9415167
],
[
- -83.008517,
- 44.0664786
+ -75.2539363,
+ 44.8776043
],
[
- -83.1336086,
- 44.0664786
+ -75.3789648,
+ 44.8776043
],
[
- -83.1336086,
- 44.0053949
+ -75.3789648,
+ 44.8153462
],
[
- -83.2414522,
- 44.0053949
+ -75.4431283,
+ 44.8153462
],
[
- -83.2414522,
- 44.9962034
+ -75.4431283,
+ 44.7536053
],
[
- -83.1806112,
- 44.9962034
+ -75.5666566,
+ 44.7536053
],
[
- -83.1806112,
- 45.067302
+ -75.5666566,
+ 44.6909879
],
[
- -83.2455172,
- 45.067302
+ -75.6290205,
+ 44.6909879
],
[
- -83.2455172,
- 45.1287382
+ -75.6290205,
+ 44.6284958
],
[
- -83.3065878,
- 45.1287382
+ -75.7540484,
+ 44.6284958
],
[
- -83.3065878,
- 45.2551509
+ -75.7540484,
+ 44.566385
],
[
- -83.3706087,
- 45.2551509
+ -75.817312,
+ 44.566385
],
[
- -83.3706087,
- 45.3165923
+ -75.817312,
+ 44.5028932
],
[
- -83.4325644,
- 45.3165923
+ -75.8799549,
+ 44.5028932
],
[
- -83.4325644,
- 45.3792105
+ -75.8799549,
+ 44.3784946
],
[
- -83.6178415,
- 45.3792105
+ -76.1300319,
+ 44.3784946
],
[
- -83.6178415,
- 45.4419665
+ -76.1300319,
+ 44.3159227
],
[
- -83.8084291,
- 45.4419665
+ -76.1926961,
+ 44.3159227
],
[
- -83.8084291,
- 45.5036189
+ -76.1926961,
+ 44.2534378
],
[
- -84.0550718,
- 45.5036189
+ -76.3182619,
+ 44.2534378
],
[
- -84.0550718,
- 45.5647907
+ -76.3182619,
+ 44.1916726
],
[
- -84.1235181,
- 45.5647907
+ -76.3792975,
+ 44.1916726
],
[
- -84.1235181,
- 45.6287845
+ -76.3792975,
+ 44.0653733
],
[
- -84.1807534,
- 45.6287845
+ -76.4427584,
+ 44.0653733
],
[
- -84.1807534,
- 45.6914688
+ -76.4427584,
+ 43.9963825
],
[
- -84.3111554,
- 45.6914688
+ -76.317027,
+ 43.9963825
],
[
- -84.3111554,
- 45.9337076
+ -76.317027,
+ 43.9414581
],
[
- -83.8209974,
- 45.9337076
+ -76.5076611,
+ 43.9414581
],
[
- -83.8209974,
- 45.8725113
+ -76.5076611,
+ 43.8723335
],
[
- -83.4968086,
- 45.8725113
+ -76.3829974,
+ 43.8723335
],
[
- -83.4968086,
- 45.9337076
+ -76.3829974,
+ 43.8091872
],
[
- -83.4338066,
- 45.9337076
+ -76.2534102,
+ 43.8091872
],
[
- -83.4338066,
- 46.0016863
+ -76.2534102,
+ 43.5665222
],
[
- -83.4962697,
- 46.0016863
+ -76.5064833,
+ 43.5665222
],
[
- -83.4962697,
- 46.0668178
+ -76.5064833,
+ 43.5033881
],
[
- -83.5599956,
- 46.0668178
+ -76.6331208,
+ 43.5033881
],
[
- -83.5599956,
- 46.1261576
+ -76.6331208,
+ 43.4432252
],
[
- -83.9954558,
- 46.1261576
+ -76.6951085,
+ 43.4432252
],
[
- -83.9954558,
- 46.1931747
+ -76.6951085,
+ 43.3786858
],
[
- -84.0591816,
- 46.1931747
+ -76.8177798,
+ 43.3786858
],
[
- -84.0591816,
- 46.3814972
+ -76.8177798,
+ 43.318066
],
[
- -84.1152614,
- 46.3814972
+ -77.682,
+ 43.318066
],
[
- -84.1152614,
- 46.4953584
+ -77.682,
+ 43.3789376
],
[
- -84.0591816,
- 46.4953584
+ -78.0565883,
+ 43.3789376
],
[
- -84.0591816,
- 46.5682653
+ -78.0565883,
+ 43.4396918
],
[
- -84.2579545,
- 46.5682653
+ -78.4389748,
+ 43.4396918
],
[
- -84.2579545,
- 46.5051232
+ -78.4389748,
+ 43.3794382
],
[
- -84.3071879,
- 46.5051232
+ -78.8803396,
+ 43.3794382
],
[
- -84.3071879,
- 46.5682653
+ -78.8803396,
+ 43.3149724
],
[
- -84.4415364,
- 46.5682653
+ -79.1298858,
+ 43.3149724
],
[
- -84.4415364,
- 46.504525
+ -79.1298858,
+ 43.2429286
],
[
- -84.9965729,
- 46.504525
+ -79.0669615,
+ 43.2429286
],
[
- -84.9965729,
- 46.6842882
+ -79.0669615,
+ 43.1299931
],
[
- -84.9298158,
- 46.6842882
+ -79.1298858,
+ 43.1299931
],
[
- -84.9298158,
- 46.818077
+ -79.1298858,
+ 43.0577305
],
[
- -85.3165894,
- 46.818077
+ -79.071264,
+ 43.0577305
],
[
- -85.3165894,
- 46.7535825
+ -79.071264,
+ 42.9294906
],
[
- -87.5562645,
- 46.7535825
+ -78.943264,
+ 42.9294906
],
[
- -87.5562645,
- 47.4407371
+ -78.943264,
+ 42.7542165
],
[
- -87.6825361,
- 47.4407371
+ -79.069439,
+ 42.7542165
],
[
- -87.6825361,
- 47.5035554
+ -79.069439,
+ 42.6941622
],
[
- -88.2560738,
- 47.5035554
+ -79.133439,
+ 42.6941622
],
[
- -88.2560738,
- 47.4433716
+ -79.133439,
+ 42.6296973
],
[
- -88.4417419,
- 47.4433716
+ -79.1947499,
+ 42.6296973
],
[
- -88.4417419,
- 47.3789949
+ -79.1947499,
+ 42.5663538
],
[
- -88.50683,
- 47.3789949
+ -79.3786827,
+ 42.5663538
],
[
- -88.50683,
- 47.3153881
+ -79.3786827,
+ 42.5033425
],
[
- -88.6312821,
- 47.3153881
+ -79.4442961,
+ 42.5033425
],
[
- -88.6312821,
- 47.2539782
+ -79.4442961,
+ 42.4410614
],
[
- -88.7569636,
- 47.2539782
+ -79.5679936,
+ 42.4410614
],
[
- -88.7569636,
- 47.1934682
+ -79.5679936,
+ 42.3775264
],
[
- -88.8838253,
- 47.1934682
+ -79.6906154,
+ 42.3775264
],
[
- -88.8838253,
- 47.1284735
+ -79.6906154,
+ 42.3171086
],
[
- -88.9434208,
- 47.1284735
+ -79.8164642,
+ 42.3171086
],
[
- -88.9434208,
- 47.0662127
+ -79.8164642,
+ 42.2534481
],
[
- -89.0708726,
- 47.0662127
+ -80.0052373,
+ 42.2534481
],
[
- -89.0708726,
- 47.0026826
+ -80.0052373,
+ 42.1909188
],
[
- -89.2565553,
- 47.0026826
+ -80.1916829,
+ 42.1909188
],
[
- -89.2565553,
- 46.9410806
+ -80.1916829,
+ 42.1272555
],
[
- -90.3677669,
- 46.9410806
+ -80.3167992,
+ 42.1272555
],
[
- -90.3677669,
- 47.6844827
+ -80.3167992,
+ 42.0669857
],
[
- -90.3069978,
- 47.6844827
+ -80.5063234,
+ 42.0669857
],
[
- -90.3069978,
- 47.7460174
+ -80.5063234,
+ 42.0034331
],
[
- -89.994859,
- 47.7460174
+ -80.6930471,
+ 42.0034331
],
[
- -89.994859,
- 47.8082719
+ -80.6930471,
+ 41.9415141
],
[
- -89.8048615,
- 47.8082719
+ -80.9440403,
+ 41.9415141
],
[
- -89.8048615,
- 47.8700562
+ -80.9440403,
+ 41.8781193
],
[
- -89.6797699,
- 47.8700562
+ -81.1942729,
+ 41.8781193
],
[
- -89.6797699,
- 47.9339637
+ -81.1942729,
+ 41.8166455
],
[
- -89.4933757,
- 47.9339637
+ -81.3190089,
+ 41.8166455
],
[
- -89.4933757,
- 47.9957956
+ -81.3190089,
+ 41.7545453
],
[
- -89.4284697,
- 47.9957956
+ -81.4418435,
+ 41.7545453
],
[
- -89.4284697,
- 48.0656377
+ -81.4418435,
+ 41.690965
],
[
- -89.9932739,
- 48.0656377
+ -81.5053523,
+ 41.690965
],
[
- -89.9932739,
- 48.1282966
+ -81.5053523,
+ 41.6301643
],
[
- -90.7455933,
- 48.1282966
+ -82.7470081,
+ 41.6301643
],
[
- -90.7455933,
- 48.1893056
+ -82.7470081,
+ 41.7536942
],
[
- -90.8087291,
- 48.1893056
+ -82.8839135,
+ 41.7536942
],
[
- -90.8087291,
- 48.2522065
+ -82.8839135,
+ 41.5656075
],
[
- -91.067763,
- 48.2522065
+ -82.9957195,
+ 41.5656075
],
[
- -91.067763,
- 48.1916658
+ -82.9957195,
+ 41.6270375
],
[
- -91.1946247,
- 48.1916658
+ -83.1257796,
+ 41.6270375
],
[
- -91.1946247,
- 48.1279027
+ -83.1257796,
+ 41.6878411
],
[
- -91.6814196,
- 48.1279027
+ -83.2474733,
+ 41.6878411
],
[
- -91.6814196,
- 48.2525994
+ -83.2474733,
+ 41.7536942
],
[
- -91.9321927,
- 48.2525994
+ -83.3737305,
+ 41.7536942
],
[
- -91.9321927,
- 48.3142454
+ -83.3737305,
+ 41.809276
],
[
- -91.9929683,
- 48.3142454
+ -83.3106019,
+ 41.809276
],
[
- -91.9929683,
- 48.3780845
+ -83.3106019,
+ 41.8716064
],
[
- -92.3189383,
- 48.3780845
+ -83.2474733,
+ 41.8716064
],
[
- -92.3189383,
- 48.2529081
+ -83.2474733,
+ 41.9361393
],
[
- -92.3732233,
- 48.2529081
+ -83.1843447,
+ 41.9361393
],
[
- -92.3732233,
- 48.3153385
+ -83.1843447,
+ 41.9960851
],
[
- -92.4322288,
- 48.3153385
+ -83.1207681,
+ 41.9960851
],
[
- -92.4322288,
- 48.4411448
+ -83.1207681,
+ 42.2464812
],
[
- -92.4977248,
- 48.4411448
+ -83.0589194,
+ 42.2464812
],
[
- -92.4977248,
- 48.501781
+ -83.0589194,
+ 42.3089555
],
[
- -92.5679413,
- 48.501781
+ -82.8685328,
+ 42.3089555
],
[
- -92.5679413,
- 48.439579
+ -82.8685328,
+ 42.3717652
],
[
- -92.6210462,
- 48.439579
+ -82.8072219,
+ 42.3717652
],
[
- -92.6210462,
- 48.5650783
+ -82.8072219,
+ 42.558553
],
[
- -92.8086835,
- 48.5650783
+ -82.7553745,
+ 42.558553
],
[
- -92.8086835,
- 48.6286865
+ -82.7553745,
+ 42.4954945
],
[
- -92.8086835,
- 48.6267365
+ -82.5599041,
+ 42.4954945
],
[
- -92.933185,
- 48.6267365
+ -82.5599041,
+ 42.558553
],
[
- -92.933185,
- 48.6922145
+ -82.4967755,
+ 42.558553
],
[
- -93.0051716,
- 48.6922145
+ -82.4967755,
+ 42.6833607
],
[
- -93.0051716,
- 48.6282965
+ -82.4328863,
+ 42.6833607
],
[
- -93.1225924,
- 48.6282965
+ -82.4328863,
+ 42.9342196
],
[
- -93.1225924,
- 48.6922145
+ -82.3700552,
+ 42.9342196
],
[
- -93.3190806,
- 48.6922145
+ -82.3700552,
+ 43.0648071
],
[
- -93.3190806,
- 48.6267365
+ -82.4328863,
+ 43.0648071
],
[
- -93.5049477,
- 48.6267365
+ -82.4328863,
+ 43.1917566
],
[
- -93.5049477,
- 48.5635164
+ -82.4947464,
+ 43.1917566
],
[
- -93.7474601,
- 48.5635164
+ -82.4947464,
+ 43.5034627
],
[
- -93.7474601,
- 48.6267365
+ -82.557133,
+ 43.5034627
],
[
- -93.8135461,
- 48.6267365
+ -82.557133,
+ 43.8160901
],
[
- -93.8135461,
- 48.6898775
+ -82.6197884,
+ 43.8160901
],
[
- -94.2453121,
- 48.6898775
+ -82.6197884,
+ 43.9422098
],
[
- -94.2453121,
- 48.7554327
+ -82.6839499,
+ 43.9422098
],
[
- -94.6183171,
- 48.7554327
+ -82.6839499,
+ 44.0022641
],
[
- -94.6183171,
- 48.941036
+ -82.7465346,
+ 44.0022641
],
[
- -94.6809018,
- 48.941036
+ -82.7465346,
+ 44.0670545
],
[
- -94.6809018,
- 49.0029737
+ -82.8708696,
+ 44.0670545
],
[
- -94.7441532,
- 49.0029737
+ -82.8708696,
+ 44.1291935
],
[
- -94.7441532,
- 49.2536079
+ -83.008517,
+ 44.1291935
],
[
- -94.8084069,
- 49.2536079
+ -83.008517,
+ 44.0664786
],
[
- -94.8084069,
- 49.3784134
+ -83.1336086,
+ 44.0664786
],
[
- -95.1192391,
- 49.3784134
+ -83.1336086,
+ 44.0053949
],
[
- -95.1192391,
- 49.4425264
+ -83.2414522,
+ 44.0053949
],
[
- -95.1934341,
- 49.4425264
+ -83.2414522,
+ 44.9962034
],
[
- -95.1934341,
- 49.0035292
+ -83.1806112,
+ 44.9962034
],
[
- -96.87069,
- 49.0035292
+ -83.1806112,
+ 45.067302
],
[
- -96.87069,
- 49.0656063
+ -83.2455172,
+ 45.067302
],
[
- -99.0049312,
- 49.0656063
+ -83.2455172,
+ 45.1287382
],
[
- -99.0049312,
- 49.0050714
+ -83.3065878,
+ 45.1287382
],
[
- -109.3699257,
- 49.0050714
+ -83.3065878,
+ 45.2551509
],
[
- -109.3699257,
- 49.0668231
+ -83.3706087,
+ 45.2551509
],
[
- -109.5058746,
- 49.0668231
+ -83.3706087,
+ 45.3165923
],
[
- -109.5058746,
- 49.0050714
+ -83.4325644,
+ 45.3165923
],
[
- -114.1830014,
- 49.0050714
+ -83.4325644,
+ 45.3792105
],
[
- -114.1830014,
- 49.0687317
+ -83.6178415,
+ 45.3792105
],
[
- -114.7578709,
- 49.0687317
+ -83.6178415,
+ 45.4419665
],
[
- -114.7578709,
- 49.0050714
+ -83.8084291,
+ 45.4419665
],
[
- -115.433731,
- 49.0050714
+ -83.8084291,
+ 45.5036189
],
[
- -115.433731,
- 49.0671412
+ -84.0550718,
+ 45.5036189
],
[
- -116.5062706,
- 49.0671412
+ -84.0550718,
+ 45.5647907
],
[
- -116.5062706,
- 49.0050714
+ -84.1235181,
+ 45.5647907
],
[
- -117.3089504,
- 49.0050714
+ -84.1235181,
+ 45.6287845
],
[
- -117.3089504,
- 49.0659803
+ -84.1807534,
+ 45.6287845
],
[
- -119.882945,
- 49.0659803
+ -84.1807534,
+ 45.6914688
],
[
- -119.882945,
- 49.0050714
+ -84.3111554,
+ 45.6914688
],
[
- -120.1208555,
- 49.0050714
+ -84.3111554,
+ 45.9337076
],
[
- -120.1208555,
- 49.0678367
+ -83.8209974,
+ 45.9337076
],
[
- -121.4451636,
- 49.0678367
+ -83.8209974,
+ 45.8725113
],
[
- -121.4451636,
- 49.0050714
+ -83.4968086,
+ 45.8725113
],
[
- -121.9311808,
- 49.0050714
+ -83.4968086,
+ 45.9337076
],
[
- -121.9311808,
- 49.0656099
+ -83.4338066,
+ 45.9337076
],
[
- -122.817484,
- 49.0656099
+ -83.4338066,
+ 46.0016863
],
[
- -122.817484,
- 49.0029143
+ -83.4962697,
+ 46.0016863
],
[
- -122.8795155,
- 49.0029143
+ -83.4962697,
+ 46.0668178
],
[
- -122.8795155,
- 48.9347018
+ -83.5599956,
+ 46.0668178
],
[
- -122.8174629,
- 48.9347018
+ -83.5599956,
+ 46.1261576
],
[
- -122.8174629,
- 48.8101998
+ -83.9954558,
+ 46.1261576
],
[
- -122.7538859,
- 48.8101998
+ -83.9954558,
+ 46.1931747
],
[
- -122.7538859,
- 48.7533758
+ -84.0591816,
+ 46.1931747
],
[
- -122.8712937,
- 48.7533758
+ -84.0591816,
+ 46.3814972
],
[
- -122.8712937,
- 48.8153948
+ -84.1152614,
+ 46.3814972
],
[
- -123.0055391,
- 48.8153948
+ -84.1152614,
+ 46.4953584
],
[
- -123.0055391,
- 48.7529529
+ -84.0591816,
+ 46.4953584
],
[
- -123.1296926,
- 48.7529529
+ -84.0591816,
+ 46.5682653
],
[
- -123.1296926,
- 48.6902201
+ -84.2579545,
+ 46.5682653
],
[
- -123.1838197,
- 48.6902201
+ -84.2579545,
+ 46.5051232
],
[
- -123.1838197,
- 48.7529029
- ]
- ],
- [
- [
- -122.9341743,
- 37.7521547
+ -84.3071879,
+ 46.5051232
],
[
- -122.9347457,
- 37.6842013
+ -84.3071879,
+ 46.5682653
],
[
- -123.0679013,
- 37.6849023
+ -84.4415364,
+ 46.5682653
],
[
- -123.0673747,
- 37.7475251
+ -84.4415364,
+ 46.504525
],
[
- -123.1292603,
- 37.7478506
+ -84.9965729,
+ 46.504525
],
[
- -123.1286894,
- 37.815685
+ -84.9965729,
+ 46.6842882
],
[
- -123.0590687,
- 37.8153192
+ -84.9298158,
+ 46.6842882
],
[
- -123.0595947,
- 37.7528143
- ]
- ],
- [
- [
- -71.6299464,
- 41.2540893
+ -84.9298158,
+ 46.818077
],
[
- -71.4966465,
- 41.2541393
+ -85.3165894,
+ 46.818077
],
[
- -71.4965596,
- 41.122965
+ -85.3165894,
+ 46.7535825
],
[
- -71.6298594,
- 41.1229149
- ]
- ],
- [
- [
- -70.3184265,
- 41.3775196
+ -87.5562645,
+ 46.7535825
],
[
- -70.3183384,
- 41.2448243
+ -87.5562645,
+ 47.4407371
],
[
- -70.1906612,
- 41.2448722
+ -87.6825361,
+ 47.4407371
],
[
- -70.1906239,
- 41.1886019
+ -87.6825361,
+ 47.5035554
],
[
- -69.9336025,
- 41.1886984
+ -88.2560738,
+ 47.5035554
],
[
- -69.933729,
- 41.3791941
+ -88.2560738,
+ 47.4433716
],
[
- -69.9950664,
- 41.3791712
+ -88.4417419,
+ 47.4433716
],
[
- -69.995109,
- 41.443159
+ -88.4417419,
+ 47.3789949
],
[
- -70.0707828,
- 41.4431307
+ -88.50683,
+ 47.3789949
],
[
- -70.0706972,
- 41.3144915
+ -88.50683,
+ 47.3153881
],
[
- -70.2461667,
- 41.3144258
+ -88.6312821,
+ 47.3153881
],
[
- -70.2462087,
- 41.3775467
- ]
- ],
- [
- [
- -68.9403374,
- 43.9404062
+ -88.6312821,
+ 47.2539782
],
[
- -68.6856948,
- 43.9404977
+ -88.7569636,
+ 47.2539782
],
[
- -68.6856475,
- 43.8721797
+ -88.7569636,
+ 47.1934682
],
[
- -68.7465405,
- 43.8721577
+ -88.8838253,
+ 47.1934682
],
[
- -68.7464976,
- 43.8102529
+ -88.8838253,
+ 47.1284735
],
[
- -68.8090782,
- 43.8102304
+ -88.9434208,
+ 47.1284735
],
[
- -68.8090343,
- 43.746728
+ -88.9434208,
+ 47.0662127
],
[
- -68.8773094,
- 43.7467034
+ -89.0708726,
+ 47.0662127
],
[
- -68.8773544,
- 43.8117826
+ -89.0708726,
+ 47.0026826
],
[
- -68.9402483,
- 43.8117599
- ]
- ],
- [
- [
- -123.1291466,
- 49.0645144
+ -89.2565553,
+ 47.0026826
],
[
- -122.9954224,
- 49.0645144
+ -89.2565553,
+ 46.9410806
],
[
- -122.9954224,
- 48.9343243
+ -90.3677669,
+ 46.9410806
],
[
- -123.1291466,
- 48.9343243
- ]
- ],
- [
- [
- -82.9407144,
- 24.7535913
+ -90.3677669,
+ 47.6844827
],
[
- -82.8719398,
- 24.7535913
+ -90.3069978,
+ 47.6844827
],
[
- -82.8719398,
- 24.6905653
+ -90.3069978,
+ 47.7460174
],
[
- -82.7446233,
- 24.6905653
+ -89.994859,
+ 47.7460174
],
[
- -82.7446233,
- 24.6214593
+ -89.994859,
+ 47.8082719
],
[
- -82.8088038,
- 24.6214593
+ -89.8048615,
+ 47.8082719
],
[
- -82.8088038,
- 24.5594908
+ -89.8048615,
+ 47.8700562
],
[
- -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": [
- [
+ -89.6797699,
+ 47.8700562
+ ],
[
- -125.990173,
- 48.9962416
+ -89.6797699,
+ 47.9339637
],
[
- -125.989419,
- 47.9948396
+ -89.4933757,
+ 47.9339637
],
[
- -123.9929739,
- 47.9955062
+ -89.4933757,
+ 47.9957956
],
[
- -123.9922429,
- 47.0059202
+ -89.4284697,
+ 47.9957956
],
[
- -125.988688,
- 47.0052409
+ -89.4284697,
+ 48.0656377
],
[
- -125.9879604,
- 46.0015618
+ -89.9932739,
+ 48.0656377
],
[
- -123.9939396,
- 46.0022529
+ -89.9932739,
+ 48.1282966
],
[
- -123.9925238,
- 43.9961708
+ -90.7455933,
+ 48.1282966
],
[
- -124.9931832,
- 43.9958116
+ -90.7455933,
+ 48.1893056
],
[
- -124.9918175,
- 41.9942149
+ -90.8087291,
+ 48.1893056
],
[
- -125.9851789,
- 41.9938465
+ -90.8087291,
+ 48.2522065
],
[
- -125.9838655,
- 40.0076111
+ -91.067763,
+ 48.2522065
],
[
- -123.9833285,
- 40.0083757
+ -91.067763,
+ 48.1916658
],
[
- -123.9814115,
- 37.002615
+ -91.1946247,
+ 48.1916658
],
[
- -122.21903,
- 37.0033173
+ -91.1946247,
+ 48.1279027
],
[
- -122.2184144,
- 36.011671
+ -91.6814196,
+ 48.1279027
],
[
- -122.020087,
- 36.011751
+ -91.6814196,
+ 48.2525994
],
[
- -122.0188591,
- 33.9961766
+ -91.9321927,
+ 48.2525994
],
[
- -119.9787757,
- 33.9970206
+ -91.9321927,
+ 48.3142454
],
[
- -119.9775867,
- 31.9987658
+ -91.9929683,
+ 48.3142454
],
[
- -114.0122833,
- 32.00129
+ -91.9929683,
+ 48.3780845
],
[
- -114.0116894,
- 30.9862401
+ -92.3189383,
+ 48.3780845
],
[
- -105.998294,
- 30.9896679
+ -92.3189383,
+ 48.2529081
],
[
- -105.9971419,
- 28.9901065
+ -92.3732233,
+ 48.2529081
],
[
- -102.0210506,
- 28.9918418
+ -92.3732233,
+ 48.3153385
],
[
- -102.0204916,
- 28.00733
+ -92.4322288,
+ 48.3153385
],
[
- -100.0062436,
- 28.0082173
+ -92.4322288,
+ 48.4411448
],
[
- -100.0051143,
- 25.991909
+ -92.4977248,
+ 48.4411448
],
[
- -98.0109067,
- 25.9928035
+ -92.4977248,
+ 48.501781
],
[
- -98.0103613,
- 25.0063461
+ -92.5679413,
+ 48.501781
],
[
- -97.0161086,
- 25.0067957
+ -92.5679413,
+ 48.439579
],
[
- -97.016654,
- 25.9932494
+ -92.6210462,
+ 48.439579
],
[
- -95.9824825,
- 25.9937132
+ -92.6210462,
+ 48.5650783
],
[
- -95.9835999,
- 27.9891175
+ -92.8086835,
+ 48.5650783
],
[
- -94.0200898,
- 27.9899826
+ -92.8086835,
+ 48.6286865
],
[
- -94.0206586,
- 28.9918129
+ -92.8086835,
+ 48.6267365
],
[
- -88.0156706,
- 28.9944338
+ -92.933185,
+ 48.6267365
],
[
- -88.0162494,
- 30.0038862
+ -92.933185,
+ 48.6922145
],
[
- -86.0277506,
- 30.0047454
+ -93.0051716,
+ 48.6922145
],
[
- -86.0271719,
- 28.9953016
+ -93.0051716,
+ 48.6282965
],
[
- -84.0187909,
- 28.9961781
+ -93.1225924,
+ 48.6282965
],
[
- -84.017095,
- 25.9817708
+ -93.1225924,
+ 48.6922145
],
[
- -81.9971976,
- 25.9826768
+ -93.3190806,
+ 48.6922145
],
[
- -81.9966618,
- 25.0134917
+ -93.3190806,
+ 48.6267365
],
[
- -84.0165592,
- 25.0125783
+ -93.5049477,
+ 48.6267365
],
[
- -84.0160068,
- 24.0052745
+ -93.5049477,
+ 48.5635164
],
[
- -80.0199985,
- 24.007096
+ -93.7474601,
+ 48.5635164
],
[
- -80.0245309,
- 32.0161282
+ -93.7474601,
+ 48.6267365
],
[
- -78.0066484,
- 32.0169819
+ -93.8135461,
+ 48.6267365
],
[
- -78.0072238,
- 32.9894278
+ -93.8135461,
+ 48.6898775
],
[
- -77.8807233,
- 32.9894807
+ -94.2453121,
+ 48.6898775
],
[
- -77.8813253,
- 33.9955918
+ -94.2453121,
+ 48.7554327
],
[
- -76.0115411,
- 33.9963653
+ -94.6183171,
+ 48.7554327
],
[
- -76.0121459,
- 34.9952552
+ -94.6183171,
+ 48.941036
],
[
- -74.0068449,
- 34.9960749
+ -94.6809018,
+ 48.941036
],
[
- -74.0099997,
- 40.0084254
+ -94.6809018,
+ 49.0029737
],
[
- -72.0013745,
- 40.0091931
+ -94.7441532,
+ 49.0029737
],
[
- -72.002019,
- 40.9912464
+ -94.7441532,
+ 49.2536079
],
[
- -69.8797398,
- 40.9920457
+ -94.8084069,
+ 49.2536079
],
[
- -69.8804173,
- 42.00893
+ -94.8084069,
+ 49.3784134
],
[
- -69.9927682,
- 42.0088883
+ -95.1192391,
+ 49.3784134
],
[
- -69.9934462,
- 43.0105166
+ -95.1192391,
+ 49.4425264
],
[
- -67.9845366,
- 43.0112496
+ -95.1934341,
+ 49.4425264
],
[
- -67.985224,
- 44.0103812
+ -95.1934341,
+ 49.0035292
],
[
- -65.9892568,
- 44.0110975
+ -96.87069,
+ 49.0035292
],
[
- -65.9921237,
- 47.9993584
+ -96.87069,
+ 49.0656063
],
[
- -70.006442,
- 47.9980181
+ -99.0049312,
+ 49.0656063
],
[
- -70.005708,
- 47.0042007
+ -99.0049312,
+ 49.0050714
],
[
- -72.023686,
- 47.003514
+ -109.3699257,
+ 49.0050714
],
[
- -72.0222508,
- 45.0059846
+ -109.3699257,
+ 49.0668231
],
[
- -78.0146667,
- 45.0038705
+ -109.5058746,
+ 49.0668231
],
[
- -78.0139662,
- 44.0026998
+ -109.5058746,
+ 49.0050714
],
[
- -80.029686,
- 44.0019763
+ -114.1830014,
+ 49.0050714
],
[
- -80.0290052,
- 43.0122994
+ -114.1830014,
+ 49.0687317
],
[
- -81.995479,
- 43.011582
+ -114.7578709,
+ 49.0687317
],
[
- -81.9982986,
- 47.0042713
+ -114.7578709,
+ 49.0050714
],
[
- -87.505706,
- 47.0023972
+ -115.433731,
+ 49.0050714
],
[
- -87.5064535,
- 48.0142702
+ -115.433731,
+ 49.0671412
],
[
- -88.0260889,
- 48.0140968
+ -116.5062706,
+ 49.0671412
],
[
- -88.026838,
- 49.0086686
+ -116.5062706,
+ 49.0050714
],
[
- -93.9981078,
- 49.0067142
+ -117.3089504,
+ 49.0050714
],
[
- -93.9988778,
- 50.0086456
+ -117.3089504,
+ 49.0659803
],
[
- -96.0138899,
- 50.0079995
+ -119.882945,
+ 49.0659803
],
[
- -96.0131199,
- 49.0060547
- ]
- ],
- [
- [
- -160.5787616,
- 22.5062947
+ -119.882945,
+ 49.0050714
],
[
- -160.5782192,
- 21.4984647
+ -120.1208555,
+ 49.0050714
],
[
- -159.0030121,
- 21.499196
+ -120.1208555,
+ 49.0678367
],
[
- -159.0027422,
- 20.9951068
+ -121.4451636,
+ 49.0678367
],
[
- -157.5083185,
- 20.995803
+ -121.4451636,
+ 49.0050714
],
[
- -157.5080519,
- 20.4960241
+ -121.9311808,
+ 49.0050714
],
[
- -155.966889,
- 20.4967444
+ -121.9311808,
+ 49.0656099
],
[
- -155.9674267,
- 21.5028287
+ -122.817484,
+ 49.0656099
],
[
- -157.5044717,
- 21.5021151
+ -122.817484,
+ 49.0029143
],
[
- -157.5047384,
- 21.9984962
+ -122.8795155,
+ 49.0029143
],
[
- -159.0090946,
- 21.9978002
+ -122.8795155,
+ 48.9347018
],
[
- -159.0093692,
- 22.5070181
- ]
- ],
- [
- [
- -168.006102,
- 68.9941463
+ -122.8174629,
+ 48.9347018
],
[
- -168.0047628,
- 68.0107853
+ -122.8174629,
+ 48.8101998
],
[
- -165.4842481,
- 68.0112562
+ -122.7538859,
+ 48.8101998
],
[
- -165.4829337,
- 67.0037303
+ -122.7538859,
+ 48.7533758
],
[
- -168.0034485,
- 67.0032389
+ -122.8712937,
+ 48.7533758
],
[
- -168.002195,
- 66.0017503
+ -122.8712937,
+ 48.8153948
],
[
- -169.0087448,
- 66.001546
+ -123.0055391,
+ 48.8153948
],
[
- -169.0075381,
- 64.9987675
+ -123.0055391,
+ 48.7529529
],
[
- -168.0009882,
- 64.9989798
+ -123.1296926,
+ 48.7529529
],
[
- -167.9998282,
- 63.9982374
+ -123.1296926,
+ 48.6902201
],
[
- -164.9871288,
- 63.9988964
+ -123.1838197,
+ 48.6902201
],
[
- -164.9860062,
- 62.9950845
- ],
+ -123.1838197,
+ 48.7529029
+ ]
+ ],
+ [
[
- -167.9987057,
- 62.9944019
+ -122.9341743,
+ 37.7521547
],
[
- -167.9946035,
- 59.0153692
+ -122.9347457,
+ 37.6842013
],
[
- -162.5027857,
- 59.0167799
+ -123.0679013,
+ 37.6849023
],
[
- -162.5018149,
- 58.0005815
+ -123.0673747,
+ 37.7475251
],
[
- -160.0159024,
- 58.0012389
+ -123.1292603,
+ 37.7478506
],
[
- -160.0149725,
- 57.000035
+ -123.1286894,
+ 37.815685
],
[
- -160.5054788,
- 56.9999017
+ -123.0590687,
+ 37.8153192
],
[
- -160.5045719,
- 55.9968161
- ],
+ -123.0595947,
+ 37.7528143
+ ]
+ ],
+ [
[
- -164.012195,
- 55.9958373
+ -71.6299464,
+ 41.2540893
],
[
- -164.0113186,
- 55.00107
+ -71.4966465,
+ 41.2541393
],
[
- -165.994782,
- 55.0005023
+ -71.4965596,
+ 41.122965
],
[
- -165.9941266,
- 54.2400584
- ],
+ -71.6298594,
+ 41.1229149
+ ]
+ ],
+ [
[
- -168.0002944,
- 54.2394734
+ -70.3184265,
+ 41.3775196
],
[
- -168.0000986,
- 54.0094921
+ -70.3183384,
+ 41.2448243
],
[
- -170.0156134,
- 54.0089011
+ -70.1906612,
+ 41.2448722
],
[
- -170.0147683,
- 53.0016446
+ -70.1906239,
+ 41.1886019
],
[
- -171.9993636,
- 53.0010487
+ -69.9336025,
+ 41.1886984
],
[
- -171.9989488,
- 52.4977745
+ -69.933729,
+ 41.3791941
],
[
- -176.0083239,
- 52.4965566
+ -69.9950664,
+ 41.3791712
],
[
- -176.0081186,
- 52.2452555
+ -69.995109,
+ 41.443159
],
[
- -178.000097,
- 52.2446469
+ -70.0707828,
+ 41.4431307
],
[
- -177.9992996,
- 51.2554252
+ -70.0706972,
+ 41.3144915
],
[
- -176.0073212,
- 51.2560472
+ -70.2461667,
+ 41.3144258
],
[
- -176.0075146,
- 51.4980163
- ],
+ -70.2462087,
+ 41.3775467
+ ]
+ ],
+ [
[
- -171.9981395,
- 51.4992617
+ -68.9403374,
+ 43.9404062
],
[
- -171.9985419,
- 51.9985373
+ -68.6856948,
+ 43.9404977
],
[
- -167.9984317,
- 51.9997661
+ -68.6856475,
+ 43.8721797
],
[
- -167.9994645,
- 53.2560877
+ -68.7465405,
+ 43.8721577
],
[
- -165.9932968,
- 53.2566866
+ -68.7464976,
+ 43.8102529
],
[
- -165.9939308,
- 54.0100804
+ -68.8090782,
+ 43.8102304
],
[
- -159.0067205,
- 54.0121291
+ -68.8090343,
+ 43.746728
],
[
- -159.0075717,
- 55.002502
+ -68.8773094,
+ 43.7467034
],
[
- -158.0190709,
- 55.0027849
+ -68.8773544,
+ 43.8117826
],
[
- -158.0199473,
- 55.9975094
- ],
+ -68.9402483,
+ 43.8117599
+ ]
+ ],
+ [
[
- -151.9963213,
- 55.9991902
+ -123.1291466,
+ 49.0645144
],
[
- -151.9981536,
- 57.9986536
+ -122.9954224,
+ 49.0645144
],
[
- -151.500341,
- 57.9987853
+ -122.9954224,
+ 48.9343243
],
[
- -151.5012894,
- 58.9919816
- ],
+ -123.1291466,
+ 48.9343243
+ ]
+ ],
+ [
[
- -138.5159989,
- 58.9953194
+ -82.9407144,
+ 24.7535913
],
[
- -138.5150471,
- 57.9986434
+ -82.8719398,
+ 24.7535913
],
[
- -136.6872422,
- 57.9991267
+ -82.8719398,
+ 24.6905653
],
[
- -136.6863158,
- 57.0016688
+ -82.7446233,
+ 24.6905653
],
[
- -135.9973698,
- 57.001856
+ -82.7446233,
+ 24.6214593
],
[
- -135.9964667,
- 56.0030544
+ -82.8088038,
+ 24.6214593
],
[
- -134.6717732,
- 56.003424
+ -82.8088038,
+ 24.5594908
],
[
- -134.6708865,
- 54.9969623
- ],
+ -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": [
+ [
[
- -133.9956734,
- 54.9971556
+ -125.990173,
+ 48.9962416
],
[
- -133.9948193,
- 54.0031685
+ -125.989419,
+ 47.9948396
],
[
- -130.0044418,
- 54.0043387
+ -123.9929739,
+ 47.9955062
],
[
- -130.0070826,
- 57.0000507
+ -123.9922429,
+ 47.0059202
],
[
- -131.975877,
- 56.9995156
+ -125.988688,
+ 47.0052409
],
[
- -131.9787378,
- 59.9933094
+ -125.9879604,
+ 46.0015618
],
[
- -138.0071813,
- 59.991805
+ -123.9939396,
+ 46.0022529
],
[
- -138.0082158,
- 61.0125755
+ -123.9925238,
+ 43.9961708
],
[
- -140.9874011,
- 61.0118551
+ -124.9931832,
+ 43.9958116
],
[
- -140.99984,
- 71.0039309
+ -124.9918175,
+ 41.9942149
],
[
- -154.5023956,
- 71.0017377
+ -125.9851789,
+ 41.9938465
],
[
- -154.5039632,
- 71.9983391
+ -125.9838655,
+ 40.0076111
],
[
- -157.499048,
- 71.9978773
+ -123.9833285,
+ 40.0083757
],
[
- -157.4974758,
- 70.9982877
+ -123.9814115,
+ 37.002615
],
[
- -163.0233611,
- 70.9973899
+ -122.21903,
+ 37.0033173
],
[
- -163.0218273,
- 69.9707435
+ -122.2184144,
+ 36.011671
],
[
- -164.9730896,
- 69.97041
+ -122.020087,
+ 36.011751
],
[
- -164.9717003,
- 68.994689
- ]
- ],
- [
- [
- -168.5133204,
- 62.8689586
+ -122.0188591,
+ 33.9961766
],
[
- -168.5144423,
- 63.8765677
+ -119.9787757,
+ 33.9970206
],
[
- -172.0202755,
- 63.8757975
+ -119.9775867,
+ 31.9987658
],
[
- -172.0191536,
- 62.8681608
- ]
- ],
- [
- [
- -170.9947111,
- 59.9954089
+ -114.0122833,
+ 32.00129
],
[
- -170.995726,
- 60.9969787
+ -114.0116894,
+ 30.9862401
],
[
- -174.0045311,
- 60.9962508
+ -105.998294,
+ 30.9896679
],
[
- -174.0035162,
- 59.9946581
- ]
- ],
- [
- [
- -156.0717261,
- 20.2854602
+ -105.9971419,
+ 28.9901065
],
[
- -154.7940471,
- 20.2860582
+ -102.0210506,
+ 28.9918418
],
[
- -154.7933145,
- 18.9029464
+ -102.0204916,
+ 28.00733
],
[
- -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
+ -100.0062436,
+ 28.0082173
],
[
- 8.3683809,
- 55.4042149
+ -100.0051143,
+ 25.991909
],
[
- 8.2103997,
- 55.4039795
+ -98.0109067,
+ 25.9928035
],
[
- 8.2087314,
- 55.4937345
+ -98.0103613,
+ 25.0063461
],
[
- 8.0502655,
- 55.4924731
+ -97.0161086,
+ 25.0067957
],
[
- 8.0185123,
- 56.7501399
+ -97.016654,
+ 25.9932494
],
[
- 8.1819161,
- 56.7509948
+ -95.9824825,
+ 25.9937132
],
[
- 8.1763274,
- 57.0208898
+ -95.9835999,
+ 27.9891175
],
[
- 8.3413329,
- 57.0219872
+ -94.0200898,
+ 27.9899826
],
[
- 8.3392467,
- 57.1119574
+ -94.0206586,
+ 28.9918129
],
[
- 8.5054433,
- 57.1123212
+ -88.0156706,
+ 28.9944338
],
[
- 8.5033923,
- 57.2020499
+ -88.0162494,
+ 30.0038862
],
[
- 9.3316304,
- 57.2027636
+ -86.0277506,
+ 30.0047454
],
[
- 9.3319079,
- 57.2924835
+ -86.0271719,
+ 28.9953016
],
[
- 9.4978864,
- 57.2919578
+ -84.0187909,
+ 28.9961781
],
[
- 9.4988593,
- 57.3820608
+ -84.017095,
+ 25.9817708
],
[
- 9.6649749,
- 57.3811615
+ -81.9971976,
+ 25.9826768
],
[
- 9.6687295,
- 57.5605591
+ -81.9966618,
+ 25.0134917
],
[
- 9.8351961,
- 57.5596265
+ -84.0165592,
+ 25.0125783
],
[
- 9.8374896,
- 57.6493322
+ -84.0160068,
+ 24.0052745
],
[
- 10.1725726,
- 57.6462818
+ -80.0199985,
+ 24.007096
],
[
- 10.1754245,
- 57.7367768
+ -80.0245309,
+ 32.0161282
],
[
- 10.5118282,
- 57.7330269
+ -78.0066484,
+ 32.0169819
],
[
- 10.5152095,
- 57.8228945
+ -78.0072238,
+ 32.9894278
],
[
- 10.6834853,
- 57.8207722
+ -77.8807233,
+ 32.9894807
],
[
- 10.6751613,
- 57.6412021
+ -77.8813253,
+ 33.9955918
],
[
- 10.5077045,
- 57.6433097
+ -76.0115411,
+ 33.9963653
],
[
- 10.5039992,
- 57.5535088
+ -76.0121459,
+ 34.9952552
],
[
- 10.671038,
- 57.5514113
+ -74.0068449,
+ 34.9960749
],
[
- 10.6507805,
- 57.1024538
+ -74.0099997,
+ 40.0084254
],
[
- 10.4857673,
- 57.1045138
+ -72.0013745,
+ 40.0091931
],
[
- 10.4786236,
- 56.9249051
+ -72.002019,
+ 40.9912464
],
[
- 10.3143981,
- 56.9267573
+ -69.8797398,
+ 40.9920457
],
[
- 10.3112341,
- 56.8369269
+ -69.8804173,
+ 42.00893
],
[
- 10.4750295,
- 56.83509
+ -69.9927682,
+ 42.0088883
],
[
- 10.4649016,
- 56.5656681
+ -69.9934462,
+ 43.0105166
],
[
- 10.9524239,
- 56.5589761
+ -67.9845366,
+ 43.0112496
],
[
- 10.9479249,
- 56.4692243
+ -67.985224,
+ 44.0103812
],
[
- 11.1099335,
- 56.4664675
+ -65.9892568,
+ 44.0110975
],
[
- 11.1052639,
- 56.376833
+ -65.9921237,
+ 47.9993584
],
[
- 10.9429901,
- 56.3795284
+ -70.006442,
+ 47.9980181
],
[
- 10.9341235,
- 56.1994768
+ -70.005708,
+ 47.0042007
],
[
- 10.7719685,
- 56.2020244
+ -72.023686,
+ 47.003514
],
[
- 10.7694751,
- 56.1120103
+ -72.0222508,
+ 45.0059846
],
[
- 10.6079695,
- 56.1150259
+ -78.0146667,
+ 45.0038705
],
[
- 10.4466742,
- 56.116717
+ -78.0139662,
+ 44.0026998
],
[
- 10.2865948,
- 56.118675
+ -80.029686,
+ 44.0019763
],
[
- 10.2831527,
- 56.0281851
+ -80.0290052,
+ 43.0122994
],
[
- 10.4439274,
- 56.0270388
+ -81.995479,
+ 43.011582
],
[
- 10.4417713,
- 55.7579243
+ -81.9982986,
+ 47.0042713
],
[
- 10.4334961,
- 55.6693533
+ -87.505706,
+ 47.0023972
],
[
- 10.743814,
- 55.6646861
+ -87.5064535,
+ 48.0142702
],
[
- 10.743814,
- 55.5712253
+ -88.0260889,
+ 48.0140968
],
[
- 10.8969041,
- 55.5712253
+ -88.026838,
+ 49.0086686
],
[
- 10.9051793,
- 55.3953852
+ -93.9981078,
+ 49.0067142
],
[
- 11.0613726,
- 55.3812841
+ -93.9988778,
+ 50.0086456
],
[
- 11.0593038,
- 55.1124061
+ -96.0138899,
+ 50.0079995
],
[
- 11.0458567,
- 55.0318621
+ -96.0131199,
+ 49.0060547
+ ]
+ ],
+ [
+ [
+ -160.5787616,
+ 22.5062947
],
[
- 11.2030844,
- 55.0247474
+ -160.5782192,
+ 21.4984647
],
[
- 11.2030844,
- 55.117139
+ -159.0030121,
+ 21.499196
],
[
- 11.0593038,
- 55.1124061
+ -159.0027422,
+ 20.9951068
],
[
- 11.0613726,
- 55.3812841
+ -157.5083185,
+ 20.995803
],
[
- 11.0789572,
- 55.5712253
+ -157.5080519,
+ 20.4960241
],
[
- 10.8969041,
- 55.5712253
+ -155.966889,
+ 20.4967444
],
[
- 10.9258671,
- 55.6670198
+ -155.9674267,
+ 21.5028287
],
[
- 10.743814,
- 55.6646861
+ -157.5044717,
+ 21.5021151
],
[
- 10.7562267,
- 55.7579243
+ -157.5047384,
+ 21.9984962
],
[
- 10.4417713,
- 55.7579243
+ -159.0090946,
+ 21.9978002
],
[
- 10.4439274,
- 56.0270388
+ -159.0093692,
+ 22.5070181
+ ]
+ ],
+ [
+ [
+ -168.006102,
+ 68.9941463
],
[
- 10.4466742,
- 56.116717
+ -168.0047628,
+ 68.0107853
],
[
- 10.6079695,
- 56.1150259
+ -165.4842481,
+ 68.0112562
],
[
- 10.6052053,
- 56.0247462
+ -165.4829337,
+ 67.0037303
],
[
- 10.9258671,
- 56.0201215
+ -168.0034485,
+ 67.0032389
],
[
- 10.9197132,
- 55.9309388
+ -168.002195,
+ 66.0017503
],
[
- 11.0802782,
- 55.92792
+ -169.0087448,
+ 66.001546
],
[
- 11.0858066,
- 56.0178284
+ -169.0075381,
+ 64.9987675
],
[
- 11.7265047,
- 56.005058
+ -168.0009882,
+ 64.9989798
],
[
- 11.7319981,
- 56.0952142
+ -167.9998282,
+ 63.9982374
],
[
- 12.0540333,
- 56.0871256
+ -164.9871288,
+ 63.9988964
],
[
- 12.0608477,
- 56.1762576
+ -164.9860062,
+ 62.9950845
],
[
- 12.7023469,
- 56.1594405
+ -167.9987057,
+ 62.9944019
],
[
- 12.6611131,
- 55.7114318
+ -167.9946035,
+ 59.0153692
],
[
- 12.9792318,
- 55.7014026
+ -162.5027857,
+ 59.0167799
],
[
- 12.9612912,
- 55.5217294
+ -162.5018149,
+ 58.0005815
],
[
- 12.3268659,
- 55.5412096
+ -160.0159024,
+ 58.0012389
],
[
- 12.3206071,
- 55.4513655
+ -160.0149725,
+ 57.000035
],
[
- 12.4778226,
- 55.447067
+ -160.5054788,
+ 56.9999017
],
[
- 12.4702432,
- 55.3570479
+ -160.5045719,
+ 55.9968161
],
[
- 12.6269738,
- 55.3523837
+ -164.012195,
+ 55.9958373
],
[
- 12.6200898,
- 55.2632576
+ -164.0113186,
+ 55.00107
],
[
- 12.4627339,
- 55.26722
+ -165.994782,
+ 55.0005023
],
[
- 12.4552949,
- 55.1778223
+ -165.9941266,
+ 54.2400584
],
[
- 12.2987046,
- 55.1822303
+ -168.0002944,
+ 54.2394734
],
[
- 12.2897344,
- 55.0923641
+ -168.0000986,
+ 54.0094921
],
[
- 12.6048608,
- 55.0832904
+ -170.0156134,
+ 54.0089011
],
[
- 12.5872011,
- 54.9036285
+ -170.0147683,
+ 53.0016446
],
[
- 12.2766618,
- 54.9119031
+ -171.9993636,
+ 53.0010487
],
[
- 12.2610181,
- 54.7331602
+ -171.9989488,
+ 52.4977745
],
[
- 12.1070691,
- 54.7378161
+ -176.0083239,
+ 52.4965566
],
[
- 12.0858621,
- 54.4681655
+ -176.0081186,
+ 52.2452555
],
[
- 11.7794953,
- 54.4753579
+ -178.000097,
+ 52.2446469
],
[
- 11.7837381,
- 54.5654783
+ -177.9992996,
+ 51.2554252
],
[
- 11.1658525,
- 54.5782155
+ -176.0073212,
+ 51.2560472
],
[
- 11.1706443,
- 54.6686508
+ -176.0075146,
+ 51.4980163
],
[
- 10.8617173,
- 54.6733956
+ -171.9981395,
+ 51.4992617
],
[
- 10.8651245,
- 54.7634667
+ -171.9985419,
+ 51.9985373
],
[
- 10.7713646,
- 54.7643888
+ -167.9984317,
+ 51.9997661
],
[
- 10.7707276,
- 54.7372807
+ -167.9994645,
+ 53.2560877
],
[
- 10.7551428,
- 54.7375776
+ -165.9932968,
+ 53.2566866
],
[
- 10.7544039,
- 54.7195666
+ -165.9939308,
+ 54.0100804
],
[
- 10.7389074,
- 54.7197588
+ -159.0067205,
+ 54.0121291
],
[
- 10.7384368,
- 54.7108482
+ -159.0075717,
+ 55.002502
],
[
- 10.7074486,
- 54.7113045
+ -158.0190709,
+ 55.0027849
],
[
- 10.7041094,
- 54.6756741
+ -158.0199473,
+ 55.9975094
],
[
- 10.5510973,
- 54.6781698
+ -151.9963213,
+ 55.9991902
],
[
- 10.5547184,
- 54.7670245
+ -151.9981536,
+ 57.9986536
],
[
- 10.2423994,
- 54.7705935
+ -151.500341,
+ 57.9987853
],
[
- 10.2459845,
- 54.8604673
+ -151.5012894,
+ 58.9919816
],
[
- 10.0902268,
- 54.8622134
+ -138.5159989,
+ 58.9953194
],
[
- 10.0873731,
- 54.7723851
+ -138.5150471,
+ 57.9986434
],
[
- 9.1555798,
- 54.7769557
+ -136.6872422,
+ 57.9991267
],
[
- 9.1562752,
- 54.8675369
+ -136.6863158,
+ 57.0016688
],
[
- 8.5321973,
- 54.8663765
+ -135.9973698,
+ 57.001856
],
[
- 8.531432,
- 54.95516
- ]
- ],
- [
+ -135.9964667,
+ 56.0030544
+ ],
[
- 11.4577738,
- 56.819554
+ -134.6717732,
+ 56.003424
],
[
- 11.7849181,
- 56.8127385
+ -134.6708865,
+ 54.9969623
],
[
- 11.7716715,
- 56.6332796
+ -133.9956734,
+ 54.9971556
],
[
- 11.4459621,
- 56.6401087
- ]
- ],
- [
+ -133.9948193,
+ 54.0031685
+ ],
[
- 11.3274736,
- 57.3612962
+ -130.0044418,
+ 54.0043387
],
[
- 11.3161808,
- 57.1818004
+ -130.0070826,
+ 57.0000507
],
[
- 11.1508692,
- 57.1847276
+ -131.975877,
+ 56.9995156
],
[
- 11.1456628,
- 57.094962
+ -131.9787378,
+ 59.9933094
],
[
- 10.8157703,
- 57.1001693
+ -138.0071813,
+ 59.991805
],
[
- 10.8290599,
- 57.3695272
- ]
- ],
- [
+ -138.0082158,
+ 61.0125755
+ ],
[
- 11.5843266,
- 56.2777928
+ -140.9874011,
+ 61.0118551
],
[
- 11.5782882,
- 56.1880397
+ -140.99984,
+ 71.0039309
],
[
- 11.7392309,
- 56.1845765
+ -154.5023956,
+ 71.0017377
],
[
- 11.7456428,
- 56.2743186
+ -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
]
],
[
[
- 14.6825922,
- 55.3639405
+ -168.5133204,
+ 62.8689586
],
[
- 14.8395247,
- 55.3565231
+ -168.5144423,
+ 63.8765677
],
[
- 14.8263755,
- 55.2671261
+ -172.0202755,
+ 63.8757975
],
[
- 15.1393406,
- 55.2517359
- ],
+ -172.0191536,
+ 62.8681608
+ ]
+ ],
+ [
[
- 15.1532015,
- 55.3410836
+ -170.9947111,
+ 59.9954089
],
[
- 15.309925,
- 55.3330556
+ -170.995726,
+ 60.9969787
],
[
- 15.295719,
- 55.2437356
+ -174.0045311,
+ 60.9962508
],
[
- 15.1393406,
- 55.2517359
- ],
+ -174.0035162,
+ 59.9946581
+ ]
+ ],
+ [
[
- 15.1255631,
- 55.1623802
+ -156.0717261,
+ 20.2854602
],
[
- 15.2815819,
- 55.1544167
+ -154.7940471,
+ 20.2860582
],
[
- 15.2535578,
- 54.9757646
+ -154.7933145,
+ 18.9029464
],
[
- 14.6317464,
- 55.0062496
+ -156.0709936,
+ 18.9023432
]
]
- ],
- "terms_url": "http://wiki.openstreetmap.org/wiki/Vejmidte",
- "terms_text": "Danish municipalities"
+ ]
},
{
- "name": "Vienna: Beschriftungen (annotations)",
+ "name": "Vejmidte (Denmark)",
"type": "tms",
- "template": "http://www.wien.gv.at/wmts/beschriftung/normal/google3857/{zoom}/{y}/{x}.png",
+ "template": "http://{switch:a,b,c}.tile.openstreetmap.dk/danmark/vejmidte/{zoom}/{x}/{y}.png",
"scaleExtent": [
0,
- 19
+ 20
],
"polygon": [
[
[
- 16.17,
- 48.1
+ 8.3743941,
+ 54.9551655
],
[
- 16.17,
- 48.33
+ 8.3683809,
+ 55.4042149
],
[
- 16.58,
- 48.33
+ 8.2103997,
+ 55.4039795
],
[
- 16.58,
- 48.1
+ 8.2087314,
+ 55.4937345
],
[
- 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": [
- [
+ 8.0502655,
+ 55.4924731
+ ],
[
- 16.17,
- 48.1
+ 8.0185123,
+ 56.7501399
],
[
- 16.17,
- 48.33
+ 8.1819161,
+ 56.7509948
],
[
- 16.58,
- 48.33
+ 8.1763274,
+ 57.0208898
],
[
- 16.58,
- 48.1
+ 8.3413329,
+ 57.0219872
],
[
- 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": [
- [
+ 8.3392467,
+ 57.1119574
+ ],
[
- 16.17,
- 48.1
+ 8.5054433,
+ 57.1123212
],
[
- 16.17,
- 48.33
+ 8.5033923,
+ 57.2020499
],
[
- 16.58,
- 48.33
+ 9.3316304,
+ 57.2027636
],
[
- 16.58,
- 48.1
+ 9.3319079,
+ 57.2924835
],
[
- 16.17,
- 48.1
- ]
+ 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/",
@@ -56041,6 +56887,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"name": "Cafe"
},
"amenity/car_rental": {
+ "icon": "car",
"geometry": [
"point",
"area"
@@ -56054,6 +56901,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"name": "Car Rental"
},
"amenity/car_sharing": {
+ "icon": "car",
"geometry": [
"point",
"area"
@@ -56387,7 +57235,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"amenity": "parking"
},
"terms": [],
- "name": "Parking"
+ "name": "Car Parking"
},
"amenity/pharmacy": {
"icon": "pharmacy",
@@ -56683,7 +57531,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"visitor centre",
"permit center",
"permit centre",
- "backcountry office"
+ "backcountry office",
+ "warden office",
+ "warden center"
],
"tags": {
"amenity": "ranger_station"
@@ -56776,6 +57626,23 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
},
"name": "School"
},
+ "amenity/shelter": {
+ "fields": [
+ "shelter_type"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "amenity": "shelter"
+ },
+ "terms": [
+ "lean-to"
+ ],
+ "name": "Shelter"
+ },
"amenity/swimming_pool": {
"geometry": [
"point",
@@ -56950,7 +57817,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
},
"geometry": [
"area"
- ]
+ ],
+ "matchScore": 0.1
},
"barrier": {
"geometry": [
@@ -57036,6 +57904,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"name": "Ditch"
},
"barrier/entrance": {
+ "icon": "entrance",
"geometry": [
"vertex"
],
@@ -57207,6 +58076,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"name": "Commercial Building"
},
"building/entrance": {
+ "icon": "entrance",
"geometry": [
"vertex"
],
@@ -57225,7 +58095,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"tags": {
"building": "garage"
},
- "name": "Garage"
+ "name": "Garage",
+ "icon": "warehouse"
},
"building/house": {
"icon": "building",
@@ -57327,6 +58198,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"name": "Emergency Phone"
},
"entrance": {
+ "icon": "entrance",
"geometry": [
"vertex"
],
@@ -57339,6 +58211,39 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
],
"name": "Entrance"
},
+ "footway/crossing": {
+ "fields": [
+ "crossing"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "footway",
+ "footway": "crossing"
+ },
+ "terms": [
+ "crosswalk",
+ "zebra crossing"
+ ],
+ "name": "Crossing"
+ },
+ "footway/sidewalk": {
+ "fields": [
+ "surface",
+ "lit",
+ "access"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "footway",
+ "footway": "sidewalk"
+ },
+ "terms": [],
+ "name": "Sidewalk"
+ },
"highway": {
"fields": [
"highway"
@@ -58185,7 +59090,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"landuse": "farmyard"
},
"terms": [],
- "name": "Farmyard"
+ "name": "Farmyard",
+ "icon": "farm"
},
"landuse/forest": {
"fields": [
@@ -58328,7 +59234,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"tags": {
"leisure": "dog_park"
},
- "name": "Dog Park"
+ "name": "Dog Park",
+ "icon": "dog-park"
},
"leisure/garden": {
"icon": "garden",
@@ -58529,6 +59436,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"name": "Volleyball Court"
},
"leisure/playground": {
+ "icon": "playground",
"geometry": [
"point",
"area"
@@ -58611,7 +59519,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"tags": {},
"geometry": [
"line"
- ]
+ ],
+ "matchScore": 0.1
},
"man_made": {
"fields": [
@@ -58655,7 +59564,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"tags": {
"man_made": "lighthouse"
},
- "name": "Lighthouse"
+ "name": "Lighthouse",
+ "icon": "lighthouse"
},
"man_made/observation": {
"geometry": [
@@ -58941,6 +59851,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
},
"natural/tree": {
"fields": [
+ "tree_type",
"denotation"
],
"icon": "park",
@@ -59060,6 +59971,347 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"terms": [],
"name": "Office"
},
+ "office/accountant": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "office": "accountant"
+ },
+ "terms": [],
+ "name": "Accountant"
+ },
+ "office/administrative": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "office": "administrative"
+ },
+ "terms": [],
+ "name": "Administrative Office"
+ },
+ "office/architect": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "office": "architect"
+ },
+ "terms": [],
+ "name": "Architect"
+ },
+ "office/company": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "office": "company"
+ },
+ "terms": [],
+ "name": "Company Office"
+ },
+ "office/educational_institution": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "office": "educational_institution"
+ },
+ "terms": [],
+ "name": "Educational Institution"
+ },
+ "office/employment_agency": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "office": "employment_agency"
+ },
+ "terms": [],
+ "name": "Employment Agency"
+ },
+ "office/estate_agent": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "office": "estate_agent"
+ },
+ "terms": [],
+ "name": "Real Estate Office"
+ },
+ "office/financial": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "office": "financial"
+ },
+ "terms": [],
+ "name": "Financial Office"
+ },
+ "office/government": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "office": "government"
+ },
+ "terms": [],
+ "name": "Government Office"
+ },
+ "office/insurance": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "office": "insurance"
+ },
+ "terms": [],
+ "name": "Insurance Office"
+ },
+ "office/it": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "office": "it"
+ },
+ "terms": [],
+ "name": "IT Office"
+ },
+ "office/lawyer": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "office": "lawyer"
+ },
+ "terms": [],
+ "name": "Law Office"
+ },
+ "office/newspaper": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "office": "newspaper"
+ },
+ "terms": [],
+ "name": "Newspaper"
+ },
+ "office/ngo": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "office": "ngo"
+ },
+ "terms": [],
+ "name": "NGO Office"
+ },
+ "office/physician": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "office": "physician"
+ },
+ "terms": [],
+ "name": "Physician"
+ },
+ "office/political_party": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "office": "political_party"
+ },
+ "terms": [],
+ "name": "Political Party"
+ },
+ "office/research": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "office": "research"
+ },
+ "terms": [],
+ "name": "Research Office"
+ },
+ "office/telecommunication": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "office": "telecommunication"
+ },
+ "terms": [],
+ "name": "Telecom Office"
+ },
+ "office/therapist": {
+ "icon": "commercial",
+ "fields": [
+ "address",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "office": "therapist"
+ },
+ "terms": [],
+ "name": "Therapist"
+ },
+ "office/travel_agent": {
+ "icon": "suitcase",
+ "fields": [
+ "address",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "office": "travel_agent"
+ },
+ "terms": [],
+ "name": "Travel Agency",
+ "searchable": false
+ },
"place": {
"fields": [
"place"
@@ -59164,7 +60416,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"tags": {},
"geometry": [
"point"
- ]
+ ],
+ "matchScore": 0.1
},
"power": {
"geometry": [
@@ -59207,6 +60460,16 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"name": "Power Line",
"icon": "power-line"
},
+ "power/minor_line": {
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "power": "minor_line"
+ },
+ "name": "Minor Power Line",
+ "icon": "power-line"
+ },
"power/pole": {
"geometry": [
"vertex"
@@ -59379,6 +60642,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"tags": {
"railway": "station"
},
+ "terms": [
+ "train station",
+ "station"
+ ],
"name": "Railway Station"
},
"railway/subway": {
@@ -59396,7 +60663,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"name": "Subway"
},
"railway/subway_entrance": {
- "icon": "rail-underground",
+ "icon": "rail-metro",
"geometry": [
"point"
],
@@ -59482,7 +60749,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"name": "Liquor Store"
},
"shop/bakery": {
- "icon": "shop",
+ "icon": "bakery",
"fields": [
"address",
"building_area",
@@ -59607,7 +60874,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"name": "Butcher"
},
"shop/car": {
- "icon": "shop",
+ "icon": "car",
"fields": [
"address",
"opening_hours"
@@ -59674,7 +60941,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"name": "Chemist"
},
"shop/clothes": {
- "icon": "shop",
+ "icon": "clothing-store",
"fields": [
"address",
"building_area",
@@ -60038,7 +61305,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"name": "Kiosk"
},
"shop/laundry": {
- "icon": "shop",
+ "icon": "laundry",
"fields": [
"address",
"building_area",
@@ -60194,7 +61461,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"name": "Outdoor Store"
},
"shop/pet": {
- "icon": "shop",
+ "icon": "dog-park",
"fields": [
"address",
"building_area",
@@ -60210,6 +61477,23 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
},
"name": "Pet Store"
},
+ "shop/photo": {
+ "icon": "camera",
+ "fields": [
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "shop": "photo"
+ },
+ "name": "Photography Store"
+ },
"shop/shoes": {
"icon": "shop",
"fields": [
@@ -60320,7 +61604,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"name": "Toy Store"
},
"shop/travel_agency": {
- "icon": "shop",
+ "icon": "suitcase",
"fields": [
"address",
"building_area",
@@ -60482,7 +61766,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"vertex",
"area"
],
- "terms": [],
+ "terms": [
+ "camping"
+ ],
"tags": {
"tourism": "camp_site"
},
@@ -60955,7 +62241,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"tags": {},
"geometry": [
"vertex"
- ]
+ ],
+ "matchScore": 0.1
},
"waterway": {
"fields": [
@@ -61105,9 +62392,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"defaults": {
"area": [
"category-landuse",
- "building",
+ "category-building",
+ "category-water-area",
"leisure/park",
- "natural/water",
"amenity/hospital",
"amenity/place_of_worship",
"amenity/cafe",
@@ -61118,7 +62405,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"category-road",
"category-rail",
"category-path",
- "category-water",
+ "category-water-line",
"power/line",
"line"
],
@@ -61151,6 +62438,19 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
]
},
"categories": {
+ "category-building": {
+ "geometry": "area",
+ "name": "Building",
+ "icon": "building",
+ "members": [
+ "building/house",
+ "building/apartments",
+ "building/commercial",
+ "building/industrial",
+ "building/residential",
+ "building"
+ ]
+ },
"category-landuse": {
"geometry": "area",
"name": "Land Use",
@@ -61234,7 +62534,18 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"type/route"
]
},
- "category-water": {
+ "category-water-area": {
+ "geometry": "area",
+ "name": "Water",
+ "icon": "water",
+ "members": [
+ "natural/water/lake",
+ "natural/water/pond",
+ "natural/water/reservoir",
+ "natural/water"
+ ]
+ },
+ "category-water-line": {
"geometry": "line",
"name": "Water",
"icon": "category-water",
@@ -61795,6 +63106,20 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"type": "check",
"label": "Shelter"
},
+ "shelter_type": {
+ "key": "shelter_type",
+ "type": "combo",
+ "options": [
+ "public_transport",
+ "picnic_shelter",
+ "weather_shelter",
+ "lean_to",
+ "basic_hut",
+ "field_shelter",
+ "rock_shelter"
+ ],
+ "label": "Type"
+ },
"shop": {
"key": "shop",
"type": "typeCombo",
@@ -61866,6 +63191,16 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
"type": "combo",
"label": "Trail Visibility"
},
+ "tree_type": {
+ "key": "type",
+ "type": "combo",
+ "options": [
+ "broad_leaved",
+ "conifer",
+ "palm"
+ ],
+ "label": "Type"
+ },
"vending": {
"key": "vending",
"type": "combo",
@@ -71792,1310 +73127,1548 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
]
},
"featureIcons": {
- "airfield": {
+ "circle-stroked": {
"12": [
- 0,
+ 42,
0
],
"18": [
- 0,
- 14
+ 24,
+ 0
],
"24": [
0,
- 34
+ 0
]
},
- "airport": {
+ "circle": {
"12": [
- 0,
- 60
+ 96,
+ 0
],
"18": [
- 0,
- 74
+ 78,
+ 0
],
"24": [
- 0,
- 94
+ 54,
+ 0
]
},
- "alcohol-shop": {
+ "square-stroked": {
"12": [
- 0,
- 120
+ 150,
+ 0
],
"18": [
- 0,
- 134
+ 132,
+ 0
],
"24": [
- 0,
- 154
+ 108,
+ 0
]
},
- "america-football": {
+ "square": {
"12": [
- 0,
- 180
+ 204,
+ 0
],
"18": [
- 0,
- 194
+ 186,
+ 0
],
"24": [
- 0,
- 214
+ 162,
+ 0
]
},
- "art-gallery": {
+ "triangle-stroked": {
"12": [
- 0,
- 240
+ 258,
+ 0
],
"18": [
- 0,
- 254
+ 240,
+ 0
],
"24": [
- 0,
- 274
+ 216,
+ 0
]
},
- "bank": {
+ "triangle": {
"12": [
- 0,
- 300
+ 42,
+ 24
],
"18": [
- 0,
- 314
+ 24,
+ 24
],
"24": [
0,
- 334
+ 24
]
},
- "bar": {
+ "star-stroked": {
"12": [
- 0,
- 360
+ 96,
+ 24
],
"18": [
- 0,
- 374
+ 78,
+ 24
],
"24": [
- 0,
- 394
+ 54,
+ 24
]
},
- "baseball": {
+ "star": {
"12": [
- 0,
- 420
+ 150,
+ 24
],
"18": [
- 0,
- 434
+ 132,
+ 24
],
"24": [
- 0,
- 454
+ 108,
+ 24
]
},
- "basketball": {
+ "cross": {
"12": [
- 0,
- 480
+ 204,
+ 24
],
"18": [
- 0,
- 494
+ 186,
+ 24
],
"24": [
- 0,
- 514
+ 162,
+ 24
]
},
- "beer": {
+ "marker-stroked": {
"12": [
- 0,
- 540
+ 258,
+ 24
],
"18": [
- 0,
- 554
+ 240,
+ 24
],
"24": [
- 0,
- 574
+ 216,
+ 24
]
},
- "bicycle": {
+ "marker": {
"12": [
- 0,
- 600
+ 42,
+ 48
],
"18": [
- 0,
- 614
+ 24,
+ 48
],
"24": [
0,
- 634
+ 48
]
},
- "building": {
+ "religious-jewish": {
"12": [
- 0,
- 660
+ 96,
+ 48
],
"18": [
- 0,
- 674
+ 78,
+ 48
],
"24": [
- 0,
- 694
+ 54,
+ 48
]
},
- "bus": {
+ "religious-christian": {
"12": [
- 0,
- 720
+ 150,
+ 48
],
"18": [
- 0,
- 734
+ 132,
+ 48
],
"24": [
- 0,
- 754
+ 108,
+ 48
]
},
- "cafe": {
+ "religious-muslim": {
"12": [
- 0,
- 780
+ 204,
+ 48
],
"18": [
- 0,
- 794
+ 186,
+ 48
],
"24": [
- 0,
- 814
+ 162,
+ 48
]
},
- "campsite": {
+ "cemetery": {
"12": [
- 0,
- 840
+ 258,
+ 48
],
"18": [
- 0,
- 854
+ 240,
+ 48
],
"24": [
- 0,
- 874
+ 216,
+ 48
]
},
- "cemetery": {
+ "rocket": {
"12": [
- 0,
- 900
+ 42,
+ 72
],
"18": [
- 0,
- 914
+ 24,
+ 72
],
"24": [
0,
- 934
+ 72
]
},
- "cinema": {
+ "airport": {
"12": [
- 0,
- 960
+ 96,
+ 72
],
"18": [
- 0,
- 974
+ 78,
+ 72
],
"24": [
- 0,
- 994
+ 54,
+ 72
]
},
- "circle": {
+ "heliport": {
"12": [
- 0,
- 1020
+ 150,
+ 72
],
"18": [
- 0,
- 1034
+ 132,
+ 72
],
"24": [
- 0,
- 1054
+ 108,
+ 72
]
},
- "circle-stroked": {
+ "rail": {
"12": [
- 0,
- 1080
+ 204,
+ 72
],
"18": [
- 0,
- 1094
+ 186,
+ 72
],
"24": [
- 0,
- 1114
+ 162,
+ 72
]
},
- "city": {
+ "rail-metro": {
"12": [
- 0,
- 1140
+ 258,
+ 72
],
"18": [
- 0,
- 1154
+ 240,
+ 72
],
"24": [
- 0,
- 1174
+ 216,
+ 72
]
},
- "college": {
+ "rail-light": {
"12": [
- 0,
- 1200
+ 42,
+ 96
],
"18": [
- 0,
- 1214
+ 24,
+ 96
],
"24": [
0,
- 1234
+ 96
]
},
- "commercial": {
+ "bus": {
"12": [
- 0,
- 1260
+ 96,
+ 96
],
"18": [
- 0,
- 1274
+ 78,
+ 96
],
"24": [
- 0,
- 1294
+ 54,
+ 96
]
},
- "cricket": {
+ "fuel": {
"12": [
- 0,
- 1320
+ 150,
+ 96
],
"18": [
- 0,
- 1334
+ 132,
+ 96
],
"24": [
- 0,
- 1354
+ 108,
+ 96
]
},
- "cross": {
+ "parking": {
"12": [
- 0,
- 1380
+ 204,
+ 96
],
"18": [
- 0,
- 1394
+ 186,
+ 96
],
"24": [
- 0,
- 1414
+ 162,
+ 96
]
},
- "dam": {
+ "parking-garage": {
"12": [
- 0,
- 1440
+ 258,
+ 96
],
"18": [
- 0,
- 1454
+ 240,
+ 96
],
"24": [
- 0,
- 1474
+ 216,
+ 96
]
},
- "danger": {
+ "airfield": {
"12": [
- 0,
- 1500
+ 42,
+ 120
],
"18": [
- 0,
- 1514
+ 24,
+ 120
],
"24": [
0,
- 1534
+ 120
]
},
- "disability": {
+ "roadblock": {
"12": [
- 0,
- 1560
+ 96,
+ 120
],
"18": [
- 0,
- 1574
+ 78,
+ 120
],
"24": [
- 0,
- 1594
+ 54,
+ 120
]
},
- "embassy": {
+ "ferry": {
"12": [
- 0,
- 1620
+ 150,
+ 120
],
"18": [
- 0,
- 1634
+ 132,
+ 120
],
"24": [
- 0,
- 1654
+ 108,
+ 120
+ ],
+ "line": [
+ 2240,
+ 25
]
},
- "emergency-telephone": {
+ "harbor": {
"12": [
- 0,
- 1680
+ 204,
+ 120
],
"18": [
- 0,
- 1694
+ 186,
+ 120
],
"24": [
- 0,
- 1714
+ 162,
+ 120
]
},
- "farm": {
+ "bicycle": {
"12": [
- 0,
- 1740
+ 258,
+ 120
],
"18": [
- 0,
- 1754
+ 240,
+ 120
],
"24": [
- 0,
- 1774
+ 216,
+ 120
]
},
- "fast-food": {
+ "park": {
"12": [
- 0,
- 1800
+ 42,
+ 144
],
"18": [
- 0,
- 1814
+ 24,
+ 144
],
"24": [
0,
- 1834
+ 144
]
},
- "ferry": {
+ "park2": {
"12": [
- 0,
- 1860
+ 96,
+ 144
],
"18": [
- 0,
- 1874
+ 78,
+ 144
],
"24": [
- 0,
- 1894
+ 54,
+ 144
+ ]
+ },
+ "museum": {
+ "12": [
+ 150,
+ 144
],
- "line": [
- 2240,
- 25
+ "18": [
+ 132,
+ 144
+ ],
+ "24": [
+ 108,
+ 144
]
},
- "fire-station": {
+ "lodging": {
"12": [
- 0,
- 1920
+ 204,
+ 144
],
"18": [
- 0,
- 1934
+ 186,
+ 144
],
"24": [
- 0,
- 1954
+ 162,
+ 144
]
},
- "fuel": {
+ "monument": {
"12": [
- 0,
- 1980
+ 258,
+ 144
],
"18": [
- 0,
- 1994
+ 240,
+ 144
+ ],
+ "24": [
+ 216,
+ 144
+ ]
+ },
+ "zoo": {
+ "12": [
+ 42,
+ 168
+ ],
+ "18": [
+ 24,
+ 168
],
"24": [
0,
- 2014
+ 168
]
},
"garden": {
"12": [
- 0,
- 2040
+ 96,
+ 168
],
"18": [
- 0,
- 2054
+ 78,
+ 168
],
"24": [
- 0,
- 2074
+ 54,
+ 168
]
},
- "golf": {
+ "campsite": {
"12": [
- 0,
- 2100
+ 150,
+ 168
],
"18": [
- 0,
- 2114
+ 132,
+ 168
],
"24": [
- 0,
- 2134
+ 108,
+ 168
]
},
- "grocery": {
+ "theatre": {
"12": [
- 0,
- 2160
+ 204,
+ 168
],
"18": [
- 0,
- 2174
+ 186,
+ 168
],
"24": [
- 0,
- 2194
+ 162,
+ 168
]
},
- "harbor": {
+ "art-gallery": {
"12": [
- 0,
- 2220
+ 258,
+ 168
],
"18": [
- 0,
- 2234
+ 240,
+ 168
],
"24": [
- 0,
- 2254
+ 216,
+ 168
]
},
- "heliport": {
+ "pitch": {
"12": [
- 0,
- 2280
+ 42,
+ 192
],
"18": [
- 0,
- 2294
+ 24,
+ 192
],
"24": [
0,
- 2314
+ 192
]
},
- "hospital": {
+ "soccer": {
"12": [
- 0,
- 2340
+ 96,
+ 192
],
"18": [
- 0,
- 2354
+ 78,
+ 192
],
"24": [
- 0,
- 2374
+ 54,
+ 192
]
},
- "industrial": {
+ "america-football": {
"12": [
- 0,
- 2400
+ 150,
+ 192
],
"18": [
- 0,
- 2414
+ 132,
+ 192
],
"24": [
- 0,
- 2434
+ 108,
+ 192
]
},
- "land-use": {
+ "tennis": {
"12": [
- 0,
- 2460
+ 204,
+ 192
],
"18": [
+ 186,
+ 192
+ ],
+ "24": [
+ 162,
+ 192
+ ]
+ },
+ "basketball": {
+ "12": [
+ 258,
+ 192
+ ],
+ "18": [
+ 240,
+ 192
+ ],
+ "24": [
+ 216,
+ 192
+ ]
+ },
+ "baseball": {
+ "12": [
+ 42,
+ 216
+ ],
+ "18": [
+ 24,
+ 216
+ ],
+ "24": [
0,
- 2474
+ 216
+ ]
+ },
+ "golf": {
+ "12": [
+ 96,
+ 216
+ ],
+ "18": [
+ 78,
+ 216
+ ],
+ "24": [
+ 54,
+ 216
+ ]
+ },
+ "swimming": {
+ "12": [
+ 150,
+ 216
+ ],
+ "18": [
+ 132,
+ 216
+ ],
+ "24": [
+ 108,
+ 216
+ ]
+ },
+ "cricket": {
+ "12": [
+ 204,
+ 216
+ ],
+ "18": [
+ 186,
+ 216
+ ],
+ "24": [
+ 162,
+ 216
+ ]
+ },
+ "skiing": {
+ "12": [
+ 258,
+ 216
+ ],
+ "18": [
+ 240,
+ 216
+ ],
+ "24": [
+ 216,
+ 216
+ ]
+ },
+ "school": {
+ "12": [
+ 42,
+ 240
+ ],
+ "18": [
+ 24,
+ 240
],
"24": [
0,
- 2494
+ 240
+ ]
+ },
+ "college": {
+ "12": [
+ 96,
+ 240
+ ],
+ "18": [
+ 78,
+ 240
+ ],
+ "24": [
+ 54,
+ 240
]
},
"library": {
"12": [
- 0,
- 2520
+ 150,
+ 240
],
"18": [
- 0,
- 2534
+ 132,
+ 240
],
"24": [
- 0,
- 2554
+ 108,
+ 240
]
},
- "lodging": {
+ "post": {
"12": [
- 0,
- 2580
+ 204,
+ 240
],
"18": [
- 0,
- 2594
+ 186,
+ 240
],
"24": [
- 0,
- 2614
+ 162,
+ 240
]
},
- "logging": {
+ "fire-station": {
"12": [
- 0,
- 2640
+ 258,
+ 240
],
"18": [
- 0,
- 2654
+ 240,
+ 240
],
"24": [
- 0,
- 2674
+ 216,
+ 240
]
},
- "marker": {
+ "town-hall": {
"12": [
- 0,
- 2700
+ 42,
+ 264
],
"18": [
- 0,
- 2714
+ 24,
+ 264
],
"24": [
0,
- 2734
+ 264
]
},
- "marker-stroked": {
+ "police": {
"12": [
- 0,
- 2760
+ 96,
+ 264
],
"18": [
- 0,
- 2774
+ 78,
+ 264
],
"24": [
- 0,
- 2794
+ 54,
+ 264
]
},
- "monument": {
+ "prison": {
"12": [
- 0,
- 2820
+ 150,
+ 264
],
"18": [
- 0,
- 2834
+ 132,
+ 264
],
"24": [
- 0,
- 2854
+ 108,
+ 264
]
},
- "museum": {
+ "embassy": {
"12": [
- 0,
- 2880
+ 204,
+ 264
],
"18": [
- 0,
- 2894
+ 186,
+ 264
],
"24": [
- 0,
- 2914
+ 162,
+ 264
]
},
- "music": {
+ "beer": {
"12": [
- 0,
- 2940
+ 258,
+ 264
],
"18": [
- 0,
- 2954
+ 240,
+ 264
],
"24": [
- 0,
- 2974
+ 216,
+ 264
]
},
- "oil-well": {
+ "restaurant": {
"12": [
- 0,
- 3000
+ 42,
+ 288
],
"18": [
- 0,
- 3014
+ 24,
+ 288
],
"24": [
0,
- 3034
+ 288
]
},
- "park": {
+ "cafe": {
"12": [
- 0,
- 3060
+ 96,
+ 288
],
"18": [
- 0,
- 3074
+ 78,
+ 288
],
"24": [
- 0,
- 3094
+ 54,
+ 288
]
},
- "park2": {
+ "shop": {
"12": [
- 0,
- 3120
+ 150,
+ 288
],
"18": [
- 0,
- 3134
+ 132,
+ 288
],
"24": [
- 0,
- 3154
+ 108,
+ 288
]
},
- "parking": {
+ "fast-food": {
"12": [
- 0,
- 3180
+ 204,
+ 288
],
"18": [
- 0,
- 3194
+ 186,
+ 288
],
"24": [
- 0,
- 3214
+ 162,
+ 288
]
},
- "parking-garage": {
+ "bar": {
+ "12": [
+ 258,
+ 288
+ ],
+ "18": [
+ 240,
+ 288
+ ],
+ "24": [
+ 216,
+ 288
+ ]
+ },
+ "bank": {
"12": [
+ 42,
+ 312
+ ],
+ "18": [
+ 24,
+ 312
+ ],
+ "24": [
0,
- 3240
+ 312
+ ]
+ },
+ "grocery": {
+ "12": [
+ 96,
+ 312
+ ],
+ "18": [
+ 78,
+ 312
+ ],
+ "24": [
+ 54,
+ 312
+ ]
+ },
+ "cinema": {
+ "12": [
+ 150,
+ 312
],
"18": [
+ 132,
+ 312
+ ],
+ "24": [
+ 108,
+ 312
+ ]
+ },
+ "pharmacy": {
+ "12": [
+ 204,
+ 312
+ ],
+ "18": [
+ 186,
+ 312
+ ],
+ "24": [
+ 162,
+ 312
+ ]
+ },
+ "hospital": {
+ "12": [
+ 258,
+ 312
+ ],
+ "18": [
+ 240,
+ 312
+ ],
+ "24": [
+ 216,
+ 312
+ ]
+ },
+ "danger": {
+ "12": [
+ 42,
+ 336
+ ],
+ "18": [
+ 24,
+ 336
+ ],
+ "24": [
0,
- 3254
+ 336
+ ]
+ },
+ "industrial": {
+ "12": [
+ 96,
+ 336
+ ],
+ "18": [
+ 78,
+ 336
],
"24": [
- 0,
- 3274
+ 54,
+ 336
]
},
- "pharmacy": {
+ "warehouse": {
"12": [
- 0,
- 3300
+ 150,
+ 336
],
"18": [
- 0,
- 3314
+ 132,
+ 336
],
"24": [
- 0,
- 3334
+ 108,
+ 336
]
},
- "pitch": {
+ "commercial": {
"12": [
- 0,
- 3360
+ 204,
+ 336
],
"18": [
- 0,
- 3374
+ 186,
+ 336
],
"24": [
- 0,
- 3394
+ 162,
+ 336
]
},
- "place-of-worship": {
+ "building": {
"12": [
- 0,
- 3420
+ 258,
+ 336
],
"18": [
- 0,
- 3434
+ 240,
+ 336
],
"24": [
- 0,
- 3454
+ 216,
+ 336
]
},
- "police": {
+ "place-of-worship": {
"12": [
- 0,
- 3480
+ 42,
+ 360
],
"18": [
- 0,
- 3494
+ 24,
+ 360
],
"24": [
0,
- 3514
+ 360
]
},
- "post": {
+ "alcohol-shop": {
"12": [
- 0,
- 3540
+ 96,
+ 360
],
"18": [
- 0,
- 3554
+ 78,
+ 360
],
"24": [
- 0,
- 3574
+ 54,
+ 360
]
},
- "prison": {
+ "logging": {
"12": [
- 0,
- 3600
+ 150,
+ 360
],
"18": [
- 0,
- 3614
+ 132,
+ 360
],
"24": [
- 0,
- 3634
+ 108,
+ 360
]
},
- "rail": {
+ "oil-well": {
"12": [
- 0,
- 3660
+ 204,
+ 360
],
"18": [
- 0,
- 3674
+ 186,
+ 360
],
"24": [
- 0,
- 3694
+ 162,
+ 360
]
},
- "rail-above": {
+ "slaughterhouse": {
"12": [
- 0,
- 3720
+ 258,
+ 360
],
"18": [
- 0,
- 3734
+ 240,
+ 360
],
"24": [
- 0,
- 3754
+ 216,
+ 360
]
},
- "rail-underground": {
+ "dam": {
"12": [
- 0,
- 3780
+ 42,
+ 384
],
"18": [
- 0,
- 3794
+ 24,
+ 384
],
"24": [
0,
- 3814
+ 384
]
},
- "religious-christian": {
+ "water": {
"12": [
- 0,
- 3840
+ 96,
+ 384
],
"18": [
- 0,
- 3854
+ 78,
+ 384
],
"24": [
- 0,
- 3874
+ 54,
+ 384
]
},
- "religious-jewish": {
+ "wetland": {
"12": [
- 0,
- 3900
+ 150,
+ 384
],
"18": [
- 0,
- 3914
+ 132,
+ 384
],
"24": [
- 0,
- 3934
+ 108,
+ 384
]
},
- "religious-muslim": {
+ "disability": {
"12": [
- 0,
- 3960
+ 204,
+ 384
],
"18": [
- 0,
- 3974
+ 186,
+ 384
],
"24": [
- 0,
- 3994
+ 162,
+ 384
]
},
- "restaurant": {
+ "telephone": {
"12": [
- 0,
- 4020
+ 258,
+ 384
],
"18": [
- 0,
- 4034
+ 240,
+ 384
],
"24": [
- 0,
- 4054
+ 216,
+ 384
]
},
- "roadblock": {
+ "emergency-telephone": {
"12": [
- 0,
- 4080
+ 42,
+ 408
],
"18": [
- 0,
- 4094
+ 24,
+ 408
],
"24": [
0,
- 4114
+ 408
]
},
- "school": {
+ "toilets": {
"12": [
- 0,
- 4140
+ 96,
+ 408
],
"18": [
- 0,
- 4154
+ 78,
+ 408
],
"24": [
- 0,
- 4174
+ 54,
+ 408
]
},
- "shop": {
+ "waste-basket": {
"12": [
- 0,
- 4200
+ 150,
+ 408
],
"18": [
- 0,
- 4214
+ 132,
+ 408
],
"24": [
- 0,
- 4234
+ 108,
+ 408
]
},
- "skiing": {
+ "music": {
"12": [
- 0,
- 4260
+ 204,
+ 408
],
"18": [
- 0,
- 4274
+ 186,
+ 408
],
"24": [
- 0,
- 4294
+ 162,
+ 408
]
},
- "slaughterhouse": {
+ "land-use": {
"12": [
- 0,
- 4320
+ 258,
+ 408
],
"18": [
- 0,
- 4334
+ 240,
+ 408
],
"24": [
- 0,
- 4354
+ 216,
+ 408
]
},
- "soccer": {
+ "city": {
"12": [
- 0,
- 4380
+ 42,
+ 432
],
"18": [
- 0,
- 4394
+ 24,
+ 432
],
"24": [
0,
- 4414
+ 432
]
},
- "square": {
+ "town": {
"12": [
- 0,
- 4440
+ 96,
+ 432
],
"18": [
- 0,
- 4454
+ 78,
+ 432
],
"24": [
- 0,
- 4474
+ 54,
+ 432
]
},
- "square-stroked": {
+ "village": {
"12": [
- 0,
- 4500
+ 150,
+ 432
],
"18": [
- 0,
- 4514
+ 132,
+ 432
],
"24": [
- 0,
- 4534
+ 108,
+ 432
]
},
- "star": {
+ "farm": {
"12": [
- 0,
- 4560
+ 204,
+ 432
],
"18": [
- 0,
- 4574
+ 186,
+ 432
],
"24": [
- 0,
- 4594
+ 162,
+ 432
]
},
- "star-stroked": {
+ "bakery": {
"12": [
- 0,
- 4620
+ 258,
+ 432
],
"18": [
- 0,
- 4634
+ 240,
+ 432
],
"24": [
- 0,
- 4654
+ 216,
+ 432
]
},
- "swimming": {
+ "dog-park": {
"12": [
- 0,
- 4680
+ 42,
+ 456
],
"18": [
- 0,
- 4694
+ 24,
+ 456
],
"24": [
0,
- 4714
+ 456
]
},
- "telephone": {
+ "lighthouse": {
"12": [
- 0,
- 4740
+ 96,
+ 456
],
"18": [
- 0,
- 4754
+ 78,
+ 456
],
"24": [
- 0,
- 4774
+ 54,
+ 456
]
},
- "tennis": {
+ "clothing-store": {
"12": [
- 0,
- 4800
+ 150,
+ 456
],
"18": [
- 0,
- 4814
+ 132,
+ 456
],
"24": [
- 0,
- 4834
+ 108,
+ 456
]
},
- "theatre": {
+ "polling-place": {
"12": [
- 0,
- 4860
+ 204,
+ 456
],
"18": [
- 0,
- 4874
+ 186,
+ 456
],
"24": [
- 0,
- 4894
+ 162,
+ 456
]
},
- "toilets": {
+ "playground": {
"12": [
- 0,
- 4920
+ 258,
+ 456
],
"18": [
- 0,
- 4934
+ 240,
+ 456
],
"24": [
- 0,
- 4954
+ 216,
+ 456
]
},
- "town": {
+ "entrance": {
"12": [
- 0,
- 4980
+ 42,
+ 480
],
"18": [
- 0,
- 4994
+ 24,
+ 480
],
"24": [
0,
- 5014
+ 480
]
},
- "town-hall": {
+ "heart": {
"12": [
- 0,
- 5040
+ 96,
+ 480
],
"18": [
- 0,
- 5054
+ 78,
+ 480
],
"24": [
- 0,
- 5074
+ 54,
+ 480
]
},
- "triangle": {
+ "london-underground": {
"12": [
- 0,
- 5100
+ 150,
+ 480
],
"18": [
- 0,
- 5114
+ 132,
+ 480
],
"24": [
- 0,
- 5134
+ 108,
+ 480
]
},
- "triangle-stroked": {
+ "minefield": {
"12": [
- 0,
- 5160
+ 204,
+ 480
],
"18": [
- 0,
- 5174
+ 186,
+ 480
],
"24": [
- 0,
- 5194
+ 162,
+ 480
]
},
- "village": {
+ "rail-underground": {
"12": [
- 0,
- 5220
+ 258,
+ 480
],
"18": [
- 0,
- 5234
+ 240,
+ 480
],
"24": [
- 0,
- 5254
+ 216,
+ 480
]
},
- "warehouse": {
+ "rail-above": {
"12": [
- 0,
- 5280
+ 42,
+ 504
],
"18": [
- 0,
- 5294
+ 24,
+ 504
],
"24": [
0,
- 5314
+ 504
]
},
- "waste-basket": {
+ "camera": {
"12": [
- 0,
- 5340
+ 96,
+ 504
],
"18": [
- 0,
- 5354
+ 78,
+ 504
],
"24": [
- 0,
- 5374
+ 54,
+ 504
]
},
- "water": {
+ "laundry": {
"12": [
- 0,
- 5400
+ 150,
+ 504
],
"18": [
- 0,
- 5414
+ 132,
+ 504
],
"24": [
- 0,
- 5434
+ 108,
+ 504
]
},
- "wetland": {
+ "car": {
"12": [
- 0,
- 5460
+ 204,
+ 504
],
"18": [
- 0,
- 5474
+ 186,
+ 504
],
"24": [
- 0,
- 5494
+ 162,
+ 504
]
},
- "zoo": {
+ "suitcase": {
"12": [
- 0,
- 5520
+ 258,
+ 504
],
"18": [
- 0,
- 5534
+ 240,
+ 504
],
"24": [
- 0,
- 5554
+ 216,
+ 504
]
},
"highway-motorway": {
@@ -73284,2421 +74857,7099 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
25
]
},
- "power-line": {
- "line": [
- 1880,
- 25
- ]
+ "power-line": {
+ "line": [
+ 1880,
+ 25
+ ]
+ },
+ "other-line": {
+ "line": [
+ 1940,
+ 25
+ ]
+ },
+ "category-roads": {
+ "line": [
+ 2000,
+ 25
+ ]
+ },
+ "category-rail": {
+ "line": [
+ 2060,
+ 25
+ ]
+ },
+ "category-path": {
+ "line": [
+ 2120,
+ 25
+ ]
+ },
+ "category-water": {
+ "line": [
+ 2180,
+ 25
+ ]
+ },
+ "pipeline": {
+ "line": [
+ 2300,
+ 25
+ ]
+ },
+ "relation": {
+ "relation": [
+ 20,
+ 25
+ ]
+ },
+ "restriction": {
+ "relation": [
+ 80,
+ 25
+ ]
+ },
+ "multipolygon": {
+ "relation": [
+ 140,
+ 25
+ ]
+ },
+ "boundary": {
+ "relation": [
+ 200,
+ 25
+ ]
+ },
+ "route": {
+ "relation": [
+ 260,
+ 25
+ ]
+ },
+ "route-road": {
+ "relation": [
+ 320,
+ 25
+ ]
+ },
+ "route-bicycle": {
+ "relation": [
+ 380,
+ 25
+ ]
+ },
+ "route-foot": {
+ "relation": [
+ 440,
+ 25
+ ]
+ },
+ "route-bus": {
+ "relation": [
+ 500,
+ 25
+ ]
+ },
+ "route-train": {
+ "relation": [
+ 560,
+ 25
+ ]
+ },
+ "route-detour": {
+ "relation": [
+ 620,
+ 25
+ ]
+ },
+ "route-tram": {
+ "relation": [
+ 680,
+ 25
+ ]
+ },
+ "route-ferry": {
+ "relation": [
+ 740,
+ 25
+ ]
+ },
+ "route-power": {
+ "relation": [
+ 800,
+ 25
+ ]
+ },
+ "route-pipeline": {
+ "relation": [
+ 860,
+ 25
+ ]
+ },
+ "route-master": {
+ "relation": [
+ 920,
+ 25
+ ]
+ }
+ },
+ "operations": {
+ "icon-operation-delete": [
+ 0,
+ 140
+ ],
+ "icon-operation-circularize": [
+ 20,
+ 140
+ ],
+ "icon-operation-straighten": [
+ 40,
+ 140
+ ],
+ "icon-operation-split": [
+ 60,
+ 140
+ ],
+ "icon-operation-disconnect": [
+ 80,
+ 140
+ ],
+ "icon-operation-reverse": [
+ 100,
+ 140
+ ],
+ "icon-operation-move": [
+ 120,
+ 140
+ ],
+ "icon-operation-merge": [
+ 140,
+ 140
+ ],
+ "icon-operation-orthogonalize": [
+ 160,
+ 140
+ ],
+ "icon-operation-rotate": [
+ 180,
+ 140
+ ],
+ "icon-operation-simplify": [
+ 200,
+ 140
+ ],
+ "icon-operation-continue": [
+ 220,
+ 140
+ ],
+ "icon-operation-disabled-delete": [
+ 0,
+ 160
+ ],
+ "icon-operation-disabled-circularize": [
+ 20,
+ 160
+ ],
+ "icon-operation-disabled-straighten": [
+ 40,
+ 160
+ ],
+ "icon-operation-disabled-split": [
+ 60,
+ 160
+ ],
+ "icon-operation-disabled-disconnect": [
+ 80,
+ 160
+ ],
+ "icon-operation-disabled-reverse": [
+ 100,
+ 160
+ ],
+ "icon-operation-disabled-move": [
+ 120,
+ 160
+ ],
+ "icon-operation-disabled-merge": [
+ 140,
+ 160
+ ],
+ "icon-operation-disabled-orthogonalize": [
+ 160,
+ 160
+ ],
+ "icon-operation-disabled-rotate": [
+ 180,
+ 160
+ ],
+ "icon-operation-disabled-simplify": [
+ 200,
+ 160
+ ],
+ "icon-operation-disabled-continue": [
+ 220,
+ 160
+ ]
+ },
+ "locales": [
+ "af",
+ "ar",
+ "ar-AA",
+ "ast",
+ "bn",
+ "bs",
+ "bg-BG",
+ "ca",
+ "zh",
+ "zh-CN",
+ "zh-CN.GB2312",
+ "zh-TW",
+ "yue",
+ "hr",
+ "cs",
+ "da",
+ "nl",
+ "en-GB",
+ "et",
+ "fi",
+ "fr",
+ "de",
+ "el",
+ "hu",
+ "is",
+ "id",
+ "it",
+ "ja",
+ "ko",
+ "lv",
+ "lt",
+ "no",
+ "nn",
+ "fa",
+ "pl",
+ "pt",
+ "pt-BR",
+ "ru",
+ "sc",
+ "sr",
+ "sr-RS",
+ "sk",
+ "sl",
+ "es",
+ "sv",
+ "te",
+ "tr",
+ "uk",
+ "vi"
+ ],
+ "en": {
+ "modes": {
+ "add_area": {
+ "title": "Area",
+ "description": "Add parks, buildings, lakes or other areas to the map.",
+ "tail": "Click on the map to start drawing an area, like a park, lake, or building."
+ },
+ "add_line": {
+ "title": "Line",
+ "description": "Add highways, streets, pedestrian paths, canals or other lines to the map.",
+ "tail": "Click on the map to start drawing a road, path, or route."
+ },
+ "add_point": {
+ "title": "Point",
+ "description": "Add restaurants, monuments, postal boxes or other points to the map.",
+ "tail": "Click on the map to add a point."
+ },
+ "browse": {
+ "title": "Browse",
+ "description": "Pan and zoom the map."
+ },
+ "draw_area": {
+ "tail": "Click to add nodes to your area. Click the first node to finish the area."
+ },
+ "draw_line": {
+ "tail": "Click to add more nodes to the line. Click on other lines to connect to them, and double-click to end the line."
+ }
+ },
+ "operations": {
+ "add": {
+ "annotation": {
+ "point": "Added a point.",
+ "vertex": "Added a node to a way.",
+ "relation": "Added a relation."
+ }
+ },
+ "start": {
+ "annotation": {
+ "line": "Started a line.",
+ "area": "Started an area."
+ }
+ },
+ "continue": {
+ "key": "A",
+ "title": "Continue",
+ "description": "Continue this line.",
+ "not_eligible": "No line can be continued here.",
+ "multiple": "Several lines can be continued here. To choose a line, press the Shift key and click on it to select it.",
+ "annotation": {
+ "line": "Continued a line.",
+ "area": "Continued an area."
+ }
+ },
+ "cancel_draw": {
+ "annotation": "Canceled drawing."
+ },
+ "change_role": {
+ "annotation": "Changed the role of a relation member."
+ },
+ "change_tags": {
+ "annotation": "Changed tags."
+ },
+ "circularize": {
+ "title": "Circularize",
+ "description": {
+ "line": "Make this line circular.",
+ "area": "Make this area circular."
+ },
+ "key": "O",
+ "annotation": {
+ "line": "Made a line circular.",
+ "area": "Made an area circular."
+ },
+ "not_closed": "This can't be made circular because it's not a loop."
+ },
+ "orthogonalize": {
+ "title": "Square",
+ "description": {
+ "line": "Square the corners of this line.",
+ "area": "Square the corners of this area."
+ },
+ "key": "S",
+ "annotation": {
+ "line": "Squared the corners of a line.",
+ "area": "Squared the corners of an area."
+ },
+ "not_squarish": "This can't be made square because it is not squarish."
+ },
+ "straighten": {
+ "title": "Straighten",
+ "description": "Straighten this line.",
+ "key": "S",
+ "annotation": "Straightened a line.",
+ "too_bendy": "This can't be straightened because it bends too much."
+ },
+ "delete": {
+ "title": "Delete",
+ "description": "Remove this from the map.",
+ "annotation": {
+ "point": "Deleted a point.",
+ "vertex": "Deleted a node from a way.",
+ "line": "Deleted a line.",
+ "area": "Deleted an area.",
+ "relation": "Deleted a relation.",
+ "multiple": "Deleted {n} objects."
+ },
+ "incomplete_relation": "This feature can't be deleted because it hasn't been fully downloaded."
+ },
+ "add_member": {
+ "annotation": "Added a member to a relation."
+ },
+ "delete_member": {
+ "annotation": "Removed a member from a relation."
+ },
+ "connect": {
+ "annotation": {
+ "point": "Connected a way to a point.",
+ "vertex": "Connected a way to another.",
+ "line": "Connected a way to a line.",
+ "area": "Connected a way to an area."
+ }
+ },
+ "disconnect": {
+ "title": "Disconnect",
+ "description": "Disconnect these lines/areas from each other.",
+ "key": "D",
+ "annotation": "Disconnected lines/areas.",
+ "not_connected": "There aren't enough lines/areas here to disconnect."
+ },
+ "merge": {
+ "title": "Merge",
+ "description": "Merge these lines.",
+ "key": "C",
+ "annotation": "Merged {n} lines.",
+ "not_eligible": "These features can't be merged.",
+ "not_adjacent": "These lines can't be merged because they aren't connected.",
+ "restriction": "These lines can't be merged because at least one is a member of a \"{relation}\" relation."
+ },
+ "move": {
+ "title": "Move",
+ "description": "Move this to a different location.",
+ "key": "M",
+ "annotation": {
+ "point": "Moved a point.",
+ "vertex": "Moved a node in a way.",
+ "line": "Moved a line.",
+ "area": "Moved an area.",
+ "multiple": "Moved multiple objects."
+ },
+ "incomplete_relation": "This feature can't be moved because it hasn't been fully downloaded."
+ },
+ "rotate": {
+ "title": "Rotate",
+ "description": "Rotate this object around its center point.",
+ "key": "R",
+ "annotation": {
+ "line": "Rotated a line.",
+ "area": "Rotated an area."
+ }
+ },
+ "reverse": {
+ "title": "Reverse",
+ "description": "Make this line go in the opposite direction.",
+ "key": "V",
+ "annotation": "Reversed a line."
+ },
+ "split": {
+ "title": "Split",
+ "description": {
+ "line": "Split this line into two at this node.",
+ "area": "Split the boundary of this area into two.",
+ "multiple": "Split the lines/area boundaries at this node into two."
+ },
+ "key": "X",
+ "annotation": {
+ "line": "Split a line.",
+ "area": "Split an area boundary.",
+ "multiple": "Split {n} lines/area boundaries."
+ },
+ "not_eligible": "Lines can't be split at their beginning or end.",
+ "multiple_ways": "There are too many lines here to split."
+ }
},
- "other-line": {
- "line": [
- 1940,
- 25
- ]
+ "undo": {
+ "tooltip": "Undo: {action}",
+ "nothing": "Nothing to undo."
},
- "category-roads": {
- "line": [
- 2000,
- 25
- ]
+ "redo": {
+ "tooltip": "Redo: {action}",
+ "nothing": "Nothing to redo."
},
- "category-rail": {
- "line": [
- 2060,
- 25
- ]
+ "tooltip_keyhint": "Shortcut:",
+ "browser_notice": "This editor is supported in Firefox, Chrome, Safari, Opera, and Internet Explorer 9 and above. Please upgrade your browser or use Potlatch 2 to edit the map.",
+ "translate": {
+ "translate": "Translate",
+ "localized_translation_label": "Multilingual name",
+ "localized_translation_language": "Choose language",
+ "localized_translation_name": "Name"
},
- "category-path": {
- "line": [
- 2120,
- 25
- ]
+ "zoom_in_edit": "Zoom in to Edit",
+ "logout": "logout",
+ "loading_auth": "Connecting to OpenStreetMap...",
+ "report_a_bug": "report a bug",
+ "status": {
+ "error": "Unable to connect to API.",
+ "offline": "The API is offline. Please try editing later.",
+ "readonly": "The API is read-only. You will need to wait to save your changes."
},
- "category-water": {
- "line": [
- 2180,
- 25
- ]
+ "commit": {
+ "title": "Save Changes",
+ "description_placeholder": "Brief description of your contributions",
+ "message_label": "Commit message",
+ "upload_explanation": "The changes you upload will be visible on all maps that use OpenStreetMap data.",
+ "upload_explanation_with_user": "The changes you upload as {user} will be visible on all maps that use OpenStreetMap data.",
+ "save": "Save",
+ "cancel": "Cancel",
+ "warnings": "Warnings",
+ "modified": "Modified",
+ "deleted": "Deleted",
+ "created": "Created"
},
- "pipeline": {
- "line": [
- 2300,
- 25
- ]
+ "contributors": {
+ "list": "Edits by {users}",
+ "truncated_list": "Edits by {users} and {count} others"
},
- "relation": {
- "relation": [
- 20,
- 25
- ]
+ "geocoder": {
+ "search": "Search worldwide...",
+ "no_results_visible": "No results in visible map area",
+ "no_results_worldwide": "No results found"
},
- "restriction": {
- "relation": [
- 80,
- 25
- ]
+ "geolocate": {
+ "title": "Show My Location"
},
- "multipolygon": {
- "relation": [
- 140,
- 25
- ]
+ "inspector": {
+ "no_documentation_combination": "There is no documentation available for this tag combination",
+ "no_documentation_key": "There is no documentation available for this key",
+ "show_more": "Show More",
+ "view_on_osm": "View on openstreetmap.org",
+ "all_tags": "All tags",
+ "all_members": "All members",
+ "all_relations": "All relations",
+ "new_relation": "New relation...",
+ "role": "Role",
+ "choose": "Select feature type",
+ "results": "{n} results for {search}",
+ "reference": "View on OpenStreetMap Wiki",
+ "back_tooltip": "Change feature",
+ "remove": "Remove",
+ "search": "Search",
+ "multiselect": "Selected items",
+ "unknown": "Unknown",
+ "incomplete": "",
+ "feature_list": "Search features",
+ "edit": "Edit feature",
+ "check": {
+ "yes": "Yes",
+ "no": "No"
+ },
+ "none": "None"
},
- "boundary": {
- "relation": [
- 200,
- 25
- ]
+ "background": {
+ "title": "Background",
+ "description": "Background settings",
+ "percent_brightness": "{opacity}% brightness",
+ "none": "None",
+ "custom": "Custom",
+ "custom_prompt": "Enter a tile template. Valid tokens are {z}, {x}, {y} for Z/X/Y scheme and {u} for quadtile scheme.",
+ "fix_misalignment": "Fix alignment",
+ "reset": "reset"
},
- "route": {
- "relation": [
- 260,
- 25
- ]
+ "restore": {
+ "heading": "You have unsaved changes",
+ "description": "Do you wish to restore unsaved changes from a previous editing session?",
+ "restore": "Restore",
+ "reset": "Reset"
},
- "route-road": {
- "relation": [
- 320,
- 25
- ]
+ "save": {
+ "title": "Save",
+ "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",
+ "uploading": "Uploading changes to OpenStreetMap.",
+ "unsaved_changes": "You have unsaved changes"
},
- "route-bicycle": {
- "relation": [
- 380,
- 25
- ]
+ "success": {
+ "edited_osm": "Edited OSM!",
+ "just_edited": "You just edited OpenStreetMap!",
+ "view_on_osm": "View on OSM",
+ "facebook": "Share on Facebook",
+ "twitter": "Share on Twitter",
+ "google": "Share on Google+",
+ "help_html": "Your changes should appear in the \"Standard\" layer in a few minutes. Other layers, and certain features, may take longer\n(details).\n"
},
- "route-foot": {
- "relation": [
- 440,
- 25
- ]
+ "confirm": {
+ "okay": "Okay"
},
- "route-bus": {
- "relation": [
- 500,
- 25
- ]
+ "splash": {
+ "welcome": "Welcome to the iD OpenStreetMap editor",
+ "text": "iD is a friendly but powerful tool for contributing to the world's best free world map. This is version {version}. For more information see {website} and report bugs at {github}.",
+ "walkthrough": "Start the Walkthrough",
+ "start": "Edit Now"
},
- "route-train": {
- "relation": [
- 560,
- 25
- ]
+ "source_switch": {
+ "live": "live",
+ "lose_changes": "You have unsaved changes. Switching the map server will discard them. Are you sure you want to switch servers?",
+ "dev": "dev"
},
- "route-detour": {
- "relation": [
- 620,
- 25
- ]
+ "tag_reference": {
+ "description": "Description",
+ "on_wiki": "{tag} on wiki.osm.org",
+ "used_with": "used with {type}"
},
- "route-tram": {
- "relation": [
- 680,
- 25
- ]
+ "validations": {
+ "untagged_point": "Untagged point",
+ "untagged_line": "Untagged line",
+ "untagged_area": "Untagged area",
+ "many_deletions": "You're deleting {n} objects. Are you sure you want to do this? This will delete them from the map that everyone else sees on openstreetmap.org.",
+ "tag_suggests_area": "The tag {tag} suggests line should be area, but it is not an area",
+ "deprecated_tags": "Deprecated tags: {tags}"
},
- "route-ferry": {
- "relation": [
- 740,
- 25
- ]
+ "zoom": {
+ "in": "Zoom In",
+ "out": "Zoom Out"
},
- "route-power": {
- "relation": [
- 800,
- 25
- ]
+ "cannot_zoom": "Cannot zoom out further in current mode.",
+ "gpx": {
+ "local_layer": "Local GPX file",
+ "drag_drop": "Drag and drop a .gpx file on the page, or click the button to the right to browse",
+ "zoom": "Zoom to GPX track",
+ "browse": "Browse for a .gpx file"
},
- "route-pipeline": {
- "relation": [
- 860,
- 25
- ]
+ "help": {
+ "title": "Help",
+ "help": "# Help\n\nThis is an editor for [OpenStreetMap](http://www.openstreetmap.org/), the\nfree and editable map of the world. You can use it to add and update\ndata in your area, making an open-source and open-data map of the world\nbetter for everyone.\n\nEdits that you make on this map will be visible to everyone who uses\nOpenStreetMap. In order to make an edit, you'll need a\n[free OpenStreetMap account](https://www.openstreetmap.org/user/new).\n\nThe [iD editor](http://ideditor.com/) is a collaborative project with [source\ncode available on GitHub](https://github.com/systemed/iD).\n",
+ "editing_saving": "# Editing & Saving\n\nThis editor is designed to work primarily online, and you're accessing\nit through a website right now.\n\n### Selecting Features\n\nTo select a map feature, like a road or point of interest, click\non it on the map. This will highlight the selected feature, open a panel with\ndetails about it, and show a menu of things you can do with the feature.\n\nTo select multiple features, hold down the 'Shift' key. Then either click\non the features you want to select, or drag on the map to draw a rectangle.\nThis will draw a box and select all the points within it.\n\n### Saving Edits\n\nWhen you make changes like editing roads, buildings, and places, these are\nstored locally until you save them to the server. Don't worry if you make\na mistake - you can undo changes by clicking the undo button, and redo\nchanges by clicking the redo button.\n\nClick 'Save' to finish a group of edits - for instance, if you've completed\nan area of town and would like to start on a new area. You'll have a chance\nto review what you've done, and the editor supplies helpful suggestions\nand warnings if something doesn't seem right about the changes.\n\nIf everything looks good, you can enter a short comment explaining the change\nyou made, and click 'Save' again to post the changes\nto [OpenStreetMap.org](http://www.openstreetmap.org/), where they are visible\nto all other users and available for others to build and improve upon.\n\nIf you can't finish your edits in one sitting, you can leave the editor\nwindow and come back (on the same browser and computer), and the\neditor application will offer to restore your work.\n",
+ "roads": "# Roads\n\nYou can create, fix, and delete roads with this editor. Roads can be all\nkinds: paths, highways, trails, cycleways, and more - any often-crossed\nsegment should be mappable.\n\n### Selecting\n\nClick on a road to select it. An outline should become visible, along\nwith a small tools menu on the map and a sidebar showing more information\nabout the road.\n\n### Modifying\n\nOften you'll see roads that aren't aligned to the imagery behind them\nor to a GPS track. You can adjust these roads so they are in the correct\nplace.\n\nFirst click on the road you want to change. This will highlight it and show\ncontrol points along it that you can drag to better locations. If\nyou want to add new control points for more detail, double-click a part\nof the road without a node, and one will be added.\n\nIf the road connects to another road, but doesn't properly connect on\nthe map, you can drag one of its control points onto the other road in\norder to join them. Having roads connect is important for the map\nand essential for providing driving directions.\n\nYou can also click the 'Move' tool or press the `M` shortcut key to move the entire road at\none time, and then click again to save that movement.\n\n### Deleting\n\nIf a road is entirely incorrect - you can see that it doesn't exist in satellite\nimagery and ideally have confirmed locally that it's not present - you can delete\nit, which removes it from the map. Be cautious when deleting features -\nlike any other edit, the results are seen by everyone and satellite imagery\nis often out of date, so the road could simply be newly built.\n\nYou can delete a road by clicking on it to select it, then clicking the\ntrash can icon or pressing the 'Delete' key.\n\n### Creating\n\nFound somewhere there should be a road but there isn't? Click the 'Line'\nicon in the top-left of the editor or press the shortcut key `2` to start drawing\na line.\n\nClick on the start of the road on the map to start drawing. If the road\nbranches off from an existing road, start by clicking on the place where they connect.\n\nThen click on points along the road so that it follows the right path, according\nto satellite imagery or GPS. If the road you are drawing crosses another road, connect\nit by clicking on the intersection point. When you're done drawing, double-click\nor press 'Return' or 'Enter' on your keyboard.\n",
+ "gps": "# GPS\n\nGPS data is the most trusted source of data for OpenStreetMap. This editor\nsupports local traces - `.gpx` files on your local computer. You can collect\nthis kind of GPS trace with a number of smartphone applications as well as\npersonal GPS hardware.\n\nFor information on how to perform a GPS survey, read\n[Surveying with a GPS](http://learnosm.org/en/beginner/using-gps/).\n\nTo use a GPX track for mapping, drag and drop the GPX file onto the map\neditor. If it's recognized, it will be added to the map as a bright green\nline. Click on the 'Background Settings' menu on the right side to enable,\ndisable, or zoom to this new GPX-powered layer.\n\nThe GPX track isn't directly uploaded to OpenStreetMap - the best way to\nuse it is to draw on the map, using it as a guide for the new features that\nyou add, and also to [upload it to OpenStreetMap](http://www.openstreetmap.org/trace/create)\nfor other users to use.\n",
+ "imagery": "# Imagery\n\nAerial imagery is an important resource for mapping. A combination of\nairplane flyovers, satellite views, and freely-compiled sources are available\nin the editor under the 'Background Settings' menu on the right.\n\nBy default a [Bing Maps](http://www.bing.com/maps/) satellite layer is\npresented in the editor, but as you pan and zoom the map to new geographical\nareas, new sources will become available. Some countries, like the United\nStates, France, and Denmark have very high-quality imagery available for some areas.\n\nImagery is sometimes offset from the map data because of a mistake on the\nimagery provider's side. If you see a lot of roads shifted from the background,\ndon't immediately move them all to match the background. Instead you can adjust\nthe imagery so that it matches the existing data by clicking 'Fix alignment' at\nthe bottom of the Background Settings UI.\n",
+ "addresses": "# Addresses\n\nAddresses are some of the most useful information for the map.\n\nAlthough addresses are often represented as parts of streets, in OpenStreetMap\nthey're recorded as attributes of buildings and places along streets.\n\nYou can add address information to places mapped as building outlines\nas well as those mapped as single points. The optimal source of address\ndata is from an on-the-ground survey or personal knowledge - as with any\nother feature, copying from commercial sources like Google Maps is strictly\nforbidden.\n",
+ "inspector": "# Using the Inspector\n\nThe inspector is the section on the left side of the page that allows you to\nedit the details of the selected feature.\n\n### Selecting a Feature Type\n\nAfter you add a point, line, or area, you can choose what type of feature it\nis, like whether it's a highway or residential road, supermarket or cafe.\nThe inspector will display buttons for common feature types, and you can\nfind others by typing what you're looking for in the search box.\n\nClick the 'i' in the bottom-right-hand corner of a feature type button to\nlearn more about it. Click a button to choose that type.\n\n### Using Forms and Editing Tags\n\nAfter you choose a feature type, or when you select a feature that already\nhas a type assigned, the inspector will display fields with details about\nthe feature like its name and address.\n\nBelow the fields you see, you can click icons to add other details,\nlike [Wikipedia](http://www.wikipedia.org/) information, wheelchair\naccess, and more.\n\nAt the bottom of the inspector, click 'Additional tags' to add arbitrary\nother tags to the element. [Taginfo](http://taginfo.openstreetmap.org/) is a\ngreat resource for learn more about popular tag combinations.\n\nChanges you make in the inspector are automatically applied to the map.\nYou can undo them at any time by clicking the 'Undo' button.\n",
+ "buildings": "# Buildings\n\nOpenStreetMap is the world's largest database of buildings. You can create\nand improve this database.\n\n### Selecting\n\nYou can select a building by clicking on its border. This will highlight the\nbuilding and open a small tools menu and a sidebar showing more information\nabout the building.\n\n### Modifying\n\nSometimes buildings are incorrectly placed or have incorrect tags.\n\nTo move an entire building, select it, then click the 'Move' tool. Move your\nmouse to shift the building, and click when it's correctly placed.\n\nTo fix the specific shape of a building, click and drag the nodes that form\nits border into better places.\n\n### Creating\n\nOne of the main questions around adding buildings to the map is that\nOpenStreetMap records buildings both as shapes and points. The rule of thumb\nis to _map a building as a shape whenever possible_, and map companies, homes,\namenities, and other things that operate out of buildings as points placed\nwithin the building shape.\n\nStart drawing a building as a shape by clicking the 'Area' button in the top\nleft of the interface, and end it either by pressing 'Return' on your keyboard\nor clicking on the first node drawn to close the shape.\n\n### Deleting\n\nIf a building is entirely incorrect - you can see that it doesn't exist in satellite\nimagery and ideally have confirmed locally that it's not present - you can delete\nit, which removes it from the map. Be cautious when deleting features -\nlike any other edit, the results are seen by everyone and satellite imagery\nis often out of date, so the building could simply be newly built.\n\nYou can delete a building by clicking on it to select it, then clicking the\ntrash can icon or pressing the 'Delete' key.\n",
+ "relations": "# Relations\n\nA relation is a special type of feature in OpenStreetMap that groups together\nother features. For example, two common types of relations are *route relations*,\nwhich group together sections of road that belong to a specific freeway or\nhighway, and *multipolygons*, which group together several lines that define\na complex area (one with several pieces or holes in it like a donut).\n\nThe group of features in a relation are called *members*. In the sidebar, you can\nsee which relations a feature is a member of, and click on a relation there\nto select the it. When the relation is selected, you can see all of its\nmembers listed in the sidebar and highlighted on the map.\n\nFor the most part, iD will take care of maintaining relations automatically\nwhile you edit. The main thing you should be aware of is that if you delete a\nsection of road to redraw it more accurately, you should make sure that the\nnew section is a member of the same relations as the original.\n\n## Editing Relations\n\nIf you want to edit relations, here are the basics.\n\nTo add a feature to a relation, select the feature, click the \"+\" button in the\n\"All relations\" section of the sidebar, and select or type the name of the relation.\n\nTo create a new relation, select the first feature that should be a member,\nclick the \"+\" button in the \"All relations\" section, and select \"New relation...\".\n\nTo remove a feature from a relation, select the feature and click the trash\nbutton next to the relation you want to remove it from.\n\nYou can create multipolygons with holes using the \"Merge\" tool. Draw two areas (inner\nand outer), hold the Shift key and click on each of them to select them both, and then\nclick the \"Merge\" (+) button.\n"
},
- "route-master": {
- "relation": [
- 920,
- 25
- ]
+ "intro": {
+ "navigation": {
+ "title": "Navigation",
+ "drag": "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**",
+ "select": "Map features are represented three ways: using points, lines or areas. All features can be selected by clicking on them. **Click on the point to select it.**",
+ "header": "The header shows us the feature type.",
+ "pane": "When a feature is selected, the feature editor is displayed. The header shows us the feature type and the main pane shows the feature's attributes, such as its name and address. **Close the feature editor with the close button in the top right.**"
+ },
+ "points": {
+ "title": "Points",
+ "add": "Points can be used to represent features such as shops, restaurants and monuments. They mark a specific location, and describe what's there. **Click the Point button to add a new point.**",
+ "place": "The point can be placed by clicking on the map. **Place the point on top of the building.**",
+ "search": "There are many different features that can be represented by points. The point you just added is a Cafe. **Search for '{name}'**",
+ "choose": "**Choose Cafe from the list.**",
+ "describe": "The point is now marked as a cafe. Using the feature editor, we can add more information about the feature. **Add a name**",
+ "close": "The feature editor can be closed by clicking on the close button. **Close the feature editor**",
+ "reselect": "Often points will already exist, but have mistakes or be incomplete. We can edit existing points. **Select the point you just created.**",
+ "fixname": "**Change the name and close the feature editor.**",
+ "reselect_delete": "All features on the map can be deleted. **Click on the point you created.**",
+ "delete": "The menu around the point contains operations that can be performed on it, including delete. **Delete the point.**"
+ },
+ "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.**",
+ "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}'.**",
+ "choose": "**Choose Playground from the list.**",
+ "describe": "**Add a name, and close the feature editor**"
+ },
+ "lines": {
+ "title": "Lines",
+ "add": "Lines are used to represent features such as roads, railroads and rivers. **Click the Line button to add a new line.**",
+ "start": "**Start the line by clicking on the end of the road.**",
+ "intersect": "Click to add more nodes to the line. You can drag the map while drawing if necessary. Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on Flower Street, to create an intersection connecting the two lines.**",
+ "finish": "Lines can be finished by clicking on the last node again. **Finish drawing the road.**",
+ "road": "**Select Road from the list**",
+ "residential": "There are different types of roads, the most common of which is Residential. **Choose the Residential road type**",
+ "describe": "**Name the road and close the feature editor.**",
+ "restart": "The road needs to intersect Flower Street.",
+ "wrong_preset": "You didn't select the Residential road type. **Click here to choose again**"
+ },
+ "startediting": {
+ "title": "Start Editing",
+ "help": "More documentation and this walkthrough are available here.",
+ "save": "Don't forget to regularly save your changes!",
+ "start": "Start mapping!"
+ }
+ },
+ "presets": {
+ "categories": {
+ "category-building": {
+ "name": "Building"
+ },
+ "category-landuse": {
+ "name": "Land Use"
+ },
+ "category-path": {
+ "name": "Path"
+ },
+ "category-rail": {
+ "name": "Rail"
+ },
+ "category-road": {
+ "name": "Road"
+ },
+ "category-route": {
+ "name": "Route"
+ },
+ "category-water-area": {
+ "name": "Water"
+ },
+ "category-water-line": {
+ "name": "Water"
+ }
+ },
+ "fields": {
+ "access": {
+ "label": "Access",
+ "placeholder": "Unknown",
+ "types": {
+ "access": "General",
+ "foot": "Foot",
+ "motor_vehicle": "Motor Vehicles",
+ "bicycle": "Bicycles",
+ "horse": "Horses"
+ },
+ "options": {
+ "yes": {
+ "title": "Allowed",
+ "description": "Access permitted by law; a right of way"
+ },
+ "no": {
+ "title": "Prohibited",
+ "description": "Access not permitted to the general public"
+ },
+ "permissive": {
+ "title": "Permissive",
+ "description": "Access permitted until such time as the owner revokes the permission"
+ },
+ "private": {
+ "title": "Private",
+ "description": "Access permitted only with permission of the owner on an individual basis"
+ },
+ "designated": {
+ "title": "Designated",
+ "description": "Access permitted according to signs or specific local laws"
+ },
+ "destination": {
+ "title": "Destination",
+ "description": "Access permitted only to reach a destination"
+ }
+ }
+ },
+ "access_toilets": {
+ "label": "Access"
+ },
+ "address": {
+ "label": "Address",
+ "placeholders": {
+ "housename": "Housename",
+ "number": "123",
+ "street": "Street",
+ "city": "City",
+ "postcode": "Postal code"
+ }
+ },
+ "admin_level": {
+ "label": "Admin Level"
+ },
+ "aeroway": {
+ "label": "Type"
+ },
+ "amenity": {
+ "label": "Type"
+ },
+ "artist": {
+ "label": "Artist"
+ },
+ "artwork_type": {
+ "label": "Type"
+ },
+ "atm": {
+ "label": "ATM"
+ },
+ "backrest": {
+ "label": "Backrest"
+ },
+ "barrier": {
+ "label": "Type"
+ },
+ "bicycle_parking": {
+ "label": "Type"
+ },
+ "boundary": {
+ "label": "Type"
+ },
+ "building": {
+ "label": "Building"
+ },
+ "building_area": {
+ "label": "Building"
+ },
+ "building_yes": {
+ "label": "Building"
+ },
+ "capacity": {
+ "label": "Capacity",
+ "placeholder": "50, 100, 200..."
+ },
+ "cardinal_direction": {
+ "label": "Direction"
+ },
+ "clock_direction": {
+ "label": "Direction",
+ "options": {
+ "clockwise": "Clockwise",
+ "anticlockwise": "Counterclockwise"
+ }
+ },
+ "collection_times": {
+ "label": "Collection Times"
+ },
+ "construction": {
+ "label": "Type"
+ },
+ "country": {
+ "label": "Country"
+ },
+ "crossing": {
+ "label": "Type"
+ },
+ "cuisine": {
+ "label": "Cuisine"
+ },
+ "denomination": {
+ "label": "Denomination"
+ },
+ "denotation": {
+ "label": "Denotation"
+ },
+ "description": {
+ "label": "Description"
+ },
+ "elevation": {
+ "label": "Elevation"
+ },
+ "emergency": {
+ "label": "Emergency"
+ },
+ "entrance": {
+ "label": "Type"
+ },
+ "fax": {
+ "label": "Fax",
+ "placeholder": "+31 42 123 4567"
+ },
+ "fee": {
+ "label": "Fee"
+ },
+ "fire_hydrant/type": {
+ "label": "Type"
+ },
+ "fixme": {
+ "label": "Fix Me"
+ },
+ "generator/method": {
+ "label": "Method"
+ },
+ "generator/source": {
+ "label": "Source"
+ },
+ "generator/type": {
+ "label": "Type"
+ },
+ "highway": {
+ "label": "Type"
+ },
+ "historic": {
+ "label": "Type"
+ },
+ "iata": {
+ "label": "IATA"
+ },
+ "icao": {
+ "label": "ICAO"
+ },
+ "incline": {
+ "label": "Incline"
+ },
+ "internet_access": {
+ "label": "Internet Access",
+ "options": {
+ "yes": "Yes",
+ "no": "No",
+ "wlan": "Wifi",
+ "wired": "Wired",
+ "terminal": "Terminal"
+ }
+ },
+ "landuse": {
+ "label": "Type"
+ },
+ "lanes": {
+ "label": "Lanes",
+ "placeholder": "1, 2, 3..."
+ },
+ "layer": {
+ "label": "Layer"
+ },
+ "leisure": {
+ "label": "Type"
+ },
+ "levels": {
+ "label": "Levels",
+ "placeholder": "2, 4, 6..."
+ },
+ "lit": {
+ "label": "Lit"
+ },
+ "location": {
+ "label": "Location"
+ },
+ "man_made": {
+ "label": "Type"
+ },
+ "maxspeed": {
+ "label": "Speed Limit",
+ "placeholder": "40, 50, 60..."
+ },
+ "name": {
+ "label": "Name",
+ "placeholder": "Common name (if any)"
+ },
+ "natural": {
+ "label": "Natural"
+ },
+ "network": {
+ "label": "Network"
+ },
+ "note": {
+ "label": "Note"
+ },
+ "office": {
+ "label": "Type"
+ },
+ "oneway": {
+ "label": "One Way"
+ },
+ "oneway_yes": {
+ "label": "One Way"
+ },
+ "opening_hours": {
+ "label": "Hours"
+ },
+ "operator": {
+ "label": "Operator"
+ },
+ "park_ride": {
+ "label": "Park and Ride"
+ },
+ "parking": {
+ "label": "Type"
+ },
+ "phone": {
+ "label": "Phone",
+ "placeholder": "+31 42 123 4567"
+ },
+ "place": {
+ "label": "Type"
+ },
+ "power": {
+ "label": "Type"
+ },
+ "railway": {
+ "label": "Type"
+ },
+ "ref": {
+ "label": "Reference"
+ },
+ "relation": {
+ "label": "Type"
+ },
+ "religion": {
+ "label": "Religion",
+ "options": {
+ "christian": "Christian",
+ "muslim": "Muslim",
+ "buddhist": "Buddhist",
+ "jewish": "Jewish",
+ "hindu": "Hindu",
+ "shinto": "Shinto",
+ "taoist": "Taoist"
+ }
+ },
+ "restriction": {
+ "label": "Type"
+ },
+ "route": {
+ "label": "Type"
+ },
+ "route_master": {
+ "label": "Type"
+ },
+ "sac_scale": {
+ "label": "Path Difficulty"
+ },
+ "service": {
+ "label": "Type"
+ },
+ "shelter": {
+ "label": "Shelter"
+ },
+ "shelter_type": {
+ "label": "Type"
+ },
+ "shop": {
+ "label": "Type"
+ },
+ "source": {
+ "label": "Source"
+ },
+ "sport": {
+ "label": "Sport"
+ },
+ "structure": {
+ "label": "Structure",
+ "placeholder": "Unknown",
+ "options": {
+ "bridge": "Bridge",
+ "tunnel": "Tunnel",
+ "embankment": "Embankment",
+ "cutting": "Cutting"
+ }
+ },
+ "supervised": {
+ "label": "Supervised"
+ },
+ "surface": {
+ "label": "Surface"
+ },
+ "toilets/disposal": {
+ "label": "Disposal"
+ },
+ "tourism": {
+ "label": "Type"
+ },
+ "towertype": {
+ "label": "Tower type"
+ },
+ "tracktype": {
+ "label": "Type"
+ },
+ "trail_visibility": {
+ "label": "Trail Visibility"
+ },
+ "tree_type": {
+ "label": "Type"
+ },
+ "vending": {
+ "label": "Type of Goods"
+ },
+ "water": {
+ "label": "Type"
+ },
+ "waterway": {
+ "label": "Type"
+ },
+ "website": {
+ "label": "Website",
+ "placeholder": "http://example.com/"
+ },
+ "wetland": {
+ "label": "Type"
+ },
+ "wheelchair": {
+ "label": "Wheelchair Access"
+ },
+ "wikipedia": {
+ "label": "Wikipedia"
+ },
+ "wood": {
+ "label": "Type"
+ }
+ },
+ "presets": {
+ "address": {
+ "name": "Address",
+ "terms": ""
+ },
+ "aeroway": {
+ "name": "Aeroway",
+ "terms": ""
+ },
+ "aeroway/aerodrome": {
+ "name": "Airport",
+ "terms": "airplane,airport,aerodrome"
+ },
+ "aeroway/apron": {
+ "name": "Apron",
+ "terms": "ramp"
+ },
+ "aeroway/gate": {
+ "name": "Airport gate",
+ "terms": ""
+ },
+ "aeroway/hangar": {
+ "name": "Hangar",
+ "terms": ""
+ },
+ "aeroway/helipad": {
+ "name": "Helipad",
+ "terms": "helicopter,helipad,heliport"
+ },
+ "aeroway/runway": {
+ "name": "Runway",
+ "terms": "landing strip"
+ },
+ "aeroway/taxiway": {
+ "name": "Taxiway",
+ "terms": ""
+ },
+ "aeroway/terminal": {
+ "name": "Airport terminal",
+ "terms": "airport,aerodrome"
+ },
+ "amenity": {
+ "name": "Amenity",
+ "terms": ""
+ },
+ "amenity/arts_centre": {
+ "name": "Arts Center",
+ "terms": "arts,arts centre"
+ },
+ "amenity/atm": {
+ "name": "ATM",
+ "terms": ""
+ },
+ "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"
+ },
+ "amenity/bar": {
+ "name": "Bar",
+ "terms": ""
+ },
+ "amenity/bench": {
+ "name": "Bench",
+ "terms": ""
+ },
+ "amenity/bicycle_parking": {
+ "name": "Bicycle Parking",
+ "terms": ""
+ },
+ "amenity/bicycle_rental": {
+ "name": "Bicycle Rental",
+ "terms": ""
+ },
+ "amenity/boat_rental": {
+ "name": "Boat Rental",
+ "terms": ""
+ },
+ "amenity/cafe": {
+ "name": "Cafe",
+ "terms": "coffee,tea,coffee shop"
+ },
+ "amenity/car_rental": {
+ "name": "Car Rental",
+ "terms": ""
+ },
+ "amenity/car_sharing": {
+ "name": "Car Sharing",
+ "terms": ""
+ },
+ "amenity/car_wash": {
+ "name": "Car Wash",
+ "terms": ""
+ },
+ "amenity/childcare": {
+ "name": "Childcare",
+ "terms": "nursery,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"
+ },
+ "amenity/college": {
+ "name": "College",
+ "terms": ""
+ },
+ "amenity/courthouse": {
+ "name": "Courthouse",
+ "terms": ""
+ },
+ "amenity/drinking_water": {
+ "name": "Drinking Water",
+ "terms": "water fountain,potable water"
+ },
+ "amenity/embassy": {
+ "name": "Embassy",
+ "terms": ""
+ },
+ "amenity/fast_food": {
+ "name": "Fast Food",
+ "terms": ""
+ },
+ "amenity/fire_station": {
+ "name": "Fire Station",
+ "terms": ""
+ },
+ "amenity/fountain": {
+ "name": "Fountain",
+ "terms": ""
+ },
+ "amenity/fuel": {
+ "name": "Gas Station",
+ "terms": "petrol,fuel,propane,diesel,lng,cng,biodiesel"
+ },
+ "amenity/grave_yard": {
+ "name": "Graveyard",
+ "terms": ""
+ },
+ "amenity/hospital": {
+ "name": "Hospital",
+ "terms": "clinic,emergency room,health service,hospice,infirmary,institution,nursing home,rest home,sanatorium,sanitarium,sick bay,surgery,ward"
+ },
+ "amenity/kindergarten": {
+ "name": "Kindergarten",
+ "terms": "nursery,preschool"
+ },
+ "amenity/library": {
+ "name": "Library",
+ "terms": ""
+ },
+ "amenity/marketplace": {
+ "name": "Marketplace",
+ "terms": ""
+ },
+ "amenity/parking": {
+ "name": "Car Parking",
+ "terms": ""
+ },
+ "amenity/pharmacy": {
+ "name": "Pharmacy",
+ "terms": ""
+ },
+ "amenity/place_of_worship": {
+ "name": "Place of Worship",
+ "terms": "abbey,basilica,bethel,cathedral,chancel,chantry,chapel,church,fold,house of God,house of prayer,house of worship,minster,mission,mosque,oratory,parish,sacellum,sanctuary,shrine,synagogue,tabernacle,temple"
+ },
+ "amenity/place_of_worship/buddhist": {
+ "name": "Buddhist Temple",
+ "terms": "stupa,vihara,monastery,temple,pagoda,zendo,dojo"
+ },
+ "amenity/place_of_worship/christian": {
+ "name": "Church",
+ "terms": "christian,abbey,basilica,bethel,cathedral,chancel,chantry,chapel,church,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"
+ },
+ "amenity/place_of_worship/muslim": {
+ "name": "Mosque",
+ "terms": "muslim,mosque"
+ },
+ "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"
+ },
+ "amenity/post_box": {
+ "name": "Mailbox",
+ "terms": "letter drop,letterbox,mail drop,mailbox,pillar box,postbox"
+ },
+ "amenity/post_office": {
+ "name": "Post Office",
+ "terms": ""
+ },
+ "amenity/pub": {
+ "name": "Pub",
+ "terms": ""
+ },
+ "amenity/ranger_station": {
+ "name": "Ranger Station",
+ "terms": "visitor center,visitor centre,permit center,permit centre,backcountry office,warden office,warden center"
+ },
+ "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"
+ },
+ "amenity/school": {
+ "name": "School",
+ "terms": "academy,alma mater,blackboard,college,department,discipline,establishment,faculty,hall,halls of ivy,institute,institution,jail*,schoolhouse,seminary,university"
+ },
+ "amenity/shelter": {
+ "name": "Shelter",
+ "terms": "lean-to"
+ },
+ "amenity/swimming_pool": {
+ "name": "Swimming Pool",
+ "terms": ""
+ },
+ "amenity/taxi": {
+ "name": "Taxi Stand",
+ "terms": "cab"
+ },
+ "amenity/telephone": {
+ "name": "Telephone",
+ "terms": ""
+ },
+ "amenity/theatre": {
+ "name": "Theater",
+ "terms": "theatre,performance,play,musical"
+ },
+ "amenity/toilets": {
+ "name": "Toilets",
+ "terms": "bathroom,restroom,outhouse,privy,head,lavatory,latrine,water closet,WC,W.C."
+ },
+ "amenity/townhall": {
+ "name": "Town Hall",
+ "terms": "village hall,city government,courthouse,municipal building,municipal center,municipal centre"
+ },
+ "amenity/university": {
+ "name": "University",
+ "terms": "college"
+ },
+ "amenity/vending_machine": {
+ "name": "Vending Machine",
+ "terms": ""
+ },
+ "amenity/waste_basket": {
+ "name": "Waste Basket",
+ "terms": "rubbish bin,litter bin,trash can,garbage can"
+ },
+ "area": {
+ "name": "Area",
+ "terms": ""
+ },
+ "barrier": {
+ "name": "Barrier",
+ "terms": ""
+ },
+ "barrier/block": {
+ "name": "Block",
+ "terms": ""
+ },
+ "barrier/bollard": {
+ "name": "Bollard",
+ "terms": ""
+ },
+ "barrier/cattle_grid": {
+ "name": "Cattle Grid",
+ "terms": ""
+ },
+ "barrier/city_wall": {
+ "name": "City Wall",
+ "terms": ""
+ },
+ "barrier/cycle_barrier": {
+ "name": "Cycle Barrier",
+ "terms": ""
+ },
+ "barrier/ditch": {
+ "name": "Ditch",
+ "terms": ""
+ },
+ "barrier/entrance": {
+ "name": "Entrance",
+ "terms": ""
+ },
+ "barrier/fence": {
+ "name": "Fence",
+ "terms": ""
+ },
+ "barrier/gate": {
+ "name": "Gate",
+ "terms": ""
+ },
+ "barrier/hedge": {
+ "name": "Hedge",
+ "terms": ""
+ },
+ "barrier/kissing_gate": {
+ "name": "Kissing Gate",
+ "terms": ""
+ },
+ "barrier/lift_gate": {
+ "name": "Lift Gate",
+ "terms": ""
+ },
+ "barrier/retaining_wall": {
+ "name": "Retaining Wall",
+ "terms": ""
+ },
+ "barrier/stile": {
+ "name": "Stile",
+ "terms": ""
+ },
+ "barrier/toll_booth": {
+ "name": "Toll Booth",
+ "terms": ""
+ },
+ "barrier/wall": {
+ "name": "Wall",
+ "terms": ""
+ },
+ "boundary/administrative": {
+ "name": "Administrative Boundary",
+ "terms": ""
+ },
+ "building": {
+ "name": "Building",
+ "terms": ""
+ },
+ "building/apartments": {
+ "name": "Apartments",
+ "terms": ""
+ },
+ "building/commercial": {
+ "name": "Commercial Building",
+ "terms": ""
+ },
+ "building/entrance": {
+ "name": "Entrance",
+ "terms": ""
+ },
+ "building/garage": {
+ "name": "Garage",
+ "terms": ""
+ },
+ "building/house": {
+ "name": "House",
+ "terms": ""
+ },
+ "building/hut": {
+ "name": "Hut",
+ "terms": ""
+ },
+ "building/industrial": {
+ "name": "Industrial Building",
+ "terms": ""
+ },
+ "building/residential": {
+ "name": "Residential Building",
+ "terms": ""
+ },
+ "emergency/ambulance_station": {
+ "name": "Ambulance Station",
+ "terms": ""
+ },
+ "emergency/fire_hydrant": {
+ "name": "Fire Hydrant",
+ "terms": ""
+ },
+ "emergency/phone": {
+ "name": "Emergency Phone",
+ "terms": ""
+ },
+ "entrance": {
+ "name": "Entrance",
+ "terms": ""
+ },
+ "footway/crossing": {
+ "name": "Crossing",
+ "terms": "crosswalk,zebra crossing"
+ },
+ "footway/sidewalk": {
+ "name": "Sidewalk",
+ "terms": ""
+ },
+ "highway": {
+ "name": "Highway",
+ "terms": ""
+ },
+ "highway/bridleway": {
+ "name": "Bridle Path",
+ "terms": "bridleway,equestrian trail,horse riding path,bridle road,horse trail"
+ },
+ "highway/bus_stop": {
+ "name": "Bus Stop",
+ "terms": ""
+ },
+ "highway/crossing": {
+ "name": "Crossing",
+ "terms": "crosswalk,zebra crossing"
+ },
+ "highway/cycleway": {
+ "name": "Cycle Path",
+ "terms": ""
+ },
+ "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"
+ },
+ "highway/living_street": {
+ "name": "Living Street",
+ "terms": ""
+ },
+ "highway/mini_roundabout": {
+ "name": "Mini-Roundabout",
+ "terms": ""
+ },
+ "highway/motorway": {
+ "name": "Motorway",
+ "terms": ""
+ },
+ "highway/motorway_junction": {
+ "name": "Motorway Junction",
+ "terms": ""
+ },
+ "highway/motorway_link": {
+ "name": "Motorway Link",
+ "terms": "ramp,on ramp,off ramp"
+ },
+ "highway/path": {
+ "name": "Path",
+ "terms": ""
+ },
+ "highway/pedestrian": {
+ "name": "Pedestrian",
+ "terms": ""
+ },
+ "highway/primary": {
+ "name": "Primary Road",
+ "terms": ""
+ },
+ "highway/primary_link": {
+ "name": "Primary Link",
+ "terms": "ramp,on ramp,off ramp"
+ },
+ "highway/residential": {
+ "name": "Residential Road",
+ "terms": ""
+ },
+ "highway/road": {
+ "name": "Unknown Road",
+ "terms": ""
+ },
+ "highway/secondary": {
+ "name": "Secondary Road",
+ "terms": ""
+ },
+ "highway/secondary_link": {
+ "name": "Secondary Link",
+ "terms": "ramp,on ramp,off ramp"
+ },
+ "highway/service": {
+ "name": "Service Road",
+ "terms": ""
+ },
+ "highway/service/alley": {
+ "name": "Alley",
+ "terms": ""
+ },
+ "highway/service/drive-through": {
+ "name": "Drive-Through",
+ "terms": ""
+ },
+ "highway/service/driveway": {
+ "name": "Driveway",
+ "terms": ""
+ },
+ "highway/service/emergency_access": {
+ "name": "Emergency Access",
+ "terms": ""
+ },
+ "highway/service/parking_aisle": {
+ "name": "Parking Aisle",
+ "terms": ""
+ },
+ "highway/steps": {
+ "name": "Steps",
+ "terms": "stairs,staircase"
+ },
+ "highway/stop": {
+ "name": "Stop Sign",
+ "terms": "stop sign"
+ },
+ "highway/tertiary": {
+ "name": "Tertiary Road",
+ "terms": ""
+ },
+ "highway/tertiary_link": {
+ "name": "Tertiary Link",
+ "terms": "ramp,on ramp,off ramp"
+ },
+ "highway/track": {
+ "name": "Track",
+ "terms": ""
+ },
+ "highway/traffic_signals": {
+ "name": "Traffic Signals",
+ "terms": "light,stoplight,traffic light"
+ },
+ "highway/trunk": {
+ "name": "Trunk Road",
+ "terms": ""
+ },
+ "highway/trunk_link": {
+ "name": "Trunk Link",
+ "terms": "ramp,on ramp,off ramp"
+ },
+ "highway/turning_circle": {
+ "name": "Turning Circle",
+ "terms": ""
+ },
+ "highway/unclassified": {
+ "name": "Unclassified Road",
+ "terms": ""
+ },
+ "historic": {
+ "name": "Historic Site",
+ "terms": ""
+ },
+ "historic/archaeological_site": {
+ "name": "Archaeological Site",
+ "terms": ""
+ },
+ "historic/boundary_stone": {
+ "name": "Boundary Stone",
+ "terms": ""
+ },
+ "historic/castle": {
+ "name": "Castle",
+ "terms": ""
+ },
+ "historic/memorial": {
+ "name": "Memorial",
+ "terms": ""
+ },
+ "historic/monument": {
+ "name": "Monument",
+ "terms": ""
+ },
+ "historic/ruins": {
+ "name": "Ruins",
+ "terms": ""
+ },
+ "historic/wayside_cross": {
+ "name": "Wayside Cross",
+ "terms": ""
+ },
+ "historic/wayside_shrine": {
+ "name": "Wayside Shrine",
+ "terms": ""
+ },
+ "landuse": {
+ "name": "Landuse",
+ "terms": ""
+ },
+ "landuse/allotments": {
+ "name": "Allotments",
+ "terms": ""
+ },
+ "landuse/basin": {
+ "name": "Basin",
+ "terms": ""
+ },
+ "landuse/cemetery": {
+ "name": "Cemetery",
+ "terms": ""
+ },
+ "landuse/commercial": {
+ "name": "Commercial",
+ "terms": ""
+ },
+ "landuse/construction": {
+ "name": "Construction",
+ "terms": ""
+ },
+ "landuse/farm": {
+ "name": "Farm",
+ "terms": ""
+ },
+ "landuse/farmyard": {
+ "name": "Farmyard",
+ "terms": ""
+ },
+ "landuse/forest": {
+ "name": "Forest",
+ "terms": ""
+ },
+ "landuse/grass": {
+ "name": "Grass",
+ "terms": ""
+ },
+ "landuse/industrial": {
+ "name": "Industrial",
+ "terms": ""
+ },
+ "landuse/meadow": {
+ "name": "Meadow",
+ "terms": ""
+ },
+ "landuse/orchard": {
+ "name": "Orchard",
+ "terms": ""
+ },
+ "landuse/quarry": {
+ "name": "Quarry",
+ "terms": ""
+ },
+ "landuse/residential": {
+ "name": "Residential",
+ "terms": ""
+ },
+ "landuse/retail": {
+ "name": "Retail",
+ "terms": ""
+ },
+ "landuse/vineyard": {
+ "name": "Vineyard",
+ "terms": ""
+ },
+ "leisure": {
+ "name": "Leisure",
+ "terms": ""
+ },
+ "leisure/common": {
+ "name": "Common",
+ "terms": "open space"
+ },
+ "leisure/dog_park": {
+ "name": "Dog Park",
+ "terms": ""
+ },
+ "leisure/garden": {
+ "name": "Garden",
+ "terms": ""
+ },
+ "leisure/golf_course": {
+ "name": "Golf Course",
+ "terms": ""
+ },
+ "leisure/marina": {
+ "name": "Marina",
+ "terms": ""
+ },
+ "leisure/park": {
+ "name": "Park",
+ "terms": "esplanade,estate,forest,garden,grass,green,grounds,lawn,lot,meadow,parkland,place,playground,plaza,pleasure garden,recreation area,square,tract,village green,woodland"
+ },
+ "leisure/pitch": {
+ "name": "Sport Pitch",
+ "terms": ""
+ },
+ "leisure/pitch/american_football": {
+ "name": "American Football Field",
+ "terms": ""
+ },
+ "leisure/pitch/baseball": {
+ "name": "Baseball Diamond",
+ "terms": ""
+ },
+ "leisure/pitch/basketball": {
+ "name": "Basketball Court",
+ "terms": ""
+ },
+ "leisure/pitch/skateboard": {
+ "name": "Skate Park",
+ "terms": ""
+ },
+ "leisure/pitch/soccer": {
+ "name": "Soccer Field",
+ "terms": ""
+ },
+ "leisure/pitch/tennis": {
+ "name": "Tennis Court",
+ "terms": ""
+ },
+ "leisure/pitch/volleyball": {
+ "name": "Volleyball Court",
+ "terms": ""
+ },
+ "leisure/playground": {
+ "name": "Playground",
+ "terms": "jungle gym,play area"
+ },
+ "leisure/slipway": {
+ "name": "Slipway",
+ "terms": ""
+ },
+ "leisure/sports_center": {
+ "name": "Sports Center",
+ "terms": "gym"
+ },
+ "leisure/stadium": {
+ "name": "Stadium",
+ "terms": ""
+ },
+ "leisure/swimming_pool": {
+ "name": "Swimming Pool",
+ "terms": ""
+ },
+ "leisure/track": {
+ "name": "Race Track",
+ "terms": ""
+ },
+ "line": {
+ "name": "Line",
+ "terms": ""
+ },
+ "man_made": {
+ "name": "Man Made",
+ "terms": ""
+ },
+ "man_made/breakwater": {
+ "name": "Breakwater",
+ "terms": ""
+ },
+ "man_made/cutline": {
+ "name": "Cut line",
+ "terms": ""
+ },
+ "man_made/lighthouse": {
+ "name": "Lighthouse",
+ "terms": ""
+ },
+ "man_made/observation": {
+ "name": "Observation Tower",
+ "terms": "lookout tower,fire tower"
+ },
+ "man_made/pier": {
+ "name": "Pier",
+ "terms": ""
+ },
+ "man_made/pipeline": {
+ "name": "Pipeline",
+ "terms": ""
+ },
+ "man_made/survey_point": {
+ "name": "Survey Point",
+ "terms": ""
+ },
+ "man_made/tower": {
+ "name": "Tower",
+ "terms": ""
+ },
+ "man_made/wastewater_plant": {
+ "name": "Wastewater Plant",
+ "terms": "sewage works,sewage treatment plant,water treatment plant,reclamation plant"
+ },
+ "man_made/water_tower": {
+ "name": "Water Tower",
+ "terms": ""
+ },
+ "man_made/water_well": {
+ "name": "Water well",
+ "terms": ""
+ },
+ "man_made/water_works": {
+ "name": "Water Works",
+ "terms": ""
+ },
+ "natural": {
+ "name": "Natural",
+ "terms": ""
+ },
+ "natural/bay": {
+ "name": "Bay",
+ "terms": ""
+ },
+ "natural/beach": {
+ "name": "Beach",
+ "terms": ""
+ },
+ "natural/cliff": {
+ "name": "Cliff",
+ "terms": ""
+ },
+ "natural/coastline": {
+ "name": "Coastline",
+ "terms": "shore"
+ },
+ "natural/fell": {
+ "name": "Fell",
+ "terms": ""
+ },
+ "natural/glacier": {
+ "name": "Glacier",
+ "terms": ""
+ },
+ "natural/grassland": {
+ "name": "Grassland",
+ "terms": ""
+ },
+ "natural/heath": {
+ "name": "Heath",
+ "terms": ""
+ },
+ "natural/peak": {
+ "name": "Peak",
+ "terms": "acme,aiguille,alp,climax,crest,crown,hill,mount,mountain,pinnacle,summit,tip,top"
+ },
+ "natural/scree": {
+ "name": "Scree",
+ "terms": "loose rocks"
+ },
+ "natural/scrub": {
+ "name": "Scrub",
+ "terms": ""
+ },
+ "natural/spring": {
+ "name": "Spring",
+ "terms": ""
+ },
+ "natural/tree": {
+ "name": "Tree",
+ "terms": ""
+ },
+ "natural/water": {
+ "name": "Water",
+ "terms": ""
+ },
+ "natural/water/lake": {
+ "name": "Lake",
+ "terms": "lakelet,loch,mere"
+ },
+ "natural/water/pond": {
+ "name": "Pond",
+ "terms": "lakelet,millpond,tarn,pool,mere"
+ },
+ "natural/water/reservoir": {
+ "name": "Reservoir",
+ "terms": ""
+ },
+ "natural/wetland": {
+ "name": "Wetland",
+ "terms": ""
+ },
+ "natural/wood": {
+ "name": "Wood",
+ "terms": ""
+ },
+ "office": {
+ "name": "Office",
+ "terms": ""
+ },
+ "office/accountant": {
+ "name": "Accountant",
+ "terms": ""
+ },
+ "office/administrative": {
+ "name": "Administrative Office",
+ "terms": ""
+ },
+ "office/architect": {
+ "name": "Architect",
+ "terms": ""
+ },
+ "office/company": {
+ "name": "Company Office",
+ "terms": ""
+ },
+ "office/educational_institution": {
+ "name": "Educational Institution",
+ "terms": ""
+ },
+ "office/employment_agency": {
+ "name": "Employment Agency",
+ "terms": ""
+ },
+ "office/estate_agent": {
+ "name": "Real Estate Office",
+ "terms": ""
+ },
+ "office/financial": {
+ "name": "Financial Office",
+ "terms": ""
+ },
+ "office/government": {
+ "name": "Government Office",
+ "terms": ""
+ },
+ "office/insurance": {
+ "name": "Insurance Office",
+ "terms": ""
+ },
+ "office/it": {
+ "name": "IT Office",
+ "terms": ""
+ },
+ "office/lawyer": {
+ "name": "Law Office",
+ "terms": ""
+ },
+ "office/newspaper": {
+ "name": "Newspaper",
+ "terms": ""
+ },
+ "office/ngo": {
+ "name": "NGO Office",
+ "terms": ""
+ },
+ "office/physician": {
+ "name": "Physician",
+ "terms": ""
+ },
+ "office/political_party": {
+ "name": "Political Party",
+ "terms": ""
+ },
+ "office/research": {
+ "name": "Research Office",
+ "terms": ""
+ },
+ "office/telecommunication": {
+ "name": "Telecom Office",
+ "terms": ""
+ },
+ "office/therapist": {
+ "name": "Therapist",
+ "terms": ""
+ },
+ "office/travel_agent": {
+ "name": "Travel Agency",
+ "terms": ""
+ },
+ "place": {
+ "name": "Place",
+ "terms": ""
+ },
+ "place/city": {
+ "name": "City",
+ "terms": ""
+ },
+ "place/hamlet": {
+ "name": "Hamlet",
+ "terms": ""
+ },
+ "place/island": {
+ "name": "Island",
+ "terms": "archipelago,atoll,bar,cay,isle,islet,key,reef"
+ },
+ "place/isolated_dwelling": {
+ "name": "Isolated Dwelling",
+ "terms": ""
+ },
+ "place/locality": {
+ "name": "Locality",
+ "terms": ""
+ },
+ "place/town": {
+ "name": "Town",
+ "terms": ""
+ },
+ "place/village": {
+ "name": "Village",
+ "terms": ""
+ },
+ "point": {
+ "name": "Point",
+ "terms": ""
+ },
+ "power": {
+ "name": "Power",
+ "terms": ""
+ },
+ "power/generator": {
+ "name": "Power Generator",
+ "terms": ""
+ },
+ "power/line": {
+ "name": "Power Line",
+ "terms": ""
+ },
+ "power/minor_line": {
+ "name": "Minor Power Line",
+ "terms": ""
+ },
+ "power/pole": {
+ "name": "Power Pole",
+ "terms": ""
+ },
+ "power/sub_station": {
+ "name": "Substation",
+ "terms": ""
+ },
+ "power/tower": {
+ "name": "High-Voltage Tower",
+ "terms": ""
+ },
+ "power/transformer": {
+ "name": "Transformer",
+ "terms": ""
+ },
+ "railway": {
+ "name": "Railway",
+ "terms": ""
+ },
+ "railway/abandoned": {
+ "name": "Abandoned Railway",
+ "terms": ""
+ },
+ "railway/disused": {
+ "name": "Disused Railway",
+ "terms": ""
+ },
+ "railway/halt": {
+ "name": "Railway Halt",
+ "terms": "break,interrupt,rest,wait,interruption"
+ },
+ "railway/level_crossing": {
+ "name": "Level Crossing",
+ "terms": "crossing,railroad crossing,railway crossing,grade crossing,road through railroad,train crossing"
+ },
+ "railway/monorail": {
+ "name": "Monorail",
+ "terms": ""
+ },
+ "railway/platform": {
+ "name": "Railway Platform",
+ "terms": ""
+ },
+ "railway/rail": {
+ "name": "Rail",
+ "terms": ""
+ },
+ "railway/station": {
+ "name": "Railway Station",
+ "terms": "train station,station"
+ },
+ "railway/subway": {
+ "name": "Subway",
+ "terms": ""
+ },
+ "railway/subway_entrance": {
+ "name": "Subway Entrance",
+ "terms": ""
+ },
+ "railway/tram": {
+ "name": "Tram",
+ "terms": "streetcar"
+ },
+ "relation": {
+ "name": "Relation",
+ "terms": ""
+ },
+ "route/ferry": {
+ "name": "Ferry Route",
+ "terms": ""
+ },
+ "shop": {
+ "name": "Shop",
+ "terms": ""
+ },
+ "shop/alcohol": {
+ "name": "Liquor Store",
+ "terms": "alcohol"
+ },
+ "shop/bakery": {
+ "name": "Bakery",
+ "terms": ""
+ },
+ "shop/beauty": {
+ "name": "Beauty Shop",
+ "terms": "nail spa,spa,salon,tanning"
+ },
+ "shop/beverages": {
+ "name": "Beverage Store",
+ "terms": ""
+ },
+ "shop/bicycle": {
+ "name": "Bicycle Shop",
+ "terms": ""
+ },
+ "shop/books": {
+ "name": "Bookstore",
+ "terms": ""
+ },
+ "shop/boutique": {
+ "name": "Boutique",
+ "terms": ""
+ },
+ "shop/butcher": {
+ "name": "Butcher",
+ "terms": ""
+ },
+ "shop/car": {
+ "name": "Car Dealership",
+ "terms": ""
+ },
+ "shop/car_parts": {
+ "name": "Car Parts Store",
+ "terms": ""
+ },
+ "shop/car_repair": {
+ "name": "Car Repair Shop",
+ "terms": ""
+ },
+ "shop/chemist": {
+ "name": "Chemist",
+ "terms": ""
+ },
+ "shop/clothes": {
+ "name": "Clothing Store",
+ "terms": ""
+ },
+ "shop/computer": {
+ "name": "Computer Store",
+ "terms": ""
+ },
+ "shop/confectionery": {
+ "name": "Confectionery",
+ "terms": ""
+ },
+ "shop/convenience": {
+ "name": "Convenience Store",
+ "terms": ""
+ },
+ "shop/deli": {
+ "name": "Deli",
+ "terms": ""
+ },
+ "shop/department_store": {
+ "name": "Department Store",
+ "terms": ""
+ },
+ "shop/doityourself": {
+ "name": "DIY Store",
+ "terms": ""
+ },
+ "shop/dry_cleaning": {
+ "name": "Dry Cleaners",
+ "terms": ""
+ },
+ "shop/electronics": {
+ "name": "Electronics Store",
+ "terms": ""
+ },
+ "shop/farm": {
+ "name": "Produce Stand",
+ "terms": "farm shop,farm stand"
+ },
+ "shop/fishmonger": {
+ "name": "Fishmonger",
+ "terms": ""
+ },
+ "shop/florist": {
+ "name": "Florist",
+ "terms": ""
+ },
+ "shop/furniture": {
+ "name": "Furniture Store",
+ "terms": ""
+ },
+ "shop/garden_centre": {
+ "name": "Garden Center",
+ "terms": "garden centre"
+ },
+ "shop/gift": {
+ "name": "Gift Shop",
+ "terms": ""
+ },
+ "shop/greengrocer": {
+ "name": "Greengrocer",
+ "terms": ""
+ },
+ "shop/hairdresser": {
+ "name": "Hairdresser",
+ "terms": ""
+ },
+ "shop/hardware": {
+ "name": "Hardware Store",
+ "terms": ""
+ },
+ "shop/hifi": {
+ "name": "Hifi Store",
+ "terms": ""
+ },
+ "shop/jewelry": {
+ "name": "Jeweler",
+ "terms": ""
+ },
+ "shop/kiosk": {
+ "name": "Kiosk",
+ "terms": ""
+ },
+ "shop/laundry": {
+ "name": "Laundry",
+ "terms": ""
+ },
+ "shop/locksmith": {
+ "name": "Locksmith",
+ "terms": "keys"
+ },
+ "shop/mall": {
+ "name": "Mall",
+ "terms": ""
+ },
+ "shop/mobile_phone": {
+ "name": "Mobile Phone Store",
+ "terms": ""
+ },
+ "shop/motorcycle": {
+ "name": "Motorcycle Dealership",
+ "terms": ""
+ },
+ "shop/music": {
+ "name": "Music Store",
+ "terms": ""
+ },
+ "shop/newsagent": {
+ "name": "Newsagent",
+ "terms": ""
+ },
+ "shop/optician": {
+ "name": "Optician",
+ "terms": ""
+ },
+ "shop/outdoor": {
+ "name": "Outdoor Store",
+ "terms": ""
+ },
+ "shop/pet": {
+ "name": "Pet Store",
+ "terms": ""
+ },
+ "shop/photo": {
+ "name": "Photography Store",
+ "terms": ""
+ },
+ "shop/shoes": {
+ "name": "Shoe Store",
+ "terms": ""
+ },
+ "shop/sports": {
+ "name": "Sporting Goods Store",
+ "terms": ""
+ },
+ "shop/stationery": {
+ "name": "Stationery Store",
+ "terms": ""
+ },
+ "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"
+ },
+ "shop/toys": {
+ "name": "Toy Store",
+ "terms": ""
+ },
+ "shop/travel_agency": {
+ "name": "Travel Agency",
+ "terms": ""
+ },
+ "shop/tyres": {
+ "name": "Tire Store",
+ "terms": ""
+ },
+ "shop/vacant": {
+ "name": "Vacant Shop",
+ "terms": ""
+ },
+ "shop/variety_store": {
+ "name": "Variety Store",
+ "terms": ""
+ },
+ "shop/video": {
+ "name": "Video Store",
+ "terms": ""
+ },
+ "tourism": {
+ "name": "Tourism",
+ "terms": ""
+ },
+ "tourism/alpine_hut": {
+ "name": "Alpine Hut",
+ "terms": ""
+ },
+ "tourism/artwork": {
+ "name": "Artwork",
+ "terms": "mural,sculpture,statue"
+ },
+ "tourism/attraction": {
+ "name": "Tourist Attraction",
+ "terms": ""
+ },
+ "tourism/camp_site": {
+ "name": "Camp Site",
+ "terms": "camping"
+ },
+ "tourism/caravan_site": {
+ "name": "RV Park",
+ "terms": ""
+ },
+ "tourism/chalet": {
+ "name": "Chalet",
+ "terms": ""
+ },
+ "tourism/guest_house": {
+ "name": "Guest House",
+ "terms": "B&B,Bed & Breakfast,Bed and Breakfast"
+ },
+ "tourism/hostel": {
+ "name": "Hostel",
+ "terms": ""
+ },
+ "tourism/hotel": {
+ "name": "Hotel",
+ "terms": ""
+ },
+ "tourism/information": {
+ "name": "Information",
+ "terms": ""
+ },
+ "tourism/motel": {
+ "name": "Motel",
+ "terms": ""
+ },
+ "tourism/museum": {
+ "name": "Museum",
+ "terms": "exhibition,exhibits archive,foundation,gallery,hall,institution,library,menagerie,repository,salon,storehouse,treasury,vault"
+ },
+ "tourism/picnic_site": {
+ "name": "Picnic Site",
+ "terms": ""
+ },
+ "tourism/theme_park": {
+ "name": "Theme Park",
+ "terms": ""
+ },
+ "tourism/viewpoint": {
+ "name": "Viewpoint",
+ "terms": ""
+ },
+ "tourism/zoo": {
+ "name": "Zoo",
+ "terms": ""
+ },
+ "type/boundary": {
+ "name": "Boundary",
+ "terms": ""
+ },
+ "type/boundary/administrative": {
+ "name": "Administrative Boundary",
+ "terms": ""
+ },
+ "type/multipolygon": {
+ "name": "Multipolygon",
+ "terms": ""
+ },
+ "type/restriction": {
+ "name": "Restriction",
+ "terms": ""
+ },
+ "type/route": {
+ "name": "Route",
+ "terms": ""
+ },
+ "type/route/bicycle": {
+ "name": "Cycle Route",
+ "terms": ""
+ },
+ "type/route/bus": {
+ "name": "Bus Route",
+ "terms": ""
+ },
+ "type/route/detour": {
+ "name": "Detour Route",
+ "terms": ""
+ },
+ "type/route/ferry": {
+ "name": "Ferry Route",
+ "terms": ""
+ },
+ "type/route/foot": {
+ "name": "Foot Route",
+ "terms": ""
+ },
+ "type/route/hiking": {
+ "name": "Hiking Route",
+ "terms": ""
+ },
+ "type/route/pipeline": {
+ "name": "Pipeline Route",
+ "terms": ""
+ },
+ "type/route/power": {
+ "name": "Power Route",
+ "terms": ""
+ },
+ "type/route/road": {
+ "name": "Road Route",
+ "terms": ""
+ },
+ "type/route/train": {
+ "name": "Train Route",
+ "terms": ""
+ },
+ "type/route/tram": {
+ "name": "Tram Route",
+ "terms": ""
+ },
+ "type/route_master": {
+ "name": "Route Master",
+ "terms": ""
+ },
+ "vertex": {
+ "name": "Other",
+ "terms": ""
+ },
+ "waterway": {
+ "name": "Waterway",
+ "terms": ""
+ },
+ "waterway/canal": {
+ "name": "Canal",
+ "terms": ""
+ },
+ "waterway/dam": {
+ "name": "Dam",
+ "terms": ""
+ },
+ "waterway/ditch": {
+ "name": "Ditch",
+ "terms": ""
+ },
+ "waterway/drain": {
+ "name": "Drain",
+ "terms": ""
+ },
+ "waterway/river": {
+ "name": "River",
+ "terms": "beck,branch,brook,course,creek,estuary,rill,rivulet,run,runnel,stream,tributary,watercourse"
+ },
+ "waterway/riverbank": {
+ "name": "Riverbank",
+ "terms": ""
+ },
+ "waterway/stream": {
+ "name": "Stream",
+ "terms": "beck,branch,brook,burn,course,creek,current,drift,flood,flow,freshet,race,rill,rindle,rivulet,run,runnel,rush,spate,spritz,surge,tide,torrent,tributary,watercourse"
+ },
+ "waterway/weir": {
+ "name": "Weir",
+ "terms": ""
+ }
+ }
}
},
- "operations": {
- "icon-operation-delete": [
- 0,
- 140
- ],
- "icon-operation-circularize": [
- 20,
- 140
- ],
- "icon-operation-straighten": [
- 40,
- 140
- ],
- "icon-operation-split": [
- 60,
- 140
- ],
- "icon-operation-disconnect": [
- 80,
- 140
- ],
- "icon-operation-reverse": [
- 100,
- 140
- ],
- "icon-operation-move": [
- 120,
- 140
- ],
- "icon-operation-merge": [
- 140,
- 140
- ],
- "icon-operation-orthogonalize": [
- 160,
- 140
- ],
- "icon-operation-rotate": [
- 180,
- 140
- ],
- "icon-operation-simplify": [
- 200,
- 140
- ],
- "icon-operation-continue": [
- 220,
- 140
- ],
- "icon-operation-disabled-delete": [
- 0,
- 160
- ],
- "icon-operation-disabled-circularize": [
- 20,
- 160
- ],
- "icon-operation-disabled-straighten": [
- 40,
- 160
- ],
- "icon-operation-disabled-split": [
- 60,
- 160
- ],
- "icon-operation-disabled-disconnect": [
- 80,
- 160
- ],
- "icon-operation-disabled-reverse": [
- 100,
- 160
- ],
- "icon-operation-disabled-move": [
- 120,
- 160
- ],
- "icon-operation-disabled-merge": [
- 140,
- 160
- ],
- "icon-operation-disabled-orthogonalize": [
- 160,
- 160
- ],
- "icon-operation-disabled-rotate": [
- 180,
- 160
- ],
- "icon-operation-disabled-simplify": [
- 200,
- 160
- ],
- "icon-operation-disabled-continue": [
- 220,
- 160
- ]
- },
- "locales": [
- "af",
- "ar",
- "ar-AA",
- "ast",
- "bn",
- "bs",
- "bg-BG",
- "ca",
- "zh",
- "zh-CN",
- "zh-CN.GB2312",
- "zh-TW",
- "hr",
- "cs",
- "da",
- "nl",
- "en-GB",
- "et",
- "fi",
- "fr",
- "de",
- "el",
- "hu",
- "is",
- "id",
- "it",
- "ja",
- "ko",
- "lv",
- "lt",
- "no",
- "nn",
- "fa",
- "pl",
- "pt",
- "pt-BR",
- "ru",
- "sc",
- "sr",
- "sr-RS",
- "sk",
- "sl",
- "es",
- "sv",
- "te",
- "tr",
- "uk",
- "vi"
- ],
- "en": {
- "modes": {
- "add_area": {
- "title": "Area",
- "description": "Add parks, buildings, lakes or other areas to the map.",
- "tail": "Click on the map to start drawing an area, like a park, lake, or building."
+ "suggestions": {
+ "amenity": {
+ "bank": {
+ "ABN AMRO": {
+ "count": 129
+ },
+ "ABSA": {
+ "count": 88
+ },
+ "AIB": {
+ "count": 71
+ },
+ "ANZ": {
+ "count": 199
+ },
+ "AXA": {
+ "count": 66
+ },
+ "Alior Bank": {
+ "count": 71
+ },
+ "Allied Bank": {
+ "count": 115
+ },
+ "Alpha Bank": {
+ "count": 94
+ },
+ "Argenta": {
+ "count": 84
+ },
+ "Axis Bank": {
+ "count": 52
+ },
+ "BAWAG PSK": {
+ "count": 105
+ },
+ "BB&T": {
+ "count": 126
+ },
+ "BBK": {
+ "count": 69
+ },
+ "BBVA": {
+ "count": 574
+ },
+ "BCI": {
+ "count": 57
+ },
+ "BCR": {
+ "count": 137
+ },
+ "BDO": {
+ "count": 275
+ },
+ "BES": {
+ "count": 68
+ },
+ "BMO": {
+ "count": 160
+ },
+ "BNL": {
+ "count": 78
+ },
+ "BNP": {
+ "count": 109
+ },
+ "BNP Paribas": {
+ "count": 574
+ },
+ "BNP Paribas Fortis": {
+ "count": 204
+ },
+ "BPI": {
+ "count": 393
+ },
+ "BRD": {
+ "count": 179
+ },
+ "BW-Bank": {
+ "count": 97
+ },
+ "BZ WBK": {
+ "count": 65
+ },
+ "Banamex": {
+ "count": 130
+ },
+ "Banca Intesa": {
+ "count": 58
+ },
+ "Banca Popolare di Novara": {
+ "count": 51
+ },
+ "Banca Popolare di Vicenza": {
+ "count": 67
+ },
+ "Banca Transilvania": {
+ "count": 131
+ },
+ "Bancaja": {
+ "count": 58
+ },
+ "Banco BCI": {
+ "count": 51
+ },
+ "Banco Estado": {
+ "count": 67
+ },
+ "Banco G&T Continental": {
+ "count": 62
+ },
+ "Banco Itaú": {
+ "count": 82
+ },
+ "Banco Nación": {
+ "count": 59
+ },
+ "Banco Pastor": {
+ "count": 62
+ },
+ "Banco Popular": {
+ "count": 262
+ },
+ "Banco Provincia": {
+ "count": 62
+ },
+ "Banco Santander": {
+ "count": 91
+ },
+ "Banco de Chile": {
+ "count": 95
+ },
+ "Banco de Costa Rica": {
+ "count": 64
+ },
+ "Banco de Desarrollo Banrural": {
+ "count": 74
+ },
+ "Banco de la Nación": {
+ "count": 93
+ },
+ "Banco do Brasil": {
+ "count": 440
+ },
+ "BancoEstado": {
+ "count": 79
+ },
+ "Bancolombia": {
+ "count": 85
+ },
+ "Bancomer": {
+ "count": 96
+ },
+ "Bancpost": {
+ "count": 51
+ },
+ "Banesco": {
+ "count": 86
+ },
+ "Banesto": {
+ "count": 198
+ },
+ "Bank Austria": {
+ "count": 174
+ },
+ "Bank Mandiri": {
+ "count": 56
+ },
+ "Bank SpóÅdzielczy": {
+ "count": 142
+ },
+ "Bank of America": {
+ "count": 836
+ },
+ "Bank of Ireland": {
+ "count": 109
+ },
+ "Bank of Montreal": {
+ "count": 111
+ },
+ "Bank of Scotland": {
+ "count": 85
+ },
+ "Bank of the West": {
+ "count": 86
+ },
+ "Bankia": {
+ "count": 108
+ },
+ "Bankinter": {
+ "count": 54
+ },
+ "Banorte": {
+ "count": 65
+ },
+ "Banque Nationale": {
+ "count": 56
+ },
+ "Banque Populaire": {
+ "count": 399
+ },
+ "Barclays": {
+ "count": 925
+ },
+ "Belfius": {
+ "count": 219
+ },
+ "Bendigo Bank": {
+ "count": 88
+ },
+ "Berliner Sparkasse": {
+ "count": 61
+ },
+ "Berliner Volksbank": {
+ "count": 79
+ },
+ "Bicentenario": {
+ "count": 183
+ },
+ "Bradesco": {
+ "count": 236
+ },
+ "CIBC": {
+ "count": 306
+ },
+ "CIC": {
+ "count": 393
+ },
+ "Caisse d'Ãpargne": {
+ "count": 801
+ },
+ "Caixa": {
+ "count": 99
+ },
+ "Caixa Econômica Federal": {
+ "count": 131
+ },
+ "Caixa Geral de Depósitos": {
+ "count": 119
+ },
+ "Caja CÃrculo": {
+ "count": 65
+ },
+ "Caja Duero": {
+ "count": 58
+ },
+ "Caja Madrid": {
+ "count": 115
+ },
+ "Caja Rural": {
+ "count": 87
+ },
+ "Caja de Burgos": {
+ "count": 58
+ },
+ "Cajamar": {
+ "count": 61
+ },
+ "Cajero Automatico Bancared": {
+ "count": 147
+ },
+ "Canara Bank": {
+ "count": 82
+ },
+ "Cassa di Risparmio del Veneto": {
+ "count": 58
+ },
+ "Chase": {
+ "count": 623
+ },
+ "China Bank": {
+ "count": 59
+ },
+ "Chinabank": {
+ "count": 54
+ },
+ "Citibank": {
+ "count": 249
+ },
+ "Citizens Bank": {
+ "count": 107
+ },
+ "CityCommerce Bank": {
+ "count": 53
+ },
+ "Commercial Bank of Ceylon PLC": {
+ "count": 80
+ },
+ "Commerzbank": {
+ "count": 799
+ },
+ "Commonwealth Bank": {
+ "count": 218
+ },
+ "Credit Agricole": {
+ "count": 143
+ },
+ "Credit Suisse": {
+ "count": 69
+ },
+ "Crédit Agricole": {
+ "count": 1160
+ },
+ "Crédit Mutuel": {
+ "count": 648
+ },
+ "Crédit Mutuel de Bretagne": {
+ "count": 335
+ },
+ "Crédit du Nord": {
+ "count": 88
+ },
+ "Danske Bank": {
+ "count": 130
+ },
+ "Davivienda": {
+ "count": 83
+ },
+ "De Venezuela": {
+ "count": 127
+ },
+ "Del Tesoro": {
+ "count": 94
+ },
+ "Deutsche Bank": {
+ "count": 836
+ },
+ "Dresdner Bank": {
+ "count": 77
+ },
+ "Ecobank": {
+ "count": 54
+ },
+ "Erste Bank": {
+ "count": 178
+ },
+ "Eurobank": {
+ "count": 89
+ },
+ "FNB": {
+ "count": 90
+ },
+ "Fifth Third Bank": {
+ "count": 66
+ },
+ "First National Bank": {
+ "count": 76
+ },
+ "GE Money Bank": {
+ "count": 72
+ },
+ "HDFC Bank": {
+ "count": 85
+ },
+ "HSBC": {
+ "count": 1039
+ },
+ "Halifax": {
+ "count": 214
+ },
+ "Hamburger Sparkasse": {
+ "count": 157
+ },
+ "Handelsbanken": {
+ "count": 178
+ },
+ "HypoVereinsbank": {
+ "count": 570
+ },
+ "ICICI Bank": {
+ "count": 78
+ },
+ "ING": {
+ "count": 468
+ },
+ "ING Bank ÅlÄ
ski": {
+ "count": 64
+ },
+ "Ibercaja": {
+ "count": 58
+ },
+ "Intesa San Paolo": {
+ "count": 60
+ },
+ "Itaú": {
+ "count": 278
+ },
+ "KBC": {
+ "count": 194
+ },
+ "Key Bank": {
+ "count": 139
+ },
+ "KomerÄnà banka": {
+ "count": 136
+ },
+ "Kreissparkasse": {
+ "count": 579
+ },
+ "Kreissparkasse Köln": {
+ "count": 67
+ },
+ "LCL": {
+ "count": 508
+ },
+ "La Banque Postale": {
+ "count": 61
+ },
+ "La Caixa": {
+ "count": 513
+ },
+ "Landbank": {
+ "count": 79
+ },
+ "Lloyds Bank": {
+ "count": 541
+ },
+ "M&T Bank": {
+ "count": 80
+ },
+ "Maybank": {
+ "count": 81
+ },
+ "Mercantil": {
+ "count": 220
+ },
+ "Metrobank": {
+ "count": 253
+ },
+ "Millenium Bank": {
+ "count": 60
+ },
+ "Millennium Bank": {
+ "count": 415
+ },
+ "Monte dei Paschi di Siena": {
+ "count": 126
+ },
+ "NAB": {
+ "count": 123
+ },
+ "NatWest": {
+ "count": 606
+ },
+ "National Bank": {
+ "count": 87
+ },
+ "Nationwide": {
+ "count": 193
+ },
+ "Nedbank": {
+ "count": 74
+ },
+ "Nordea": {
+ "count": 312
+ },
+ "OLB": {
+ "count": 52
+ },
+ "OTP": {
+ "count": 184
+ },
+ "Oberbank": {
+ "count": 87
+ },
+ "Oldenburgische Landesbank": {
+ "count": 56
+ },
+ "Osuuspankki": {
+ "count": 74
+ },
+ "PKO BP": {
+ "count": 239
+ },
+ "PNB": {
+ "count": 106
+ },
+ "PNC Bank": {
+ "count": 215
+ },
+ "PSBank": {
+ "count": 57
+ },
+ "Pekao SA": {
+ "count": 53
+ },
+ "Peoples Bank": {
+ "count": 55
+ },
+ "Postbank": {
+ "count": 433
+ },
+ "RBC": {
+ "count": 220
+ },
+ "RBS": {
+ "count": 136
+ },
+ "RCBC": {
+ "count": 117
+ },
+ "Rabobank": {
+ "count": 619
+ },
+ "Raiffeisenbank": {
+ "count": 2028
+ },
+ "Regions Bank": {
+ "count": 59
+ },
+ "Royal Bank": {
+ "count": 65
+ },
+ "Royal Bank of Scotland": {
+ "count": 108
+ },
+ "SEB": {
+ "count": 129
+ },
+ "Santander": {
+ "count": 1181
+ },
+ "Santander Consumer Bank": {
+ "count": 81
+ },
+ "Santander Totta": {
+ "count": 63
+ },
+ "Sberbank": {
+ "count": 61
+ },
+ "Scotiabank": {
+ "count": 379
+ },
+ "Security Bank": {
+ "count": 71
+ },
+ "Slovenská sporiteľÅa": {
+ "count": 127
+ },
+ "Société Générale": {
+ "count": 592
+ },
+ "Sparda-Bank": {
+ "count": 313
+ },
+ "Sparkasse": {
+ "count": 4521
+ },
+ "Sparkasse Aachen": {
+ "count": 58
+ },
+ "Sparkasse KölnBonn": {
+ "count": 55
+ },
+ "Stadtsparkasse": {
+ "count": 86
+ },
+ "Standard Bank": {
+ "count": 100
+ },
+ "State Bank of India": {
+ "count": 132
+ },
+ "SunTrust": {
+ "count": 63
+ },
+ "SunTrust Bank": {
+ "count": 66
+ },
+ "Swedbank": {
+ "count": 219
+ },
+ "TD Bank": {
+ "count": 178
+ },
+ "TD Canada Trust": {
+ "count": 421
+ },
+ "TSB": {
+ "count": 51
+ },
+ "Targobank": {
+ "count": 167
+ },
+ "Tatra banka": {
+ "count": 65
+ },
+ "UBS": {
+ "count": 129
+ },
+ "UCPB": {
+ "count": 87
+ },
+ "US Bank": {
+ "count": 214
+ },
+ "Ulster Bank": {
+ "count": 85
+ },
+ "UniCredit Bank": {
+ "count": 376
+ },
+ "Unicredit Banca": {
+ "count": 224
+ },
+ "Unicaja": {
+ "count": 74
+ },
+ "Union Bank": {
+ "count": 110
+ },
+ "VR-Bank": {
+ "count": 421
+ },
+ "Volksbank": {
+ "count": 2573
+ },
+ "VÃB": {
+ "count": 108
+ },
+ "Wachovia": {
+ "count": 61
+ },
+ "Wells Fargo": {
+ "count": 781
+ },
+ "Western Union": {
+ "count": 84
+ },
+ "Westpac": {
+ "count": 194
+ },
+ "Yorkshire Bank": {
+ "count": 60
+ },
+ "ÄSOB": {
+ "count": 157
+ },
+ "Äeská spoÅitelna": {
+ "count": 207
+ },
+ "ÐлÑÑа-Ðанк": {
+ "count": 183
+ },
+ "Ðанк ÐоÑквÑ": {
+ "count": 116
+ },
+ "ÐелагÑопÑомбанк": {
+ "count": 66
+ },
+ "ÐелаÑÑÑбанк": {
+ "count": 223
+ },
+ "ÐТÐ": {
+ "count": 54
+ },
+ "ÐТÐ24": {
+ "count": 298
+ },
+ "ÐозÑождение": {
+ "count": 56
+ },
+ "ÐазпÑомбанк": {
+ "count": 93
+ },
+ "ÐÑадбанк": {
+ "count": 292
+ },
+ "ÐÑиваÑÐанк": {
+ "count": 480
+ },
+ "ÐÑомÑвÑзÑбанк": {
+ "count": 86
+ },
+ "РайÑÑайзен Ðанк ÐвалÑ": {
+ "count": 57
+ },
+ "РоÑбанк": {
+ "count": 172
+ },
+ "РоÑÑелÑÑ
озбанк": {
+ "count": 181
+ },
+ "СбеÑбанк": {
+ "count": 4579
+ },
+ "Совкомбанк": {
+ "count": 51
+ },
+ "УкÑСиббанк": {
+ "count": 125
+ },
+ "УÑалÑиб": {
+ "count": 83
+ },
+ "ááááá áá ááááá (Liberty Bank)": {
+ "count": 55
+ },
+ "ã¿ãã»éè¡": {
+ "count": 68
+ },
+ "ãããªéè¡": {
+ "count": 227
+ },
+ "ä¸äºä½åéè¡": {
+ "count": 122
+ },
+ "ä¸è±æ±äº¬UFJéè¡": {
+ "count": 149
+ },
+ "ä¸å½é¶è¡": {
+ "count": 65
+ },
+ "ê´ì£¼ìí (Gwangju Bank)": {
+ "count": 55
+ },
+ "êµë¯¼ìí": {
+ "count": 167
+ },
+ "ëí": {
+ "count": 51
+ },
+ "ì íìí": {
+ "count": 218
+ },
+ "ì°ë¦¬ìí": {
+ "count": 293
+ },
+ "ì¤ì기ì
ìí (Industrial Bank of Korea)": {
+ "count": 53
+ },
+ "íëìí": {
+ "count": 78
+ }
},
- "add_line": {
- "title": "Line",
- "description": "Add highways, streets, pedestrian paths, canals or other lines to the map.",
- "tail": "Click on the map to start drawing a road, path, or route."
+ "cafe": {
+ "Cafe Amazon": {
+ "count": 51
+ },
+ "Cafe Coffee Day": {
+ "count": 103
+ },
+ "Cafeteria": {
+ "count": 69
+ },
+ "Caffè Nero": {
+ "count": 159
+ },
+ "Café Central": {
+ "count": 58
+ },
+ "Caribou Coffee": {
+ "count": 92
+ },
+ "Coffee Time": {
+ "count": 94
+ },
+ "Costa": {
+ "count": 548
+ },
+ "Dunkin Donuts": {
+ "count": 365
+ },
+ "Eiscafe": {
+ "count": 115
+ },
+ "Eiscafe Venezia": {
+ "count": 176
+ },
+ "Eisdiele": {
+ "count": 64
+ },
+ "Panera Bread": {
+ "count": 72
+ },
+ "Pret A Manger": {
+ "count": 115
+ },
+ "Second Cup": {
+ "count": 170
+ },
+ "Segafredo": {
+ "count": 67
+ },
+ "Starbucks": {
+ "count": 3837
+ },
+ "Subway": {
+ "count": 61
+ },
+ "Tchibo": {
+ "count": 91
+ },
+ "Tim Hortons": {
+ "count": 940
+ },
+ "Traveler's Coffee": {
+ "count": 59
+ },
+ "ÐаÑе": {
+ "count": 244
+ },
+ "ÐоÑе ХаÑз": {
+ "count": 99
+ },
+ "СÑоловаÑ": {
+ "count": 320
+ },
+ "ШаÑлÑÑнаÑ": {
+ "count": 51
+ },
+ "ШоколадниÑа": {
+ "count": 124
+ },
+ "à¸à¸²à¹à¸à¹ à¸à¹à¸¡à¸à¸à¸": {
+ "count": 63
+ },
+ "ã«ãã§ã»ãã»ã¯ãªã¨ (Cafe de CRIE)": {
+ "count": 68
+ },
+ "ã¹ã¿ã¼ããã¯ã¹": {
+ "count": 54,
+ "name:en": "Starbucks"
+ },
+ "ã¹ã¿ã¼ããã¯ã¹ (Starbucks)": {
+ "count": 191
+ },
+ "ããã¼ã«": {
+ "count": 163
+ }
},
- "add_point": {
- "title": "Point",
- "description": "Add restaurants, monuments, postal boxes or other points to the map.",
- "tail": "Click on the map to add a point."
+ "car_rental": {
+ "Avis": {
+ "count": 263
+ },
+ "Budget": {
+ "count": 81
+ },
+ "Enterprise": {
+ "count": 173
+ },
+ "Europcar": {
+ "count": 271
+ },
+ "Hertz": {
+ "count": 276
+ },
+ "Sixt": {
+ "count": 150
+ },
+ "stadtmobil CarSharing-Station": {
+ "count": 162
+ }
},
- "browse": {
- "title": "Browse",
- "description": "Pan and zoom the map."
+ "fast_food": {
+ "A&W": {
+ "count": 255
+ },
+ "Ali Baba": {
+ "count": 57
+ },
+ "Arby's": {
+ "count": 714
+ },
+ "Asia Imbiss": {
+ "count": 103
+ },
+ "Baskin Robbins": {
+ "count": 69
+ },
+ "Boston Market": {
+ "count": 57
+ },
+ "Burger King": {
+ "count": 3449
+ },
+ "Carl's Jr.": {
+ "count": 272
+ },
+ "Chick-fil-A": {
+ "count": 214
+ },
+ "Chipotle": {
+ "count": 260
+ },
+ "Chowking": {
+ "count": 138
+ },
+ "Church's Chicken": {
+ "count": 86
+ },
+ "Culver's": {
+ "count": 427
+ },
+ "Dairy Queen": {
+ "count": 722
+ },
+ "Del Taco": {
+ "count": 137
+ },
+ "Domino's Pizza": {
+ "count": 896
+ },
+ "Dunkin Donuts": {
+ "count": 411
+ },
+ "Döner": {
+ "count": 221
+ },
+ "El Pollo Loco": {
+ "count": 61
+ },
+ "Fish & Chips": {
+ "count": 82
+ },
+ "Five Guys": {
+ "count": 124
+ },
+ "Greggs": {
+ "count": 77
+ },
+ "Hallo Pizza": {
+ "count": 76
+ },
+ "Hardee's": {
+ "count": 242
+ },
+ "Harvey's": {
+ "count": 83
+ },
+ "Hesburger": {
+ "count": 97
+ },
+ "Hungry Jacks": {
+ "count": 163
+ },
+ "Imbiss": {
+ "count": 181
+ },
+ "In-N-Out Burger": {
+ "count": 58
+ },
+ "Istanbul": {
+ "count": 52
+ },
+ "Jack in the Box": {
+ "count": 517
+ },
+ "Jamba Juice": {
+ "count": 60
+ },
+ "Jimmy John's": {
+ "count": 119
+ },
+ "Jollibee": {
+ "count": 384
+ },
+ "KFC": {
+ "count": 2975
+ },
+ "Kebab": {
+ "count": 167
+ },
+ "Kochlöffel": {
+ "count": 69
+ },
+ "Kotipizza": {
+ "count": 75
+ },
+ "Little Caesars": {
+ "count": 61
+ },
+ "Long John Silver's": {
+ "count": 76
+ },
+ "Mang Inasal": {
+ "count": 66
+ },
+ "McDonald's": {
+ "count": 11760
+ },
+ "Mr. Sub": {
+ "count": 108
+ },
+ "Nando's": {
+ "count": 58
+ },
+ "Nordsee": {
+ "count": 159
+ },
+ "Panda Express": {
+ "count": 212
+ },
+ "Panera Bread": {
+ "count": 59
+ },
+ "Papa John's": {
+ "count": 274
+ },
+ "Pizza Express": {
+ "count": 65
+ },
+ "Pizza Hut": {
+ "count": 1010
+ },
+ "Pizza Nova": {
+ "count": 57
+ },
+ "Pizza Pizza": {
+ "count": 202
+ },
+ "Pollo Campero": {
+ "count": 63
+ },
+ "Popeye's": {
+ "count": 147
+ },
+ "Quick": {
+ "count": 484
+ },
+ "Quiznos": {
+ "count": 262
+ },
+ "Red Rooster": {
+ "count": 145
+ },
+ "Sibylla": {
+ "count": 61
+ },
+ "Sonic": {
+ "count": 506
+ },
+ "Steers": {
+ "count": 139
+ },
+ "Subway": {
+ "count": 5113
+ },
+ "Taco Bell": {
+ "count": 1257
+ },
+ "Taco John's": {
+ "count": 64
+ },
+ "Taco Time": {
+ "count": 82
+ },
+ "Telepizza": {
+ "count": 188
+ },
+ "Tim Hortons": {
+ "count": 292
+ },
+ "Wendy's": {
+ "count": 1487
+ },
+ "Whataburger": {
+ "count": 147
+ },
+ "White Castle": {
+ "count": 74
+ },
+ "Wimpy": {
+ "count": 136
+ },
+ "ÐакдоналдÑ": {
+ "count": 309,
+ "name:en": "McDonald's"
+ },
+ "Робин Сдобин": {
+ "count": 72
+ },
+ "Ð ÑÑÑкий ÐппеÑиÑ": {
+ "count": 65
+ },
+ "СÑоловаÑ": {
+ "count": 189
+ },
+ "ТеÑемок": {
+ "count": 63
+ },
+ "ãã家": {
+ "count": 245
+ },
+ "ãªãå¯": {
+ "count": 52
+ },
+ "ã±ã³ã¿ããã¼ãã©ã¤ãããã³": {
+ "count": 54,
+ "name:en": "KFC"
+ },
+ "ã±ã³ã¿ããã¼ãã©ã¤ãããã³ (Kentucky Fried Chicken)": {
+ "count": 104
+ },
+ "ãã¯ããã«ã": {
+ "count": 632,
+ "name:en": "McDonald's"
+ },
+ "ã¢ã¹ãã¼ã¬ã¼": {
+ "count": 237
+ },
+ "åé家": {
+ "count": 172
+ },
+ "æ¾å±": {
+ "count": 224
+ },
+ "è¯å¾·åº": {
+ "count": 81
+ },
+ "麥ç¶å": {
+ "count": 51
+ }
},
- "draw_area": {
- "tail": "Click to add nodes to your area. Click the first node to finish the area."
+ "fuel": {
+ "76": {
+ "count": 282
+ },
+ "1-2-3": {
+ "count": 71
+ },
+ "7-Eleven": {
+ "count": 422
+ },
+ "ABC": {
+ "count": 80
+ },
+ "Agip": {
+ "count": 2654
+ },
+ "ANP": {
+ "count": 65
+ },
+ "ARAL": {
+ "count": 371
+ },
+ "AVIA": {
+ "count": 257
+ },
+ "Afriquia": {
+ "count": 90
+ },
+ "Agrola": {
+ "count": 72
+ },
+ "Api": {
+ "count": 313
+ },
+ "Aral": {
+ "count": 1334
+ },
+ "Arco": {
+ "count": 153
+ },
+ "Auchan": {
+ "count": 52
+ },
+ "Avanti": {
+ "count": 92
+ },
+ "Avia": {
+ "count": 614
+ },
+ "BFT": {
+ "count": 88
+ },
+ "BP": {
+ "count": 2330
+ },
+ "BR": {
+ "count": 81
+ },
+ "Benzina": {
+ "count": 70
+ },
+ "Bliska": {
+ "count": 149
+ },
+ "C. C. E. Leclerc": {
+ "count": 84
+ },
+ "CAMPSA": {
+ "count": 630
+ },
+ "CARREFOUR": {
+ "count": 75
+ },
+ "CEPSA": {
+ "count": 1020
+ },
+ "COSMO": {
+ "count": 65
+ },
+ "Caltex": {
+ "count": 948
+ },
+ "Canadian Tire": {
+ "count": 63
+ },
+ "Carrefour": {
+ "count": 196
+ },
+ "Casey's General Store": {
+ "count": 162
+ },
+ "Cenex": {
+ "count": 106
+ },
+ "Cepsa": {
+ "count": 75
+ },
+ "Chevron": {
+ "count": 825
+ },
+ "Circle K": {
+ "count": 149
+ },
+ "Citgo": {
+ "count": 246
+ },
+ "Coles Express": {
+ "count": 99
+ },
+ "Conoco": {
+ "count": 169
+ },
+ "Coop": {
+ "count": 55
+ },
+ "Copec": {
+ "count": 496
+ },
+ "E.Leclerc": {
+ "count": 250
+ },
+ "EKO": {
+ "count": 61
+ },
+ "ENEOS": {
+ "count": 644
+ },
+ "ERG": {
+ "count": 74
+ },
+ "Esso": {
+ "count": 3566
+ },
+ "Eko": {
+ "count": 58
+ },
+ "Elan": {
+ "count": 114
+ },
+ "Elf": {
+ "count": 138
+ },
+ "Eneos": {
+ "count": 97
+ },
+ "Engen": {
+ "count": 224
+ },
+ "Eni": {
+ "count": 199
+ },
+ "Erg": {
+ "count": 609
+ },
+ "Esso Express": {
+ "count": 81
+ },
+ "Exxon": {
+ "count": 435
+ },
+ "Flying V": {
+ "count": 130
+ },
+ "Freie Tankstelle": {
+ "count": 210
+ },
+ "GALP": {
+ "count": 582
+ },
+ "Gulf": {
+ "count": 184
+ },
+ "HEM": {
+ "count": 216
+ },
+ "HP": {
+ "count": 59
+ },
+ "Hess": {
+ "count": 110
+ },
+ "Holiday": {
+ "count": 96
+ },
+ "Husky": {
+ "count": 115
+ },
+ "IDEMITSU": {
+ "count": 79
+ },
+ "IES": {
+ "count": 62
+ },
+ "INA": {
+ "count": 118
+ },
+ "IP": {
+ "count": 830
+ },
+ "Indian Oil": {
+ "count": 134
+ },
+ "Indipend.": {
+ "count": 178
+ },
+ "Intermarché": {
+ "count": 417
+ },
+ "Ipiranga": {
+ "count": 79
+ },
+ "Irving": {
+ "count": 79
+ },
+ "JET": {
+ "count": 177
+ },
+ "JOMO": {
+ "count": 65
+ },
+ "Jet": {
+ "count": 439
+ },
+ "Kum & Go": {
+ "count": 76
+ },
+ "Kwik Trip": {
+ "count": 100
+ },
+ "LPG": {
+ "count": 151
+ },
+ "Lotos": {
+ "count": 168
+ },
+ "Lukoil": {
+ "count": 667
+ },
+ "MEROIL": {
+ "count": 80
+ },
+ "MOL": {
+ "count": 216
+ },
+ "Marathon": {
+ "count": 154
+ },
+ "Metano": {
+ "count": 205
+ },
+ "Migrol": {
+ "count": 66
+ },
+ "Mobil": {
+ "count": 564
+ },
+ "Mol": {
+ "count": 58
+ },
+ "Morrisons": {
+ "count": 104
+ },
+ "Neste": {
+ "count": 197
+ },
+ "Neste A24": {
+ "count": 58
+ },
+ "OIL!": {
+ "count": 57
+ },
+ "OK": {
+ "count": 159
+ },
+ "OKKO": {
+ "count": 56
+ },
+ "OKQ8": {
+ "count": 186
+ },
+ "OMV": {
+ "count": 718
+ },
+ "Oilibya": {
+ "count": 65
+ },
+ "Orlen": {
+ "count": 541
+ },
+ "Pemex": {
+ "count": 357
+ },
+ "PETRONOR": {
+ "count": 209
+ },
+ "PTT": {
+ "count": 175
+ },
+ "Pertamina": {
+ "count": 176
+ },
+ "Petro-Canada": {
+ "count": 466
+ },
+ "Petrobras": {
+ "count": 256
+ },
+ "Petrom": {
+ "count": 253
+ },
+ "Petron": {
+ "count": 824
+ },
+ "Petronas": {
+ "count": 143
+ },
+ "Phillips 66": {
+ "count": 193
+ },
+ "Phoenix": {
+ "count": 138
+ },
+ "Q8": {
+ "count": 1137
+ },
+ "QuikTrip": {
+ "count": 84
+ },
+ "REPSOL": {
+ "count": 1610
+ },
+ "Raiffeisenbank": {
+ "count": 118
+ },
+ "Repsol": {
+ "count": 390
+ },
+ "Rompetrol": {
+ "count": 161
+ },
+ "Shell": {
+ "count": 7936
+ },
+ "Sainsbury's": {
+ "count": 55
+ },
+ "Sasol": {
+ "count": 55
+ },
+ "Sheetz": {
+ "count": 95
+ },
+ "Shell Express": {
+ "count": 133
+ },
+ "Sinclair": {
+ "count": 78
+ },
+ "Slovnaft": {
+ "count": 217
+ },
+ "Sokimex": {
+ "count": 59
+ },
+ "Speedway": {
+ "count": 124
+ },
+ "St1": {
+ "count": 100
+ },
+ "Stacja paliw": {
+ "count": 84
+ },
+ "Star": {
+ "count": 316
+ },
+ "Total": {
+ "count": 2498
+ },
+ "Statoil": {
+ "count": 588
+ },
+ "Stewart's": {
+ "count": 62
+ },
+ "Sunoco": {
+ "count": 307
+ },
+ "Super U": {
+ "count": 122
+ },
+ "Tamoil": {
+ "count": 864
+ },
+ "Tango": {
+ "count": 119
+ },
+ "Tankstelle": {
+ "count": 114
+ },
+ "Teboil": {
+ "count": 119
+ },
+ "Tela": {
+ "count": 113
+ },
+ "Terpel": {
+ "count": 255
+ },
+ "Tesco": {
+ "count": 192
+ },
+ "Texaco": {
+ "count": 645
+ },
+ "Tinq": {
+ "count": 218
+ },
+ "Topaz": {
+ "count": 78
+ },
+ "TotalErg": {
+ "count": 71
+ },
+ "Turmöl": {
+ "count": 57
+ },
+ "Ultramar": {
+ "count": 119
+ },
+ "United": {
+ "count": 83
+ },
+ "Valero": {
+ "count": 328
+ },
+ "WOG": {
+ "count": 139
+ },
+ "Wawa": {
+ "count": 78
+ },
+ "Westfalen": {
+ "count": 97
+ },
+ "YPF": {
+ "count": 141
+ },
+ "Z": {
+ "count": 76
+ },
+ "bft": {
+ "count": 168
+ },
+ "ÃMV": {
+ "count": 100
+ },
+ "ÐÐÐС": {
+ "count": 471
+ },
+ "ÐÐС": {
+ "count": 1012
+ },
+ "ÐаÑнеÑÑÑ": {
+ "count": 52
+ },
+ "ÐелоÑÑÑнеÑÑÑ": {
+ "count": 55
+ },
+ "ÐазпÑомнеÑÑÑ": {
+ "count": 727
+ },
+ "ÐÑкойл": {
+ "count": 1472
+ },
+ "ÐакпеÑÑол": {
+ "count": 110
+ },
+ "ÐÐ ÐлÑÑнÑ": {
+ "count": 89
+ },
+ "ÐÐÐÐ": {
+ "count": 112
+ },
+ "ÐÐÐ": {
+ "count": 57
+ },
+ "ÐТÐ": {
+ "count": 82
+ },
+ "ÐеÑÑол": {
+ "count": 82
+ },
+ "РоÑнеÑÑÑ": {
+ "count": 594
+ },
+ "СлавнеÑÑÑ": {
+ "count": 53
+ },
+ "СÑÑгÑÑнеÑÑегаз": {
+ "count": 60
+ },
+ "ТÐÐ": {
+ "count": 503
+ },
+ "ТаÑнеÑÑепÑодÑкÑ": {
+ "count": 55
+ },
+ "ТаÑнеÑÑÑ": {
+ "count": 250
+ },
+ "à¸à¸²à¸à¸à¸²à¸": {
+ "count": 60
+ },
+ "ภภà¸": {
+ "count": 154
+ },
+ "à¸à¸à¸": {
+ "count": 89
+ },
+ "ã³ã¹ã¢ç³æ²¹ (COSMO)": {
+ "count": 132
+ },
+ "åºå
": {
+ "count": 205
+ },
+ "æåã·ã§ã« (Showa-shell)": {
+ "count": 93
+ }
},
- "draw_line": {
- "tail": "Click to add more nodes to the line. Click on other lines to connect to them, and double-click to end the line."
- }
- },
- "operations": {
- "add": {
- "annotation": {
- "point": "Added a point.",
- "vertex": "Added a node to a way.",
- "relation": "Added a relation."
+ "pharmacy": {
+ "36,6": {
+ "count": 107
+ },
+ "Adler Apotheke": {
+ "count": 302
+ },
+ "Alte Apotheke": {
+ "count": 85
+ },
+ "Apotheke": {
+ "count": 167
+ },
+ "Apotheke am Markt": {
+ "count": 62
+ },
+ "Apteka": {
+ "count": 335
+ },
+ "Bahnhof-Apotheke": {
+ "count": 64
+ },
+ "Boots": {
+ "count": 809
+ },
+ "Brunnen-Apotheke": {
+ "count": 52
+ },
+ "Burg-Apotheke": {
+ "count": 56
+ },
+ "Bären-Apotheke": {
+ "count": 72
+ },
+ "CVS": {
+ "count": 1400
+ },
+ "Clicks": {
+ "count": 110
+ },
+ "Cruz Verde": {
+ "count": 96
+ },
+ "Engel-Apotheke": {
+ "count": 126
+ },
+ "EurovaistinÄ": {
+ "count": 60
+ },
+ "Farmacia Comunale": {
+ "count": 103
+ },
+ "Farmacias Ahumada": {
+ "count": 101
+ },
+ "Farmacias Cruz Verde": {
+ "count": 84
+ },
+ "Farmacias SalcoBrand": {
+ "count": 133
+ },
+ "Farmacity": {
+ "count": 62
+ },
+ "Farmahorro": {
+ "count": 61
+ },
+ "Farmatodo": {
+ "count": 133
+ },
+ "GintarinÄ vaistinÄ": {
+ "count": 100
+ },
+ "Hirsch-Apotheke": {
+ "count": 80
+ },
+ "Hubertus Apotheke": {
+ "count": 103
+ },
+ "Jean Coutu": {
+ "count": 56
+ },
+ "Kinney Drugs": {
+ "count": 67
+ },
+ "Linden-Apotheke": {
+ "count": 210
+ },
+ "Ljekarna": {
+ "count": 55
+ },
+ "Lloyds Pharmacy": {
+ "count": 286
+ },
+ "Löwen-Apotheke": {
+ "count": 354
+ },
+ "Marien-Apotheke": {
+ "count": 315
+ },
+ "Markt-Apotheke": {
+ "count": 161
+ },
+ "Mercury Drug": {
+ "count": 401
+ },
+ "Neue Apotheke": {
+ "count": 111
+ },
+ "Pharmacie Centrale": {
+ "count": 60
+ },
+ "Pharmaprix": {
+ "count": 57
+ },
+ "Pharmasave": {
+ "count": 63
+ },
+ "Rathaus-Apotheke": {
+ "count": 130
+ },
+ "Rats-Apotheke": {
+ "count": 85
+ },
+ "Rite Aid": {
+ "count": 659
+ },
+ "Rosen-Apotheke": {
+ "count": 208
+ },
+ "Rowlands Pharmacy": {
+ "count": 68
+ },
+ "SalcoBrand": {
+ "count": 88
+ },
+ "Shoppers Drug Mart": {
+ "count": 396
+ },
+ "Sonnen-Apotheke": {
+ "count": 306
+ },
+ "Stadt-Apotheke": {
+ "count": 300
+ },
+ "Stern-Apotheke": {
+ "count": 67
+ },
+ "Superdrug": {
+ "count": 108
+ },
+ "The Generics Pharmacy": {
+ "count": 82
+ },
+ "Walgreens": {
+ "count": 1447
+ },
+ "ÐйболиÑ": {
+ "count": 51
+ },
+ "ÐпÑека": {
+ "count": 1879
+ },
+ "ÐпÑека 36,6": {
+ "count": 113
+ },
+ "ÐпÑеÑнÑй пÑнкÑ": {
+ "count": 136
+ },
+ "ÐиÑа": {
+ "count": 107
+ },
+ "ÐмплозиÑ": {
+ "count": 59
+ },
+ "ÐлаÑÑика": {
+ "count": 66
+ },
+ "ÐевиÑ": {
+ "count": 58
+ },
+ "ÐеÑÐ²Ð°Ñ Ð¿Ð¾Ð¼Ð¾ÑÑ": {
+ "count": 73
+ },
+ "РадÑга": {
+ "count": 69
+ },
+ "Ригла": {
+ "count": 109
+ },
+ "ФаÑмакоÑ": {
+ "count": 71
+ },
+ "ФаÑмаÑиÑ": {
+ "count": 118
+ },
+ "ФаÑмленд": {
+ "count": 80
+ },
+ "апÑека": {
+ "count": 100
+ },
+ "áááá á¡á (Aversi)": {
+ "count": 63
+ },
+ "ãµã³ãã©ãã°": {
+ "count": 52
+ },
+ "ã¹ã®è¬å±": {
+ "count": 76
+ },
+ "ãã¢ãº (Tomod's)": {
+ "count": 82
+ },
+ "ãã©ãã°ã¦ããã¾ (Drug Terashima)": {
+ "count": 96
+ },
+ "ããã¢ããã¨ã·": {
+ "count": 107
+ }
+ },
+ "pub": {
+ "Cross Keys": {
+ "count": 59
+ },
+ "Irish Pub": {
+ "count": 82
+ },
+ "Kings Arms": {
+ "count": 68
+ },
+ "Kings Head": {
+ "count": 56
+ },
+ "New Inn": {
+ "count": 89
+ },
+ "Prince of Wales": {
+ "count": 76
+ },
+ "Red Lion": {
+ "count": 201
+ },
+ "Rose & Crown": {
+ "count": 51
+ },
+ "Rose and Crown": {
+ "count": 77
+ },
+ "Royal Hotel": {
+ "count": 52
+ },
+ "Royal Oak": {
+ "count": 149
+ },
+ "The Anchor": {
+ "count": 64
+ },
+ "The Angel": {
+ "count": 55
+ },
+ "The Bell": {
+ "count": 121
+ },
+ "The Black Horse": {
+ "count": 94
+ },
+ "The Bull": {
+ "count": 67
+ },
+ "The Castle": {
+ "count": 56
+ },
+ "The Chequers": {
+ "count": 65
+ },
+ "The Cross Keys": {
+ "count": 55
+ },
+ "The Crown": {
+ "count": 239
+ },
+ "The Crown Inn": {
+ "count": 69
+ },
+ "The Fox": {
+ "count": 78
+ },
+ "The George": {
+ "count": 109
+ },
+ "The Green Man": {
+ "count": 52
+ },
+ "The Greyhound": {
+ "count": 97
+ },
+ "The Kings Arms": {
+ "count": 59
+ },
+ "The Kings Head": {
+ "count": 54
+ },
+ "The New Inn": {
+ "count": 105
+ },
+ "The Plough": {
+ "count": 173
+ },
+ "The Prince of Wales": {
+ "count": 51
+ },
+ "The Queens Head": {
+ "count": 51
+ },
+ "The Railway": {
+ "count": 100
+ },
+ "The Red Lion": {
+ "count": 230
+ },
+ "The Rising Sun": {
+ "count": 70
+ },
+ "The Royal Oak": {
+ "count": 207
+ },
+ "The Ship": {
+ "count": 89
+ },
+ "The Ship Inn": {
+ "count": 80
+ },
+ "The Star": {
+ "count": 74
+ },
+ "The Swan": {
+ "count": 148
+ },
+ "The Victoria": {
+ "count": 68
+ },
+ "The Wheatsheaf": {
+ "count": 120
+ },
+ "The White Hart": {
+ "count": 223
+ },
+ "The White Horse": {
+ "count": 201
+ },
+ "The White Lion": {
+ "count": 117
}
},
- "start": {
- "annotation": {
- "line": "Started a line.",
- "area": "Started an area."
+ "recycling": {
+ "Altglas": {
+ "count": 98
+ },
+ "Déchèterie": {
+ "count": 244
+ },
+ "Glas": {
+ "count": 106
+ },
+ "Glascontainer": {
+ "count": 144
+ },
+ "Recyclinghof": {
+ "count": 131
+ },
+ "Wertstoffhof": {
+ "count": 262
}
},
- "continue": {
- "key": "A",
- "title": "Continue",
- "description": "Continue this line.",
- "not_eligible": "No line can be continued here.",
- "multiple": "Several lines can be continued here. To choose a line, press the Shift key and click on it to select it.",
- "annotation": {
- "line": "Continued a line.",
- "area": "Continued an area."
+ "restaurant": {
+ "Adler": {
+ "count": 154
+ },
+ "Akropolis": {
+ "count": 149
+ },
+ "Alte Post": {
+ "count": 62
+ },
+ "Applebee's": {
+ "count": 467
+ },
+ "Athen": {
+ "count": 65
+ },
+ "Bella Italia": {
+ "count": 125
+ },
+ "Bob Evans": {
+ "count": 99
+ },
+ "Boston Market": {
+ "count": 57
+ },
+ "Boston Pizza": {
+ "count": 148
+ },
+ "Buffalo Grill": {
+ "count": 192
+ },
+ "Buffalo Wild Wings": {
+ "count": 147
+ },
+ "Burger King": {
+ "count": 141
+ },
+ "Bären": {
+ "count": 58
+ },
+ "California Pizza Kitchen": {
+ "count": 56
+ },
+ "Chili's": {
+ "count": 294
+ },
+ "China Garden": {
+ "count": 64
+ },
+ "China Town": {
+ "count": 70
+ },
+ "Chipotle": {
+ "count": 125
+ },
+ "Chowking": {
+ "count": 53
+ },
+ "Courtepaille": {
+ "count": 95
+ },
+ "Cracker Barrel": {
+ "count": 162
+ },
+ "Da Vinci": {
+ "count": 53
+ },
+ "Dairy Queen": {
+ "count": 92
+ },
+ "Delphi": {
+ "count": 86
+ },
+ "Denny's": {
+ "count": 395
+ },
+ "Deutsches Haus": {
+ "count": 88
+ },
+ "Dionysos": {
+ "count": 68
+ },
+ "Dolce Vita": {
+ "count": 74
+ },
+ "Domino's Pizza": {
+ "count": 98
+ },
+ "El Greco": {
+ "count": 80
+ },
+ "Flunch": {
+ "count": 71
+ },
+ "Frankie & Benny's": {
+ "count": 58
+ },
+ "Friendly's": {
+ "count": 72
+ },
+ "Gasthaus Adler": {
+ "count": 51
+ },
+ "Gasthaus Krone": {
+ "count": 54
+ },
+ "Gasthof zur Post": {
+ "count": 72
+ },
+ "Golden Corral": {
+ "count": 91
+ },
+ "Grüner Baum": {
+ "count": 116
+ },
+ "Hard Rock Cafe": {
+ "count": 66
+ },
+ "Hellas": {
+ "count": 54
+ },
+ "Hippopotamus": {
+ "count": 91
+ },
+ "Hirsch": {
+ "count": 77
+ },
+ "Hirschen": {
+ "count": 83
+ },
+ "Hong Kong": {
+ "count": 81
+ },
+ "Hooters": {
+ "count": 94
+ },
+ "IHOP": {
+ "count": 286
+ },
+ "KFC": {
+ "count": 191
+ },
+ "Kantine": {
+ "count": 52
+ },
+ "Kelsey's": {
+ "count": 56
+ },
+ "Kirchenwirt": {
+ "count": 79
+ },
+ "Kreuz": {
+ "count": 75
+ },
+ "Krone": {
+ "count": 173
+ },
+ "La Cantina": {
+ "count": 54
+ },
+ "La Dolce Vita": {
+ "count": 68
+ },
+ "La Perla": {
+ "count": 66
+ },
+ "La Piazza": {
+ "count": 67
+ },
+ "Lamm": {
+ "count": 67
+ },
+ "Linde": {
+ "count": 102
+ },
+ "Lindenhof": {
+ "count": 82
+ },
+ "Little Chef": {
+ "count": 68
+ },
+ "Longhorn Steakhouse": {
+ "count": 56
+ },
+ "Lotus": {
+ "count": 64
+ },
+ "Löwen": {
+ "count": 114
+ },
+ "Mamma Mia": {
+ "count": 61
+ },
+ "Mandarin": {
+ "count": 64
+ },
+ "Mang Inasal": {
+ "count": 81
+ },
+ "McDonald's": {
+ "count": 297
+ },
+ "Mensa": {
+ "count": 87
+ },
+ "Milano": {
+ "count": 52
+ },
+ "Mykonos": {
+ "count": 59
+ },
+ "Nando's": {
+ "count": 219
+ },
+ "Ochsen": {
+ "count": 93
+ },
+ "Olive Garden": {
+ "count": 241
+ },
+ "Olympia": {
+ "count": 78
+ },
+ "Outback Steakhouse": {
+ "count": 189
+ },
+ "Panda Express": {
+ "count": 53
+ },
+ "Panera Bread": {
+ "count": 171
+ },
+ "Panorama": {
+ "count": 60
+ },
+ "Peking": {
+ "count": 54
+ },
+ "Perkins": {
+ "count": 96
+ },
+ "Pizza Express": {
+ "count": 241
+ },
+ "Pizza Hut": {
+ "count": 1038
+ },
+ "Poseidon": {
+ "count": 111
+ },
+ "Prezzo": {
+ "count": 68
+ },
+ "Ratskeller": {
+ "count": 148
+ },
+ "Red Lobster": {
+ "count": 205
+ },
+ "Red Robin": {
+ "count": 169
+ },
+ "Rhodos": {
+ "count": 80
+ },
+ "Roma": {
+ "count": 60
+ },
+ "Ruby Tuesday": {
+ "count": 137
+ },
+ "Rössli": {
+ "count": 68
+ },
+ "Sakura": {
+ "count": 69
+ },
+ "San Marco": {
+ "count": 66
+ },
+ "Schwarzer Adler": {
+ "count": 58
+ },
+ "Schützenhaus": {
+ "count": 129
+ },
+ "Seeblick": {
+ "count": 51
+ },
+ "Shanghai": {
+ "count": 79
+ },
+ "Shari's": {
+ "count": 63
+ },
+ "Sonne": {
+ "count": 123
+ },
+ "Sportheim": {
+ "count": 57
+ },
+ "Spur": {
+ "count": 60
+ },
+ "Sternen": {
+ "count": 78
+ },
+ "Subway": {
+ "count": 470
+ },
+ "Swiss Chalet": {
+ "count": 101
+ },
+ "TGI Friday's": {
+ "count": 138
+ },
+ "Taco Bell": {
+ "count": 82
+ },
+ "Taj Mahal": {
+ "count": 101
+ },
+ "Texas Roadhouse": {
+ "count": 96
+ },
+ "The Keg": {
+ "count": 52
+ },
+ "Traube": {
+ "count": 65
+ },
+ "Vapiano": {
+ "count": 81
+ },
+ "Village Inn": {
+ "count": 88
+ },
+ "Vips": {
+ "count": 51
+ },
+ "Waffle House": {
+ "count": 182
+ },
+ "Wagamama": {
+ "count": 58
+ },
+ "Waldschänke": {
+ "count": 55
+ },
+ "Wendy's": {
+ "count": 86
+ },
+ "Zizzi": {
+ "count": 62
+ },
+ "Zum Löwen": {
+ "count": 82
+ },
+ "Zur Krone": {
+ "count": 92
+ },
+ "Zur Linde": {
+ "count": 200
+ },
+ "Zur Post": {
+ "count": 117
+ },
+ "Zur Sonne": {
+ "count": 73
+ },
+ "ÐвÑазиÑ": {
+ "count": 98
+ },
+ "СÑоловаÑ": {
+ "count": 126
+ },
+ "ЯкиÑоÑиÑ": {
+ "count": 74
+ },
+ "ã¬ã¹ã": {
+ "count": 204
+ },
+ "ãµã¤ã¼ãªã¤": {
+ "count": 81
+ },
+ "ã¸ã§ããµã³": {
+ "count": 56
+ },
+ "ããã¼ãº": {
+ "count": 73
+ },
+ "ë°ë¤íì§ (Bada Fish Restaurant)": {
+ "count": 55
}
- },
- "cancel_draw": {
- "annotation": "Canceled drawing."
- },
- "change_role": {
- "annotation": "Changed the role of a relation member."
- },
- "change_tags": {
- "annotation": "Changed tags."
- },
- "circularize": {
- "title": "Circularize",
- "description": {
- "line": "Make this line circular.",
- "area": "Make this area circular."
+ }
+ },
+ "shop": {
+ "alcohol": {
+ "Alko": {
+ "count": 141
},
- "key": "O",
- "annotation": {
- "line": "Made a line circular.",
- "area": "Made an area circular."
+ "BWS": {
+ "count": 58
},
- "not_closed": "This can't be made circular because it's not a loop."
- },
- "orthogonalize": {
- "title": "Square",
- "description": {
- "line": "Square the corners of this line.",
- "area": "Square the corners of this area."
+ "Bargain Booze": {
+ "count": 59
},
- "key": "S",
- "annotation": {
- "line": "Squared the corners of a line.",
- "area": "Squared the corners of an area."
+ "Botilleria": {
+ "count": 75
},
- "not_squarish": "This can't be made square because it is not squarish."
- },
- "straighten": {
- "title": "Straighten",
- "description": "Straighten this line.",
- "key": "S",
- "annotation": "Straightened a line.",
- "too_bendy": "This can't be straightened because it bends too much."
- },
- "delete": {
- "title": "Delete",
- "description": "Remove this from the map.",
- "annotation": {
- "point": "Deleted a point.",
- "vertex": "Deleted a node from a way.",
- "line": "Deleted a line.",
- "area": "Deleted an area.",
- "relation": "Deleted a relation.",
- "multiple": "Deleted {n} objects."
+ "Gall & Gall": {
+ "count": 514
},
- "incomplete_relation": "This feature can't be deleted because it hasn't been fully downloaded."
- },
- "add_member": {
- "annotation": "Added a member to a relation."
- },
- "delete_member": {
- "annotation": "Removed a member from a relation."
- },
- "connect": {
- "annotation": {
- "point": "Connected a way to a point.",
- "vertex": "Connected a way to another.",
- "line": "Connected a way to a line.",
- "area": "Connected a way to an area."
+ "LCBO": {
+ "count": 214
+ },
+ "Nicolas": {
+ "count": 109
+ },
+ "SAQ": {
+ "count": 66
+ },
+ "Systembolaget": {
+ "count": 199
+ },
+ "The Beer Store": {
+ "count": 141
+ },
+ "ÐÑомаÑнÑй миÑ": {
+ "count": 56
+ },
+ "Ðивое пиво": {
+ "count": 62
}
},
- "disconnect": {
- "title": "Disconnect",
- "description": "Disconnect these lines/areas from each other.",
- "key": "D",
- "annotation": "Disconnected lines/areas.",
- "not_connected": "There aren't enough lines/areas here to disconnect."
- },
- "merge": {
- "title": "Merge",
- "description": "Merge these lines.",
- "key": "C",
- "annotation": "Merged {n} lines.",
- "not_eligible": "These features can't be merged.",
- "not_adjacent": "These lines can't be merged because they aren't connected.",
- "restriction": "These lines can't be merged because at least one is a member of a \"{relation}\" relation."
- },
- "move": {
- "title": "Move",
- "description": "Move this to a different location.",
- "key": "M",
- "annotation": {
- "point": "Moved a point.",
- "vertex": "Moved a node in a way.",
- "line": "Moved a line.",
- "area": "Moved an area.",
- "multiple": "Moved multiple objects."
+ "bakery": {
+ "Anker": {
+ "count": 65
},
- "incomplete_relation": "This feature can't be moved because it hasn't been fully downloaded."
- },
- "rotate": {
- "title": "Rotate",
- "description": "Rotate this object around its center point.",
- "key": "R",
- "annotation": {
- "line": "Rotated a line.",
- "area": "Rotated an area."
+ "Backwerk": {
+ "count": 94
+ },
+ "Boulangerie": {
+ "count": 232
+ },
+ "Boulangerie Patisserie": {
+ "count": 76
+ },
+ "Bäcker": {
+ "count": 65
+ },
+ "Bäckerei": {
+ "count": 163
+ },
+ "Bäckerei Schmidt": {
+ "count": 56
+ },
+ "Dat Backhus": {
+ "count": 62
+ },
+ "Der Beck": {
+ "count": 97
+ },
+ "Goeken backen": {
+ "count": 52
+ },
+ "Goldilocks": {
+ "count": 55
+ },
+ "Greggs": {
+ "count": 255
+ },
+ "Hofpfisterei": {
+ "count": 108
+ },
+ "Ihle": {
+ "count": 76
+ },
+ "K&U": {
+ "count": 54
+ },
+ "Kamps": {
+ "count": 252
+ },
+ "Müller": {
+ "count": 91
+ },
+ "Oebel": {
+ "count": 57
+ },
+ "Panaderia": {
+ "count": 154
+ },
+ "Panificio": {
+ "count": 63
+ },
+ "Paul": {
+ "count": 74
+ },
+ "Piekarnia": {
+ "count": 52
+ },
+ "Stadtbäckerei": {
+ "count": 58
+ },
+ "Stadtbäckerei Junge": {
+ "count": 53
+ },
+ "Steinecke": {
+ "count": 135
+ },
+ "Thürmann": {
+ "count": 57
+ },
+ "Хлеб": {
+ "count": 81
}
},
- "reverse": {
- "title": "Reverse",
- "description": "Make this line go in the opposite direction.",
- "key": "V",
- "annotation": "Reversed a line."
- },
- "split": {
- "title": "Split",
- "description": {
- "line": "Split this line into two at this node.",
- "area": "Split the boundary of this area into two.",
- "multiple": "Split the lines/area boundaries at this node into two."
+ "books": {
+ "Barnes & Noble": {
+ "count": 239
},
- "key": "X",
- "annotation": {
- "line": "Split a line.",
- "area": "Split an area boundary.",
- "multiple": "Split {n} lines/area boundaries."
+ "Bruna": {
+ "count": 55
},
- "not_eligible": "Lines can't be split at their beginning or end.",
- "multiple_ways": "There are too many lines here to split."
- }
- },
- "undo": {
- "tooltip": "Undo: {action}",
- "nothing": "Nothing to undo."
- },
- "redo": {
- "tooltip": "Redo: {action}",
- "nothing": "Nothing to redo."
- },
- "tooltip_keyhint": "Shortcut:",
- "browser_notice": "This editor is supported in Firefox, Chrome, Safari, Opera, and Internet Explorer 9 and above. Please upgrade your browser or use Potlatch 2 to edit the map.",
- "translate": {
- "translate": "Translate",
- "localized_translation_label": "Multilingual name",
- "localized_translation_language": "Choose language",
- "localized_translation_name": "Name"
- },
- "zoom_in_edit": "Zoom in to Edit",
- "logout": "logout",
- "loading_auth": "Connecting to OpenStreetMap...",
- "report_a_bug": "report a bug",
- "status": {
- "error": "Unable to connect to API.",
- "offline": "The API is offline. Please try editing later.",
- "readonly": "The API is read-only. You will need to wait to save your changes."
- },
- "commit": {
- "title": "Save Changes",
- "description_placeholder": "Brief description of your contributions",
- "message_label": "Commit message",
- "upload_explanation": "The changes you upload will be visible on all maps that use OpenStreetMap data.",
- "upload_explanation_with_user": "The changes you upload as {user} will be visible on all maps that use OpenStreetMap data.",
- "save": "Save",
- "cancel": "Cancel",
- "warnings": "Warnings",
- "modified": "Modified",
- "deleted": "Deleted",
- "created": "Created"
- },
- "contributors": {
- "list": "Edits by {users}",
- "truncated_list": "Edits by {users} and {count} others"
- },
- "geocoder": {
- "search": "Search worldwide...",
- "no_results_visible": "No results in visible map area",
- "no_results_worldwide": "No results found"
- },
- "geolocate": {
- "title": "Show My Location"
- },
- "inspector": {
- "no_documentation_combination": "There is no documentation available for this tag combination",
- "no_documentation_key": "There is no documentation available for this key",
- "show_more": "Show More",
- "view_on_osm": "View on openstreetmap.org",
- "all_tags": "All tags",
- "all_members": "All members",
- "all_relations": "All relations",
- "new_relation": "New relation...",
- "role": "Role",
- "choose": "Select feature type",
- "results": "{n} results for {search}",
- "reference": "View on OpenStreetMap Wiki",
- "back_tooltip": "Change feature",
- "remove": "Remove",
- "search": "Search",
- "multiselect": "Selected items",
- "unknown": "Unknown",
- "incomplete": "",
- "feature_list": "Search features",
- "edit": "Edit feature",
- "check": {
- "yes": "Yes",
- "no": "No"
- },
- "none": "None"
- },
- "background": {
- "title": "Background",
- "description": "Background settings",
- "percent_brightness": "{opacity}% brightness",
- "none": "None",
- "custom": "Custom",
- "custom_prompt": "Enter a tile template. Valid tokens are {z}, {x}, {y} for Z/X/Y scheme and {u} for quadtile scheme.",
- "fix_misalignment": "Fix misalignment",
- "reset": "reset"
- },
- "restore": {
- "heading": "You have unsaved changes",
- "description": "Do you wish to restore unsaved changes from a previous editing session?",
- "restore": "Restore",
- "reset": "Reset"
- },
- "save": {
- "title": "Save",
- "help": "Save changes to OpenStreetMap, making them visible to other users.",
- "no_changes": "No changes to save.",
- "error": "An error occurred while trying to save",
- "uploading": "Uploading changes to OpenStreetMap.",
- "unsaved_changes": "You have unsaved changes"
- },
- "success": {
- "edited_osm": "Edited OSM!",
- "just_edited": "You just edited OpenStreetMap!",
- "view_on_osm": "View on OSM",
- "facebook": "Share on Facebook",
- "twitter": "Share on Twitter",
- "google": "Share on Google+",
- "help_html": "Your changes should appear in the \"Standard\" layer in a few minutes. Other layers, and certain features, may take longer\n(details).\n"
- },
- "confirm": {
- "okay": "Okay"
- },
- "splash": {
- "welcome": "Welcome to the iD OpenStreetMap editor",
- "text": "iD is a friendly but powerful tool for contributing to the world's best free world map. This is version {version}. For more information see {website} and report bugs at {github}.",
- "walkthrough": "Start the Walkthrough",
- "start": "Edit Now"
- },
- "source_switch": {
- "live": "live",
- "lose_changes": "You have unsaved changes. Switching the map server will discard them. Are you sure you want to switch servers?",
- "dev": "dev"
- },
- "tag_reference": {
- "description": "Description",
- "on_wiki": "{tag} on wiki.osm.org",
- "used_with": "used with {type}"
- },
- "validations": {
- "untagged_point": "Untagged point",
- "untagged_line": "Untagged line",
- "untagged_area": "Untagged area",
- "many_deletions": "You're deleting {n} objects. Are you sure you want to do this? This will delete them from the map that everyone else sees on openstreetmap.org.",
- "tag_suggests_area": "The tag {tag} suggests line should be area, but it is not an area",
- "deprecated_tags": "Deprecated tags: {tags}"
- },
- "zoom": {
- "in": "Zoom In",
- "out": "Zoom Out"
- },
- "cannot_zoom": "Cannot zoom out further in current mode.",
- "gpx": {
- "local_layer": "Local GPX file",
- "drag_drop": "Drag and drop a .gpx file on the page, or click the button to the right to browse",
- "zoom": "Zoom to GPX track",
- "browse": "Browse for a .gpx file"
- },
- "help": {
- "title": "Help",
- "help": "# Help\n\nThis is an editor for [OpenStreetMap](http://www.openstreetmap.org/), the\nfree and editable map of the world. You can use it to add and update\ndata in your area, making an open-source and open-data map of the world\nbetter for everyone.\n\nEdits that you make on this map will be visible to everyone who uses\nOpenStreetMap. In order to make an edit, you'll need a\n[free OpenStreetMap account](https://www.openstreetmap.org/user/new).\n\nThe [iD editor](http://ideditor.com/) is a collaborative project with [source\ncode available on GitHub](https://github.com/systemed/iD).\n",
- "editing_saving": "# Editing & Saving\n\nThis editor is designed to work primarily online, and you're accessing\nit through a website right now.\n\n### Selecting Features\n\nTo select a map feature, like a road or point of interest, click\non it on the map. This will highlight the selected feature, open a panel with\ndetails about it, and show a menu of things you can do with the feature.\n\nTo select multiple features, hold down the 'Shift' key. Then either click\non the features you want to select, or drag on the map to draw a rectangle.\nThis will draw a box and select all the points within it.\n\n### Saving Edits\n\nWhen you make changes like editing roads, buildings, and places, these are\nstored locally until you save them to the server. Don't worry if you make\na mistake - you can undo changes by clicking the undo button, and redo\nchanges by clicking the redo button.\n\nClick 'Save' to finish a group of edits - for instance, if you've completed\nan area of town and would like to start on a new area. You'll have a chance\nto review what you've done, and the editor supplies helpful suggestions\nand warnings if something doesn't seem right about the changes.\n\nIf everything looks good, you can enter a short comment explaining the change\nyou made, and click 'Save' again to post the changes\nto [OpenStreetMap.org](http://www.openstreetmap.org/), where they are visible\nto all other users and available for others to build and improve upon.\n\nIf you can't finish your edits in one sitting, you can leave the editor\nwindow and come back (on the same browser and computer), and the\neditor application will offer to restore your work.\n",
- "roads": "# Roads\n\nYou can create, fix, and delete roads with this editor. Roads can be all\nkinds: paths, highways, trails, cycleways, and more - any often-crossed\nsegment should be mappable.\n\n### Selecting\n\nClick on a road to select it. An outline should become visible, along\nwith a small tools menu on the map and a sidebar showing more information\nabout the road.\n\n### Modifying\n\nOften you'll see roads that aren't aligned to the imagery behind them\nor to a GPS track. You can adjust these roads so they are in the correct\nplace.\n\nFirst click on the road you want to change. This will highlight it and show\ncontrol points along it that you can drag to better locations. If\nyou want to add new control points for more detail, double-click a part\nof the road without a node, and one will be added.\n\nIf the road connects to another road, but doesn't properly connect on\nthe map, you can drag one of its control points onto the other road in\norder to join them. Having roads connect is important for the map\nand essential for providing driving directions.\n\nYou can also click the 'Move' tool or press the `M` shortcut key to move the entire road at\none time, and then click again to save that movement.\n\n### Deleting\n\nIf a road is entirely incorrect - you can see that it doesn't exist in satellite\nimagery and ideally have confirmed locally that it's not present - you can delete\nit, which removes it from the map. Be cautious when deleting features -\nlike any other edit, the results are seen by everyone and satellite imagery\nis often out of date, so the road could simply be newly built.\n\nYou can delete a road by clicking on it to select it, then clicking the\ntrash can icon or pressing the 'Delete' key.\n\n### Creating\n\nFound somewhere there should be a road but there isn't? Click the 'Line'\nicon in the top-left of the editor or press the shortcut key `2` to start drawing\na line.\n\nClick on the start of the road on the map to start drawing. If the road\nbranches off from an existing road, start by clicking on the place where they connect.\n\nThen click on points along the road so that it follows the right path, according\nto satellite imagery or GPS. If the road you are drawing crosses another road, connect\nit by clicking on the intersection point. When you're done drawing, double-click\nor press 'Return' or 'Enter' on your keyboard.\n",
- "gps": "# GPS\n\nGPS data is the most trusted source of data for OpenStreetMap. This editor\nsupports local traces - `.gpx` files on your local computer. You can collect\nthis kind of GPS trace with a number of smartphone applications as well as\npersonal GPS hardware.\n\nFor information on how to perform a GPS survey, read\n[Surveying with a GPS](http://learnosm.org/en/beginner/using-gps/).\n\nTo use a GPX track for mapping, drag and drop the GPX file onto the map\neditor. If it's recognized, it will be added to the map as a bright green\nline. Click on the 'Background Settings' menu on the right side to enable,\ndisable, or zoom to this new GPX-powered layer.\n\nThe GPX track isn't directly uploaded to OpenStreetMap - the best way to\nuse it is to draw on the map, using it as a guide for the new features that\nyou add, and also to [upload it to OpenStreetMap](http://www.openstreetmap.org/trace/create)\nfor other users to use.\n",
- "imagery": "# Imagery\n\nAerial imagery is an important resource for mapping. A combination of\nairplane flyovers, satellite views, and freely-compiled sources are available\nin the editor under the 'Background Settings' menu on the right.\n\nBy default a [Bing Maps](http://www.bing.com/maps/) satellite layer is\npresented in the editor, but as you pan and zoom the map to new geographical\nareas, new sources will become available. Some countries, like the United\nStates, France, and Denmark have very high-quality imagery available for some areas.\n\nImagery is sometimes offset from the map data because of a mistake on the\nimagery provider's side. If you see a lot of roads shifted from the background,\ndon't immediately move them all to match the background. Instead you can adjust\nthe imagery so that it matches the existing data by clicking 'Fix alignment' at\nthe bottom of the Background Settings UI.\n",
- "addresses": "# Addresses\n\nAddresses are some of the most useful information for the map.\n\nAlthough addresses are often represented as parts of streets, in OpenStreetMap\nthey're recorded as attributes of buildings and places along streets.\n\nYou can add address information to places mapped as building outlines\nas well as those mapped as single points. The optimal source of address\ndata is from an on-the-ground survey or personal knowledge - as with any\nother feature, copying from commercial sources like Google Maps is strictly\nforbidden.\n",
- "inspector": "# Using the Inspector\n\nThe inspector is the section on the left side of the page that allows you to\nedit the details of the selected feature.\n\n### Selecting a Feature Type\n\nAfter you add a point, line, or area, you can choose what type of feature it\nis, like whether it's a highway or residential road, supermarket or cafe.\nThe inspector will display buttons for common feature types, and you can\nfind others by typing what you're looking for in the search box.\n\nClick the 'i' in the bottom-right-hand corner of a feature type button to\nlearn more about it. Click a button to choose that type.\n\n### Using Forms and Editing Tags\n\nAfter you choose a feature type, or when you select a feature that already\nhas a type assigned, the inspector will display fields with details about\nthe feature like its name and address.\n\nBelow the fields you see, you can click icons to add other details,\nlike [Wikipedia](http://www.wikipedia.org/) information, wheelchair\naccess, and more.\n\nAt the bottom of the inspector, click 'Additional tags' to add arbitrary\nother tags to the element. [Taginfo](http://taginfo.openstreetmap.org/) is a\ngreat resource for learn more about popular tag combinations.\n\nChanges you make in the inspector are automatically applied to the map.\nYou can undo them at any time by clicking the 'Undo' button.\n",
- "buildings": "# Buildings\n\nOpenStreetMap is the world's largest database of buildings. You can create\nand improve this database.\n\n### Selecting\n\nYou can select a building by clicking on its border. This will highlight the\nbuilding and open a small tools menu and a sidebar showing more information\nabout the building.\n\n### Modifying\n\nSometimes buildings are incorrectly placed or have incorrect tags.\n\nTo move an entire building, select it, then click the 'Move' tool. Move your\nmouse to shift the building, and click when it's correctly placed.\n\nTo fix the specific shape of a building, click and drag the nodes that form\nits border into better places.\n\n### Creating\n\nOne of the main questions around adding buildings to the map is that\nOpenStreetMap records buildings both as shapes and points. The rule of thumb\nis to _map a building as a shape whenever possible_, and map companies, homes,\namenities, and other things that operate out of buildings as points placed\nwithin the building shape.\n\nStart drawing a building as a shape by clicking the 'Area' button in the top\nleft of the interface, and end it either by pressing 'Return' on your keyboard\nor clicking on the first node drawn to close the shape.\n\n### Deleting\n\nIf a building is entirely incorrect - you can see that it doesn't exist in satellite\nimagery and ideally have confirmed locally that it's not present - you can delete\nit, which removes it from the map. Be cautious when deleting features -\nlike any other edit, the results are seen by everyone and satellite imagery\nis often out of date, so the building could simply be newly built.\n\nYou can delete a building by clicking on it to select it, then clicking the\ntrash can icon or pressing the 'Delete' key.\n",
- "relations": "# Relations\n\nA relation is a special type of feature in OpenStreetMap that groups together\nother features. For example, two common types of relations are *route relations*,\nwhich group together sections of road that belong to a specific freeway or\nhighway, and *multipolygons*, which group together several lines that define\na complex area (one with several pieces or holes in it like a donut).\n\nThe group of features in a relation are called *members*. In the sidebar, you can\nsee which relations a feature is a member of, and click on a relation there\nto select the it. When the relation is selected, you can see all of its\nmembers listed in the sidebar and highlighted on the map.\n\nFor the most part, iD will take care of maintaining relations automatically\nwhile you edit. The main thing you should be aware of is that if you delete a\nsection of road to redraw it more accurately, you should make sure that the\nnew section is a member of the same relations as the original.\n\n## Editing Relations\n\nIf you want to edit relations, here are the basics.\n\nTo add a feature to a relation, select the feature, click the \"+\" button in the\n\"All relations\" section of the sidebar, and select or type the name of the relation.\n\nTo create a new relation, select the first feature that should be a member,\nclick the \"+\" button in the \"All relations\" section, and select \"New relation...\".\n\nTo remove a feature from a relation, select the feature and click the trash\nbutton next to the relation you want to remove it from.\n\nYou can create multipolygons with holes using the \"Merge\" tool. Draw two areas (inner\nand outer), hold the Shift key and click on each of them to select them both, and then\nclick the \"Merge\" (+) button.\n"
- },
- "intro": {
- "navigation": {
- "title": "Navigation",
- "drag": "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**",
- "select": "Map features are represented three ways: using points, lines or areas. All features can be selected by clicking on them. **Click on the point to select it.**",
- "header": "The header shows us the feature type.",
- "pane": "When a feature is selected, the feature editor is displayed. The header shows us the feature type and the main pane shows the feature's attributes, such as its name and address. **Close the feature editor with the close button in the top right.**"
+ "Libro": {
+ "count": 59
+ },
+ "Thalia": {
+ "count": 122
+ },
+ "Waterstones": {
+ "count": 85
+ },
+ "Weltbild": {
+ "count": 72
+ },
+ "Ðниги": {
+ "count": 110
+ }
},
- "points": {
- "title": "Points",
- "add": "Points can be used to represent features such as shops, restaurants and monuments. They mark a specific location, and describe what's there. **Click the Point button to add a new point.**",
- "place": "The point can be placed by clicking on the map. **Place the point on top of the building.**",
- "search": "There are many different features that can be represented by points. The point you just added is a Cafe. **Search for '{name}'**",
- "choose": "**Choose Cafe from the list.**",
- "describe": "The point is now marked as a cafe. Using the feature editor, we can add more information about the feature. **Add a name**",
- "close": "The feature editor can be closed by clicking on the close button. **Close the feature editor**",
- "reselect": "Often points will already exist, but have mistakes or be incomplete. We can edit existing points. **Select the point you just created.**",
- "fixname": "**Change the name and close the feature editor.**",
- "reselect_delete": "All features on the map can be deleted. **Click on the point you created.**",
- "delete": "The menu around the point contains operations that can be performed on it, including delete. **Delete the point.**"
+ "car_repair": {
+ "ATU": {
+ "count": 257
+ },
+ "AutoZone": {
+ "count": 51
+ },
+ "Carglass": {
+ "count": 99
+ },
+ "Euromaster": {
+ "count": 80
+ },
+ "Feu Vert": {
+ "count": 104
+ },
+ "Firestone": {
+ "count": 77
+ },
+ "Jiffy Lube": {
+ "count": 178
+ },
+ "Kwik Fit": {
+ "count": 73
+ },
+ "Midas": {
+ "count": 171
+ },
+ "Norauto": {
+ "count": 141
+ },
+ "O'Reilly Auto Parts": {
+ "count": 62
+ },
+ "Peugeot": {
+ "count": 80
+ },
+ "Pit Stop": {
+ "count": 55
+ },
+ "Renault": {
+ "count": 158
+ },
+ "Roady": {
+ "count": 52
+ },
+ "Speedy": {
+ "count": 104
+ },
+ "ÃAMTC": {
+ "count": 51
+ },
+ "ÐвÑозапÑаÑÑи": {
+ "count": 172
+ },
+ "ÐвÑоÑеÑвиÑ": {
+ "count": 314
+ },
+ "СТÐ": {
+ "count": 338
+ },
+ "ШиномонÑаж": {
+ "count": 995
+ }
},
- "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.**",
- "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}'.**",
- "choose": "**Choose Playground from the list.**",
- "describe": "**Add a name, and close the feature editor**"
+ "car": {
+ "Audi": {
+ "count": 101
+ },
+ "BMW": {
+ "count": 139
+ },
+ "Chevrolet": {
+ "count": 75
+ },
+ "Citroen": {
+ "count": 259
+ },
+ "Fiat": {
+ "count": 83
+ },
+ "Ford": {
+ "count": 216
+ },
+ "Honda": {
+ "count": 134
+ },
+ "Hyundai": {
+ "count": 146
+ },
+ "Mazda": {
+ "count": 96
+ },
+ "Mercedes-Benz": {
+ "count": 218
+ },
+ "Mitsubishi": {
+ "count": 66
+ },
+ "Nissan": {
+ "count": 173
+ },
+ "Opel": {
+ "count": 161
+ },
+ "Peugeot": {
+ "count": 291
+ },
+ "Renault": {
+ "count": 356
+ },
+ "Skoda": {
+ "count": 92
+ },
+ "Suzuki": {
+ "count": 73
+ },
+ "Toyota": {
+ "count": 238
+ },
+ "Volkswagen": {
+ "count": 200
+ },
+ "Volvo": {
+ "count": 82
+ },
+ "ÐвÑозапÑаÑÑи": {
+ "count": 290
+ },
+ "ÐвÑомагазин": {
+ "count": 64
+ },
+ "ШиномонÑаж": {
+ "count": 263
+ }
},
- "lines": {
- "title": "Lines",
- "add": "Lines are used to represent features such as roads, railroads and rivers. **Click the Line button to add a new line.**",
- "start": "**Start the line by clicking on the end of the road.**",
- "intersect": "Click to add more nodes to the line. You can drag the map while drawing if necessary. Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on Flower Street, to create an intersection connecting the two lines.**",
- "finish": "Lines can be finished by clicking on the last node again. **Finish drawing the road.**",
- "road": "**Select Road from the list**",
- "residential": "There are different types of roads, the most common of which is Residential. **Choose the Residential road type**",
- "describe": "**Name the road and close the feature editor.**",
- "restart": "The road needs to intersect Flower Street.",
- "wrong_preset": "You didn't select the Residential road type. **Click here to choose again**"
+ "chemist": {
+ "Bipa": {
+ "count": 276
+ },
+ "Boots": {
+ "count": 94
+ },
+ "dm": {
+ "count": 873
+ },
+ "Douglas": {
+ "count": 62
+ },
+ "Etos": {
+ "count": 465
+ },
+ "Ihr Platz": {
+ "count": 76
+ },
+ "Kruidvat": {
+ "count": 114
+ },
+ "Müller": {
+ "count": 195
+ },
+ "Rossmann": {
+ "count": 1623
+ },
+ "Schlecker": {
+ "count": 201
+ },
+ "Superdrug": {
+ "count": 64
+ }
},
- "startediting": {
- "title": "Start Editing",
- "help": "More documentation and this walkthrough are available here.",
- "save": "Don't forget to regularly save your changes!",
- "start": "Start mapping!"
- }
- },
- "presets": {
- "categories": {
- "category-landuse": {
- "name": "Land Use"
+ "clothes": {
+ "AWG": {
+ "count": 62
},
- "category-path": {
- "name": "Path"
+ "Ackermans": {
+ "count": 91
},
- "category-rail": {
- "name": "Rail"
+ "Adidas": {
+ "count": 81
},
- "category-road": {
- "name": "Road"
+ "Adler": {
+ "count": 53
},
- "category-route": {
- "name": "Route"
+ "American Apparel": {
+ "count": 53
},
- "category-water": {
- "name": "Water"
+ "Benetton": {
+ "count": 96
+ },
+ "Bonita": {
+ "count": 143
+ },
+ "C&A": {
+ "count": 484
+ },
+ "Calzedonia": {
+ "count": 56
+ },
+ "Cecil": {
+ "count": 51
+ },
+ "Celio": {
+ "count": 71
+ },
+ "Charles Vögele": {
+ "count": 63
+ },
+ "Deichmann": {
+ "count": 61
+ },
+ "Dorothy Perkins": {
+ "count": 51
+ },
+ "Edgars": {
+ "count": 111
+ },
+ "Ernsting's family": {
+ "count": 286
+ },
+ "Esprit": {
+ "count": 209
+ },
+ "Etam": {
+ "count": 51
+ },
+ "Gap": {
+ "count": 74
+ },
+ "Gerry Weber": {
+ "count": 68
+ },
+ "H&M": {
+ "count": 607
+ },
+ "Jack & Jones": {
+ "count": 51
+ },
+ "Jack Wolfskin": {
+ "count": 55
+ },
+ "Jet": {
+ "count": 62
+ },
+ "Jules": {
+ "count": 61
+ },
+ "KiK": {
+ "count": 1148
+ },
+ "Kiabi": {
+ "count": 139
+ },
+ "Kohl's": {
+ "count": 101
+ },
+ "Lacoste": {
+ "count": 66
+ },
+ "Levi's": {
+ "count": 58
+ },
+ "Lindex": {
+ "count": 70
+ },
+ "Mango": {
+ "count": 115
+ },
+ "Matalan": {
+ "count": 83
+ },
+ "Mexx": {
+ "count": 65
+ },
+ "Mr Price": {
+ "count": 86
+ },
+ "NKD": {
+ "count": 444
+ },
+ "New Look": {
+ "count": 115
+ },
+ "New Yorker": {
+ "count": 173
+ },
+ "Next": {
+ "count": 163
+ },
+ "Old Navy": {
+ "count": 154
+ },
+ "Orsay": {
+ "count": 71
+ },
+ "Peacocks": {
+ "count": 86
+ },
+ "Pep": {
+ "count": 136
+ },
+ "Pimkie": {
+ "count": 72
+ },
+ "Primark": {
+ "count": 87
+ },
+ "Promod": {
+ "count": 71
+ },
+ "River Island": {
+ "count": 56
+ },
+ "Ross": {
+ "count": 77
+ },
+ "Street One": {
+ "count": 74
+ },
+ "TK Maxx": {
+ "count": 73
+ },
+ "Takko": {
+ "count": 476
+ },
+ "Tally Weijl": {
+ "count": 67
+ },
+ "Tommy Hilfiger": {
+ "count": 65
+ },
+ "Truworths": {
+ "count": 64
+ },
+ "Ulla Popken": {
+ "count": 59
+ },
+ "United Colors of Benetton": {
+ "count": 90
+ },
+ "Urban Outfitters": {
+ "count": 61
+ },
+ "Vero Moda": {
+ "count": 89
+ },
+ "Vögele": {
+ "count": 129
+ },
+ "Winners": {
+ "count": 59
+ },
+ "Woolworths": {
+ "count": 116
+ },
+ "Zara": {
+ "count": 199
+ },
+ "Zeeman": {
+ "count": 108
+ },
+ "s.Oliver": {
+ "count": 53
+ },
+ "Ðдежда": {
+ "count": 68
+ },
+ "æ´æã®éå±±": {
+ "count": 86
}
},
- "fields": {
- "access": {
- "label": "Access",
- "placeholder": "Unknown",
- "types": {
- "access": "General",
- "foot": "Foot",
- "motor_vehicle": "Motor Vehicles",
- "bicycle": "Bicycles",
- "horse": "Horses"
- },
- "options": {
- "yes": {
- "title": "Allowed",
- "description": "Access permitted by law; a right of way"
- },
- "no": {
- "title": "Prohibited",
- "description": "Access not permitted to the general public"
- },
- "permissive": {
- "title": "Permissive",
- "description": "Access permitted until such time as the owner revokes the permission"
- },
- "private": {
- "title": "Private",
- "description": "Access permitted only with permission of the owner on an individual basis"
- },
- "designated": {
- "title": "Designated",
- "description": "Access permitted according to signs or specific local laws"
- },
- "destination": {
- "title": "Destination",
- "description": "Access permitted only to reach a destination"
- }
- }
+ "computer": {
+ "DNS": {
+ "count": 119
},
- "access_toilets": {
- "label": "Access"
+ "PC World": {
+ "count": 58
+ }
+ },
+ "convenience": {
+ "24 ÑаÑа": {
+ "count": 56
},
- "address": {
- "label": "Address",
- "placeholders": {
- "housename": "Housename",
- "number": "123",
- "street": "Street",
- "city": "City",
- "postcode": "Postal code"
- }
+ "7-Eleven": {
+ "count": 3898
},
- "admin_level": {
- "label": "Admin Level"
+ "8 Ã Huit": {
+ "count": 57
},
- "aeroway": {
- "label": "Type"
+ "ABC": {
+ "count": 138
},
- "amenity": {
- "label": "Type"
+ "Alepa": {
+ "count": 63
},
- "artist": {
- "label": "Artist"
+ "Alfamart": {
+ "count": 74
},
- "artwork_type": {
- "label": "Type"
+ "Almacen": {
+ "count": 201
},
- "atm": {
- "label": "ATM"
+ "BP": {
+ "count": 157
},
- "backrest": {
- "label": "Backrest"
+ "Biedronka": {
+ "count": 67
},
- "barrier": {
- "label": "Type"
+ "Boutique": {
+ "count": 59
},
- "bicycle_parking": {
- "label": "Type"
+ "CBA": {
+ "count": 122
},
- "boundary": {
- "label": "Type"
+ "COOP": {
+ "count": 122
},
- "building": {
- "label": "Building"
+ "COOP Jednota": {
+ "count": 160
},
- "building_area": {
- "label": "Building"
+ "CVS": {
+ "count": 64
},
- "building_yes": {
- "label": "Building"
+ "Carrefour City": {
+ "count": 54
},
- "capacity": {
- "label": "Capacity",
- "placeholder": "50, 100, 200..."
+ "Carrefour Express": {
+ "count": 73
},
- "cardinal_direction": {
- "label": "Direction"
+ "Casey's General Store": {
+ "count": 80
},
- "clock_direction": {
- "label": "Direction",
- "options": {
- "clockwise": "Clockwise",
- "anticlockwise": "Counterclockwise"
- }
+ "Casino": {
+ "count": 85
},
- "collection_times": {
- "label": "Collection Times"
+ "Centra": {
+ "count": 112
},
- "construction": {
- "label": "Type"
+ "Central Convenience Store": {
+ "count": 52
},
- "country": {
- "label": "Country"
+ "Chevron": {
+ "count": 57
},
- "crossing": {
- "label": "Type"
+ "Circle K": {
+ "count": 269
},
- "cuisine": {
- "label": "Cuisine"
+ "Citgo": {
+ "count": 63
},
- "denomination": {
- "label": "Denomination"
+ "Coop": {
+ "count": 505
},
- "denotation": {
- "label": "Denotation"
+ "Coop Jednota": {
+ "count": 58
},
- "description": {
- "label": "Description"
+ "Costcutter": {
+ "count": 272
},
- "elevation": {
- "label": "Elevation"
+ "Cumberland Farms": {
+ "count": 62
},
- "emergency": {
- "label": "Emergency"
+ "Delikatesy": {
+ "count": 77
},
- "entrance": {
- "label": "Type"
+ "Dollar General": {
+ "count": 101
},
- "fax": {
- "label": "Fax",
- "placeholder": "+31 42 123 4567"
+ "Dorfladen": {
+ "count": 76
},
- "fee": {
- "label": "Fee"
+ "Epicerie": {
+ "count": 64
},
- "fire_hydrant/type": {
- "label": "Type"
+ "Esso": {
+ "count": 64
},
- "fixme": {
- "label": "Fix Me"
+ "FamilyMart": {
+ "count": 489
},
- "generator/method": {
- "label": "Method"
+ "Food Mart": {
+ "count": 88
},
- "generator/source": {
- "label": "Source"
+ "Four Square": {
+ "count": 51
},
- "generator/type": {
- "label": "Type"
+ "Franprix": {
+ "count": 64
},
- "highway": {
- "label": "Type"
+ "Groszek": {
+ "count": 57
},
- "historic": {
- "label": "Type"
+ "Hasty Market": {
+ "count": 53
},
- "iata": {
- "label": "IATA"
+ "Indomaret": {
+ "count": 126
},
- "icao": {
- "label": "ICAO"
+ "Jednota": {
+ "count": 56
},
- "incline": {
- "label": "Incline"
+ "K-Market": {
+ "count": 57
},
- "internet_access": {
- "label": "Internet Access",
- "options": {
- "yes": "Yes",
- "no": "No",
- "wlan": "Wifi",
- "wired": "Wired",
- "terminal": "Terminal"
- }
+ "Kiosk": {
+ "count": 57
},
- "landuse": {
- "label": "Type"
+ "Konzum": {
+ "count": 164
},
- "lanes": {
- "label": "Lanes",
- "placeholder": "1, 2, 3..."
+ "Kum & Go": {
+ "count": 55
},
- "layer": {
- "label": "Layer"
+ "Kwik Trip": {
+ "count": 69
},
- "leisure": {
- "label": "Type"
+ "LAWSON": {
+ "count": 397
},
- "levels": {
- "label": "Levels",
- "placeholder": "2, 4, 6..."
+ "Lewiatan": {
+ "count": 111
},
- "lit": {
- "label": "Lit"
+ "Lidl": {
+ "count": 81
},
- "location": {
- "label": "Location"
+ "Londis": {
+ "count": 341
},
- "man_made": {
- "label": "Type"
+ "Mac's": {
+ "count": 147
},
- "maxspeed": {
- "label": "Speed Limit",
- "placeholder": "40, 50, 60..."
+ "Mace": {
+ "count": 111
},
- "name": {
- "label": "Name",
- "placeholder": "Common name (if any)"
+ "McColl's": {
+ "count": 97
},
- "natural": {
- "label": "Natural"
+ "Mercator": {
+ "count": 59
},
- "network": {
- "label": "Network"
+ "Mini Market": {
+ "count": 190
},
- "note": {
- "label": "Note"
+ "Mini Stop": {
+ "count": 210
},
- "office": {
- "label": "Type"
+ "Mobil": {
+ "count": 63
},
- "oneway": {
- "label": "One Way"
+ "Nisa": {
+ "count": 52
},
- "oneway_yes": {
- "label": "One Way"
+ "Nisa Local": {
+ "count": 71
},
- "opening_hours": {
- "label": "Hours"
+ "Oxxo": {
+ "count": 614
},
- "operator": {
- "label": "Operator"
+ "One Stop": {
+ "count": 142
},
- "park_ride": {
- "label": "Park and Ride"
+ "Petit Casino": {
+ "count": 227
},
- "parking": {
- "label": "Type"
+ "Picard": {
+ "count": 53
},
- "phone": {
- "label": "Phone",
- "placeholder": "+31 42 123 4567"
+ "Potraviny": {
+ "count": 243
},
- "place": {
- "label": "Type"
+ "Premier": {
+ "count": 123
},
- "power": {
- "label": "Type"
+ "Proxi": {
+ "count": 114
},
- "railway": {
- "label": "Type"
+ "QuikTrip": {
+ "count": 59
},
- "ref": {
- "label": "Reference"
+ "Rossmann": {
+ "count": 62
},
- "relation": {
- "label": "Type"
+ "SPAR": {
+ "count": 185
},
- "religion": {
- "label": "Religion",
- "options": {
- "christian": "Christian",
- "muslim": "Muslim",
- "buddhist": "Buddhist",
- "jewish": "Jewish",
- "hindu": "Hindu",
- "shinto": "Shinto",
- "taoist": "Taoist"
- }
+ "Sainsbury's Local": {
+ "count": 96
},
- "restriction": {
- "label": "Type"
+ "Sale": {
+ "count": 80
},
- "route": {
- "label": "Type"
+ "Select": {
+ "count": 58
},
- "route_master": {
- "label": "Type"
+ "Shell": {
+ "count": 241
},
- "sac_scale": {
- "label": "Path Difficulty"
+ "Siwa": {
+ "count": 212
},
- "service": {
- "label": "Type"
+ "Sklep spożywczy": {
+ "count": 235
},
- "shelter": {
- "label": "Shelter"
+ "Spar": {
+ "count": 888
},
- "shop": {
- "label": "Type"
+ "SpoÅem": {
+ "count": 84
},
- "source": {
- "label": "Source"
+ "Spożywczy": {
+ "count": 67
},
- "sport": {
- "label": "Sport"
+ "Statoil": {
+ "count": 69
},
- "structure": {
- "label": "Structure",
- "placeholder": "Unknown",
- "options": {
- "bridge": "Bridge",
- "tunnel": "Tunnel",
- "embankment": "Embankment",
- "cutting": "Cutting"
- }
+ "Stewart's": {
+ "count": 254
},
- "supervised": {
- "label": "Supervised"
+ "Stores": {
+ "count": 61
},
- "surface": {
- "label": "Surface"
+ "Studenac": {
+ "count": 74
},
- "toilets/disposal": {
- "label": "Disposal"
+ "Sunkus": {
+ "count": 63
},
- "tourism": {
- "label": "Type"
+ "Tchibo": {
+ "count": 54
},
- "towertype": {
- "label": "Tower type"
+ "Tesco": {
+ "count": 55
},
- "tracktype": {
- "label": "Type"
+ "Tesco Express": {
+ "count": 415
},
- "trail_visibility": {
- "label": "Trail Visibility"
+ "The Co-operative Food": {
+ "count": 109
},
- "vending": {
- "label": "Type of Goods"
+ "Valintatalo": {
+ "count": 62
},
- "water": {
- "label": "Type"
+ "Vival": {
+ "count": 182
},
- "waterway": {
- "label": "Type"
+ "Volg": {
+ "count": 110
},
- "website": {
- "label": "Website",
- "placeholder": "http://example.com/"
+ "Walgreens": {
+ "count": 89
},
- "wetland": {
- "label": "Type"
+ "Wawa": {
+ "count": 129
},
- "wheelchair": {
- "label": "Wheelchair Access"
+ "abc": {
+ "count": 61
},
- "wikipedia": {
- "label": "Wikipedia"
+ "Żabka": {
+ "count": 497
},
- "wood": {
- "label": "Type"
+ "ÐвоÑÑка": {
+ "count": 53
+ },
+ "ÐеÑезка": {
+ "count": 71
+ },
+ "ÐеÑна": {
+ "count": 56
+ },
+ "ÐизиÑ": {
+ "count": 55
+ },
+ "ÐикÑоÑиÑ": {
+ "count": 67
+ },
+ "ÐаÑÑÑоном": {
+ "count": 136
+ },
+ "ÐикÑи": {
+ "count": 118
+ },
+ "ÐиÑовÑкий": {
+ "count": 69
+ },
+ "ÐопееÑка": {
+ "count": 56
+ },
+ "ÐÑлинаÑиÑ": {
+ "count": 53
+ },
+ "Ðагазин": {
+ "count": 760
+ },
+ "ÐагниÑ": {
+ "count": 645
+ },
+ "ÐаÑиÑ-Ра": {
+ "count": 76
+ },
+ "ÐеÑÑа": {
+ "count": 53
+ },
+ "ÐинимаÑкеÑ": {
+ "count": 97
+ },
+ "ÐонеÑка": {
+ "count": 59
+ },
+ "Ðадежда": {
+ "count": 54
+ },
+ "ÐеÑекÑеÑÑок": {
+ "count": 51
+ },
+ "ÐÑодÑкÑи": {
+ "count": 153
+ },
+ "ÐÑодÑкÑовÑй": {
+ "count": 65
+ },
+ "ÐÑодÑкÑовÑй магазин": {
+ "count": 87
+ },
+ "ÐÑодÑкÑÑ": {
+ "count": 3813
+ },
+ "ÐÑÑÑÑоÑка": {
+ "count": 377
+ },
+ "РадÑга": {
+ "count": 80
+ },
+ "Смак": {
+ "count": 70
+ },
+ "ТеÑемок": {
+ "count": 53
+ },
+ "УнивеÑÑам": {
+ "count": 75
+ },
+ "магазин": {
+ "count": 102
+ },
+ "пÑодÑкÑÑ": {
+ "count": 113
+ },
+ "à¹à¸à¹à¸§à¹à¸à¸à¸µà¹à¸¥à¸à¹à¸§à¹à¸": {
+ "count": 193
+ },
+ "ááá ááá¢á (Market)": {
+ "count": 145
+ },
+ "ãµã³ã¯ã¹": {
+ "count": 517
+ },
+ "ãµã¼ã¯ã«K": {
+ "count": 450,
+ "name:en": "Circle K"
+ },
+ "ã¹ãªã¼ã¨ã": {
+ "count": 84
+ },
+ "ã»ã¤ã³ã¼ãã¼ã (Seicomart)": {
+ "count": 52
+ },
+ "ã»ãã³ã¤ã¬ãã³": {
+ "count": 2742
+ },
+ "ãã¤ãªã¼ã¤ãã¶ã": {
+ "count": 124
+ },
+ "ãã¡ããªã¼ãã¼ã": {
+ "count": 1352,
+ "name:en": "FamilyMart"
+ },
+ "ããã¹ããã": {
+ "count": 282
+ },
+ "ãã¼ã½ã³": {
+ "count": 1399,
+ "name:en": "LAWSON"
+ },
+ "ãã¼ã½ã³ã¹ãã¢100": {
+ "count": 65
+ },
+ "ãã¼ã½ã³ã¹ãã¢100 (LAWSON STORE 100)": {
+ "count": 84
+ },
+ "å
¨å®¶": {
+ "count": 60
+ },
+ "å
¨å®¶ä¾¿å©ååº": {
+ "count": 104
}
},
- "presets": {
- "address": {
- "name": "Address",
- "terms": ""
+ "department_store": {
+ "Big W": {
+ "count": 51
},
- "aeroway": {
- "name": "Aeroway",
- "terms": ""
+ "Canadian Tire": {
+ "count": 69
},
- "aeroway/aerodrome": {
- "name": "Airport",
- "terms": "airplane,airport,aerodrome"
+ "Costco": {
+ "count": 79
},
- "aeroway/apron": {
- "name": "Apron",
- "terms": "ramp"
+ "Debenhams": {
+ "count": 65
},
- "aeroway/gate": {
- "name": "Airport gate",
- "terms": ""
+ "Galeria Kaufhof": {
+ "count": 57
},
- "aeroway/hangar": {
- "name": "Hangar",
- "terms": ""
+ "Karstadt": {
+ "count": 62
},
- "aeroway/helipad": {
- "name": "Helipad",
- "terms": "helicopter,helipad,heliport"
+ "Kmart": {
+ "count": 120
},
- "aeroway/runway": {
- "name": "Runway",
- "terms": "landing strip"
+ "Kohl's": {
+ "count": 123
+ },
+ "Macy's": {
+ "count": 119
+ },
+ "Marks & Spencer": {
+ "count": 59
+ },
+ "Sears": {
+ "count": 208
+ },
+ "Target": {
+ "count": 468
+ },
+ "Walmart": {
+ "count": 456
+ },
+ "Walmart Supercenter": {
+ "count": 67
+ },
+ "Woolworth": {
+ "count": 74
+ },
+ "УнивеÑмаг": {
+ "count": 57
+ }
+ },
+ "doityourself": {
+ "Ace Hardware": {
+ "count": 130
+ },
+ "B&Q": {
+ "count": 222
+ },
+ "Bauhaus": {
+ "count": 178
+ },
+ "Baumax": {
+ "count": 94
+ },
+ "Brico": {
+ "count": 99
+ },
+ "Bricomarché": {
+ "count": 213
+ },
+ "Bricorama": {
+ "count": 59
+ },
+ "Bunnings Warehouse": {
+ "count": 87
+ },
+ "Canadian Tire": {
+ "count": 92
+ },
+ "Castorama": {
+ "count": 160
+ },
+ "Gamma": {
+ "count": 105
+ },
+ "Hagebau": {
+ "count": 61
+ },
+ "Hagebaumarkt": {
+ "count": 109
+ },
+ "Hellweg": {
+ "count": 62
+ },
+ "Home Depot": {
+ "count": 789
+ },
+ "Home Hardware": {
+ "count": 66
+ },
+ "Homebase": {
+ "count": 224
+ },
+ "Hornbach": {
+ "count": 124
+ },
+ "Hubo": {
+ "count": 72
+ },
+ "Lagerhaus": {
+ "count": 71
+ },
+ "Leroy Merlin": {
+ "count": 197
+ },
+ "Lowes": {
+ "count": 1131
+ },
+ "Max Bahr": {
+ "count": 86
+ },
+ "Menards": {
+ "count": 62
+ },
+ "Mr Bricolage": {
+ "count": 87
},
- "aeroway/taxiway": {
- "name": "Taxiway",
- "terms": ""
+ "OBI": {
+ "count": 418
},
- "aeroway/terminal": {
- "name": "Airport terminal",
- "terms": "airport,aerodrome"
+ "Praktiker": {
+ "count": 187
},
- "amenity": {
- "name": "Amenity",
- "terms": ""
+ "Rona": {
+ "count": 57
},
- "amenity/arts_centre": {
- "name": "Arts Center",
- "terms": "arts,arts centre"
+ "Toom": {
+ "count": 69
},
- "amenity/atm": {
- "name": "ATM",
- "terms": ""
+ "Toom Baumarkt": {
+ "count": 65
},
- "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"
+ "Weldom": {
+ "count": 70
},
- "amenity/bar": {
- "name": "Bar",
- "terms": ""
+ "Wickes": {
+ "count": 120
},
- "amenity/bench": {
- "name": "Bench",
- "terms": ""
+ "СÑÑоймаÑеÑиалÑ": {
+ "count": 165
},
- "amenity/bicycle_parking": {
- "name": "Bicycle Parking",
- "terms": ""
+ "ХозÑоваÑÑ": {
+ "count": 68
+ }
+ },
+ "electronics": {
+ "Best Buy": {
+ "count": 297
},
- "amenity/bicycle_rental": {
- "name": "Bicycle Rental",
- "terms": ""
+ "Comet": {
+ "count": 62
},
- "amenity/boat_rental": {
- "name": "Boat Rental",
- "terms": ""
+ "Currys": {
+ "count": 80
},
- "amenity/cafe": {
- "name": "Cafe",
- "terms": "coffee,tea,coffee shop"
+ "Darty": {
+ "count": 71
},
- "amenity/car_rental": {
- "name": "Car Rental",
- "terms": ""
+ "Euronics": {
+ "count": 109
},
- "amenity/car_sharing": {
- "name": "Car Sharing",
- "terms": ""
+ "Expert": {
+ "count": 117
},
- "amenity/car_wash": {
- "name": "Car Wash",
- "terms": ""
+ "Future Shop": {
+ "count": 69
},
- "amenity/childcare": {
- "name": "Childcare",
- "terms": "nursery,orphanage,playgroup"
+ "Maplin": {
+ "count": 63
},
- "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"
+ "Media Markt": {
+ "count": 273
},
- "amenity/college": {
- "name": "College",
- "terms": ""
+ "Radio Shack": {
+ "count": 226
},
- "amenity/courthouse": {
- "name": "Courthouse",
- "terms": ""
+ "Saturn": {
+ "count": 147
},
- "amenity/drinking_water": {
- "name": "Drinking Water",
- "terms": "water fountain,potable water"
+ "Ð.Ðидео": {
+ "count": 74
},
- "amenity/embassy": {
- "name": "Embassy",
- "terms": ""
+ "ÐлÑдоÑадо": {
+ "count": 171
+ }
+ },
+ "furniture": {
+ "But": {
+ "count": 58
},
- "amenity/fast_food": {
- "name": "Fast Food",
- "terms": ""
+ "Conforama": {
+ "count": 90
},
- "amenity/fire_station": {
- "name": "Fire Station",
- "terms": ""
+ "Dänisches Bettenlager": {
+ "count": 290
},
- "amenity/fountain": {
- "name": "Fountain",
- "terms": ""
+ "IKEA": {
+ "count": 162
},
- "amenity/fuel": {
- "name": "Gas Station",
- "terms": "petrol,fuel,propane,diesel,lng,cng,biodiesel"
+ "Jysk": {
+ "count": 92
},
- "amenity/grave_yard": {
- "name": "Graveyard",
- "terms": ""
+ "Matratzen Concord": {
+ "count": 51
},
- "amenity/hospital": {
- "name": "Hospital",
- "terms": "clinic,emergency room,health service,hospice,infirmary,institution,nursing home,rest home,sanatorium,sanitarium,sick bay,surgery,ward"
+ "Roller": {
+ "count": 77
},
- "amenity/kindergarten": {
- "name": "Kindergarten",
- "terms": "nursery,preschool"
+ "ÐебелÑ": {
+ "count": 190
+ }
+ },
+ "hairdresser": {
+ "Coiffeur": {
+ "count": 60
},
- "amenity/library": {
- "name": "Library",
- "terms": ""
+ "Franck Provost": {
+ "count": 64
},
- "amenity/marketplace": {
- "name": "Marketplace",
- "terms": ""
+ "Friseur": {
+ "count": 127
},
- "amenity/parking": {
- "name": "Parking",
- "terms": ""
+ "Great Clips": {
+ "count": 155
},
- "amenity/pharmacy": {
- "name": "Pharmacy",
- "terms": ""
+ "Klier": {
+ "count": 105
},
- "amenity/place_of_worship": {
- "name": "Place of Worship",
- "terms": "abbey,basilica,bethel,cathedral,chancel,chantry,chapel,church,fold,house of God,house of prayer,house of worship,minster,mission,mosque,oratory,parish,sacellum,sanctuary,shrine,synagogue,tabernacle,temple"
+ "Peluqueria": {
+ "count": 56
},
- "amenity/place_of_worship/buddhist": {
- "name": "Buddhist Temple",
- "terms": "stupa,vihara,monastery,temple,pagoda,zendo,dojo"
+ "Supercuts": {
+ "count": 89
},
- "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"
+ "ÐаÑикмаÑ
еÑÑкаÑ": {
+ "count": 485
},
- "amenity/place_of_worship/jewish": {
- "name": "Synagogue",
- "terms": "jewish,synagogue"
+ "Салон кÑаÑоÑÑ": {
+ "count": 65
+ }
+ },
+ "hardware": {
+ "1000 мелоÑей": {
+ "count": 53
},
- "amenity/place_of_worship/muslim": {
- "name": "Mosque",
- "terms": "muslim,mosque"
+ "Ace Hardware": {
+ "count": 82
},
- "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"
+ "Home Depot": {
+ "count": 81
},
- "amenity/post_box": {
- "name": "Mailbox",
- "terms": "letter drop,letterbox,mail drop,mailbox,pillar box,postbox"
+ "ХозÑоваÑÑ": {
+ "count": 143
+ }
+ },
+ "hifi": {
+ "Best Buy": {
+ "count": 94
},
- "amenity/post_office": {
- "name": "Post Office",
- "terms": ""
+ "Media Markt": {
+ "count": 57
+ }
+ },
+ "jewelry": {
+ "Bijou Brigitte": {
+ "count": 53
},
- "amenity/pub": {
- "name": "Pub",
- "terms": ""
+ "Christ": {
+ "count": 55
},
- "amenity/ranger_station": {
- "name": "Ranger Station",
- "terms": "visitor center,visitor centre,permit center,permit centre,backcountry office"
+ "Swarovski": {
+ "count": 70
+ }
+ },
+ "mobile_phone": {
+ "AT&T": {
+ "count": 95
},
- "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"
+ "Bell": {
+ "count": 191
},
- "amenity/school": {
- "name": "School",
- "terms": "academy,alma mater,blackboard,college,department,discipline,establishment,faculty,hall,halls of ivy,institute,institution,jail*,schoolhouse,seminary,university"
+ "BitÄ": {
+ "count": 73
},
- "amenity/swimming_pool": {
- "name": "Swimming Pool",
- "terms": ""
+ "Carphone Warehouse": {
+ "count": 109
},
- "amenity/taxi": {
- "name": "Taxi Stand",
- "terms": "cab"
+ "Movistar": {
+ "count": 55
},
- "amenity/telephone": {
- "name": "Telephone",
- "terms": ""
+ "O2": {
+ "count": 180
},
- "amenity/theatre": {
- "name": "Theater",
- "terms": "theatre,performance,play,musical"
+ "Orange": {
+ "count": 220
},
- "amenity/toilets": {
- "name": "Toilets",
- "terms": "bathroom,restroom,outhouse,privy,head,lavatory,latrine,water closet,WC,W.C."
+ "SFR": {
+ "count": 70
},
- "amenity/townhall": {
- "name": "Town Hall",
- "terms": "village hall,city government,courthouse,municipal building,municipal center,municipal centre"
+ "Sprint": {
+ "count": 91
},
- "amenity/university": {
- "name": "University",
- "terms": "college"
+ "T-Mobile": {
+ "count": 158
},
- "amenity/vending_machine": {
- "name": "Vending Machine",
- "terms": ""
+ "The Phone House": {
+ "count": 81
},
- "amenity/waste_basket": {
- "name": "Waste Basket",
- "terms": "rubbish bin,litter bin,trash can,garbage can"
+ "Verizon Wireless": {
+ "count": 97
},
- "area": {
- "name": "Area",
- "terms": ""
+ "Vodafone": {
+ "count": 311
},
- "barrier": {
- "name": "Barrier",
- "terms": ""
+ "au": {
+ "count": 56
},
- "barrier/block": {
- "name": "Block",
- "terms": ""
+ "Ðилайн": {
+ "count": 113
},
- "barrier/bollard": {
- "name": "Bollard",
- "terms": ""
+ "ÐвÑоÑеÑÑ": {
+ "count": 466
},
- "barrier/cattle_grid": {
- "name": "Cattle Grid",
- "terms": ""
+ "ÐТС": {
+ "count": 311
},
- "barrier/city_wall": {
- "name": "City Wall",
- "terms": ""
+ "ÐегаÑон": {
+ "count": 227
},
- "barrier/cycle_barrier": {
- "name": "Cycle Barrier",
- "terms": ""
+ "СвÑзной": {
+ "count": 396
},
- "barrier/ditch": {
- "name": "Ditch",
- "terms": ""
+ "ã½ãããã³ã¯ã·ã§ãã (SoftBank shop)": {
+ "count": 256
},
- "barrier/entrance": {
- "name": "Entrance",
- "terms": ""
+ "ãã³ã¢ã·ã§ãã (docomo shop)": {
+ "count": 113
+ }
+ },
+ "motorcycle": {
+ "Honda": {
+ "count": 56
},
- "barrier/fence": {
- "name": "Fence",
- "terms": ""
+ "Yamaha": {
+ "count": 58
+ }
+ },
+ "optician": {
+ "Alain Afflelou": {
+ "count": 68
},
- "barrier/gate": {
- "name": "Gate",
- "terms": ""
+ "Apollo Optik": {
+ "count": 142
},
- "barrier/hedge": {
- "name": "Hedge",
- "terms": ""
+ "Fielmann": {
+ "count": 219
},
- "barrier/kissing_gate": {
- "name": "Kissing Gate",
- "terms": ""
+ "Krys": {
+ "count": 65
},
- "barrier/lift_gate": {
- "name": "Lift Gate",
- "terms": ""
+ "Optic 2000": {
+ "count": 87
},
- "barrier/retaining_wall": {
- "name": "Retaining Wall",
- "terms": ""
+ "Specsavers": {
+ "count": 109
},
- "barrier/stile": {
- "name": "Stile",
- "terms": ""
+ "Vision Express": {
+ "count": 54
},
- "barrier/toll_booth": {
- "name": "Toll Booth",
- "terms": ""
+ "ÐпÑика": {
+ "count": 165
+ }
+ },
+ "pet": {
+ "Das Futterhaus": {
+ "count": 61
},
- "barrier/wall": {
- "name": "Wall",
- "terms": ""
+ "Fressnapf": {
+ "count": 300
},
- "boundary/administrative": {
- "name": "Administrative Boundary",
- "terms": ""
+ "PetSmart": {
+ "count": 150
},
- "building": {
- "name": "Building",
- "terms": ""
+ "Petco": {
+ "count": 79
},
- "building/apartments": {
- "name": "Apartments",
- "terms": ""
+ "Pets at Home": {
+ "count": 53
},
- "building/commercial": {
- "name": "Commercial Building",
- "terms": ""
+ "Ðоомагазин": {
+ "count": 95
+ }
+ },
+ "shoes": {
+ "Bata": {
+ "count": 88
},
- "building/entrance": {
- "name": "Entrance",
- "terms": ""
+ "Brantano": {
+ "count": 67
},
- "building/garage": {
- "name": "Garage",
- "terms": ""
+ "Clarks": {
+ "count": 97
},
- "building/house": {
- "name": "House",
- "terms": ""
+ "Deichmann": {
+ "count": 574
},
- "building/hut": {
- "name": "Hut",
- "terms": ""
+ "Ecco": {
+ "count": 53
},
- "building/industrial": {
- "name": "Industrial Building",
- "terms": ""
+ "Foot Locker": {
+ "count": 74
},
- "building/residential": {
- "name": "Residential Building",
- "terms": ""
+ "La Halle aux Chaussures": {
+ "count": 63
},
- "emergency/ambulance_station": {
- "name": "Ambulance Station",
- "terms": ""
+ "Payless Shoe Source": {
+ "count": 52
},
- "emergency/fire_hydrant": {
- "name": "Fire Hydrant",
- "terms": ""
+ "Quick Schuh": {
+ "count": 69
},
- "emergency/phone": {
- "name": "Emergency Phone",
- "terms": ""
+ "Reno": {
+ "count": 170
},
- "entrance": {
- "name": "Entrance",
- "terms": ""
+ "Salamander": {
+ "count": 52
},
- "highway": {
- "name": "Highway",
- "terms": ""
+ "ÐбÑвÑ": {
+ "count": 93
+ }
+ },
+ "sports": {
+ "Decathlon": {
+ "count": 286
},
- "highway/bridleway": {
- "name": "Bridle Path",
- "terms": "bridleway,equestrian trail,horse riding path,bridle road,horse trail"
+ "Dick's Sporting Goods": {
+ "count": 58
},
- "highway/bus_stop": {
- "name": "Bus Stop",
- "terms": ""
+ "Intersport": {
+ "count": 265
},
- "highway/crossing": {
- "name": "Crossing",
- "terms": "crosswalk,zebra crossing"
+ "Sport 2000": {
+ "count": 83
},
- "highway/cycleway": {
- "name": "Cycle Path",
- "terms": ""
+ "Sports Authority": {
+ "count": 63
},
- "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"
+ "СпоÑÑмаÑÑеÑ": {
+ "count": 80
+ }
+ },
+ "stationery": {
+ "McPaper": {
+ "count": 79
},
- "highway/living_street": {
- "name": "Living Street",
- "terms": ""
+ "Office Depot": {
+ "count": 83
},
- "highway/mini_roundabout": {
- "name": "Mini-Roundabout",
- "terms": ""
+ "Staples": {
+ "count": 262
},
- "highway/motorway": {
- "name": "Motorway",
- "terms": ""
+ "ÐанÑÑоваÑÑ": {
+ "count": 57
+ }
+ },
+ "supermarket": {
+ "AD Delhaize": {
+ "count": 66
},
- "highway/motorway_junction": {
- "name": "Motorway Junction",
- "terms": ""
+ "ADEG": {
+ "count": 64
},
- "highway/motorway_link": {
- "name": "Motorway Link",
- "terms": "ramp,on ramp,off ramp"
+ "ALDI": {
+ "count": 5182
},
- "highway/path": {
- "name": "Path",
- "terms": ""
+ "Aldi Süd": {
+ "count": 589
},
- "highway/pedestrian": {
- "name": "Pedestrian",
- "terms": ""
+ "ASDA": {
+ "count": 178
},
- "highway/primary": {
- "name": "Primary Road",
- "terms": ""
+ "Albert": {
+ "count": 185
},
- "highway/primary_link": {
- "name": "Primary Link",
- "terms": "ramp,on ramp,off ramp"
+ "Albert Heijn": {
+ "count": 445
},
- "highway/residential": {
- "name": "Residential Road",
- "terms": ""
+ "Albertson's": {
+ "count": 96
},
- "highway/road": {
- "name": "Unknown Road",
- "terms": ""
+ "Albertsons": {
+ "count": 133
},
- "highway/secondary": {
- "name": "Secondary Road",
- "terms": ""
+ "Aldi Nord": {
+ "count": 194
},
- "highway/secondary_link": {
- "name": "Secondary Link",
- "terms": "ramp,on ramp,off ramp"
+ "Alimerka": {
+ "count": 58
},
- "highway/service": {
- "name": "Service Road",
- "terms": ""
+ "Asda": {
+ "count": 221
},
- "highway/service/alley": {
- "name": "Alley",
- "terms": ""
+ "Auchan": {
+ "count": 144
},
- "highway/service/drive-through": {
- "name": "Drive-Through",
- "terms": ""
+ "Billa": {
+ "count": 1417
},
- "highway/service/driveway": {
- "name": "Driveway",
- "terms": ""
+ "Biedronka": {
+ "count": 1227
},
- "highway/service/emergency_access": {
- "name": "Emergency Access",
- "terms": ""
+ "Bodega Aurrera": {
+ "count": 70
},
- "highway/service/parking_aisle": {
- "name": "Parking Aisle",
- "terms": ""
+ "Budgens": {
+ "count": 86
},
- "highway/steps": {
- "name": "Steps",
- "terms": "stairs,staircase"
+ "C1000": {
+ "count": 332
},
- "highway/stop": {
- "name": "Stop Sign",
- "terms": "stop sign"
+ "CBA": {
+ "count": 160
},
- "highway/tertiary": {
- "name": "Tertiary Road",
- "terms": ""
+ "COOP": {
+ "count": 187
},
- "highway/tertiary_link": {
- "name": "Tertiary Link",
- "terms": "ramp,on ramp,off ramp"
+ "COOP Jednota": {
+ "count": 67
},
- "highway/track": {
- "name": "Track",
- "terms": ""
+ "Caprabo": {
+ "count": 96
},
- "highway/traffic_signals": {
- "name": "Traffic Signals",
- "terms": "light,stoplight,traffic light"
+ "Carrefour": {
+ "count": 1575
},
- "highway/trunk": {
- "name": "Trunk Road",
- "terms": ""
+ "Carrefour City": {
+ "count": 109
},
- "highway/trunk_link": {
- "name": "Trunk Link",
- "terms": "ramp,on ramp,off ramp"
+ "Carrefour Contact": {
+ "count": 73
},
- "highway/turning_circle": {
- "name": "Turning Circle",
- "terms": ""
+ "Carrefour Express": {
+ "count": 314
},
- "highway/unclassified": {
- "name": "Unclassified Road",
- "terms": ""
+ "Carrefour Market": {
+ "count": 79
},
- "historic": {
- "name": "Historic Site",
- "terms": ""
+ "Casino": {
+ "count": 254
},
- "historic/archaeological_site": {
- "name": "Archaeological Site",
- "terms": ""
+ "Centra": {
+ "count": 51
},
- "historic/boundary_stone": {
- "name": "Boundary Stone",
- "terms": ""
+ "Champion": {
+ "count": 63
},
- "historic/castle": {
- "name": "Castle",
- "terms": ""
+ "Checkers": {
+ "count": 124
},
- "historic/memorial": {
- "name": "Memorial",
- "terms": ""
+ "Coop": {
+ "count": 1860
},
- "historic/monument": {
- "name": "Monument",
- "terms": ""
+ "Coles": {
+ "count": 381
},
- "historic/ruins": {
- "name": "Ruins",
- "terms": ""
+ "Colruyt": {
+ "count": 186
},
- "historic/wayside_cross": {
- "name": "Wayside Cross",
- "terms": ""
+ "Combi": {
+ "count": 56
},
- "historic/wayside_shrine": {
- "name": "Wayside Shrine",
- "terms": ""
+ "Conad": {
+ "count": 294
},
- "landuse": {
- "name": "Landuse",
- "terms": ""
+ "Condis": {
+ "count": 65
},
- "landuse/allotments": {
- "name": "Allotments",
- "terms": ""
+ "Consum": {
+ "count": 123
},
- "landuse/basin": {
- "name": "Basin",
- "terms": ""
+ "Continente": {
+ "count": 66
},
- "landuse/cemetery": {
- "name": "Cemetery",
- "terms": ""
+ "Coop Jednota": {
+ "count": 68
},
- "landuse/commercial": {
- "name": "Commercial",
- "terms": ""
+ "Coop Konsum": {
+ "count": 78
},
- "landuse/construction": {
- "name": "Construction",
- "terms": ""
+ "Costco": {
+ "count": 133
},
- "landuse/farm": {
- "name": "Farm",
- "terms": ""
+ "Costcutter": {
+ "count": 62
},
- "landuse/farmyard": {
- "name": "Farmyard",
- "terms": ""
+ "Countdown": {
+ "count": 90
},
- "landuse/forest": {
- "name": "Forest",
- "terms": ""
+ "Dia": {
+ "count": 749
},
- "landuse/grass": {
- "name": "Grass",
- "terms": ""
+ "dm": {
+ "count": 108
},
- "landuse/industrial": {
- "name": "Industrial",
- "terms": ""
+ "Delhaize": {
+ "count": 219
},
- "landuse/meadow": {
- "name": "Meadow",
- "terms": ""
+ "Delikatesy Centrum": {
+ "count": 56
},
- "landuse/orchard": {
- "name": "Orchard",
- "terms": ""
+ "Denner": {
+ "count": 256
},
- "landuse/quarry": {
- "name": "Quarry",
- "terms": ""
+ "Despar": {
+ "count": 143
},
- "landuse/residential": {
- "name": "Residential",
- "terms": ""
+ "Diska": {
+ "count": 69
},
- "landuse/retail": {
- "name": "Retail",
- "terms": ""
+ "Dunnes Stores": {
+ "count": 70
},
- "landuse/vineyard": {
- "name": "Vineyard",
- "terms": ""
+ "E-Center": {
+ "count": 67
},
- "leisure": {
- "name": "Leisure",
- "terms": ""
+ "E.Leclerc": {
+ "count": 341
},
- "leisure/common": {
- "name": "Common",
- "terms": "open space"
+ "EDEKA": {
+ "count": 498
},
- "leisure/dog_park": {
- "name": "Dog Park",
- "terms": ""
+ "Edeka": {
+ "count": 1811
},
- "leisure/garden": {
- "name": "Garden",
- "terms": ""
+ "El Ãrbol": {
+ "count": 71
},
- "leisure/golf_course": {
- "name": "Golf Course",
- "terms": ""
+ "Eroski": {
+ "count": 203
},
- "leisure/marina": {
- "name": "Marina",
- "terms": ""
+ "Esselunga": {
+ "count": 82
},
- "leisure/park": {
- "name": "Park",
- "terms": "esplanade,estate,forest,garden,grass,green,grounds,lawn,lot,meadow,parkland,place,playground,plaza,pleasure garden,recreation area,square,tract,village green,woodland"
+ "Eurospar": {
+ "count": 260
},
- "leisure/pitch": {
- "name": "Sport Pitch",
- "terms": ""
+ "Eurospin": {
+ "count": 153
},
- "leisure/pitch/american_football": {
- "name": "American Football Field",
- "terms": ""
+ "Extra": {
+ "count": 74
},
- "leisure/pitch/baseball": {
- "name": "Baseball Diamond",
- "terms": ""
+ "Fakta": {
+ "count": 215
},
- "leisure/pitch/basketball": {
- "name": "Basketball Court",
- "terms": ""
+ "Famiglia Cooperativa": {
+ "count": 62
},
- "leisure/pitch/skateboard": {
- "name": "Skate Park",
- "terms": ""
+ "Famila": {
+ "count": 127
},
- "leisure/pitch/soccer": {
- "name": "Soccer Field",
- "terms": ""
+ "Farmfoods": {
+ "count": 63
},
- "leisure/pitch/tennis": {
- "name": "Tennis Court",
- "terms": ""
+ "Feneberg": {
+ "count": 61
},
- "leisure/pitch/volleyball": {
- "name": "Volleyball Court",
- "terms": ""
+ "Food Basics": {
+ "count": 73
},
- "leisure/playground": {
- "name": "Playground",
- "terms": "jungle gym,play area"
+ "Food Lion": {
+ "count": 175
},
- "leisure/slipway": {
- "name": "Slipway",
- "terms": ""
+ "Foodland": {
+ "count": 92
},
- "leisure/sports_center": {
- "name": "Sports Center",
- "terms": "gym"
+ "Foodworks": {
+ "count": 55
},
- "leisure/stadium": {
- "name": "Stadium",
- "terms": ""
+ "Franprix": {
+ "count": 298
},
- "leisure/swimming_pool": {
- "name": "Swimming Pool",
- "terms": ""
+ "Fred Meyer": {
+ "count": 63
},
- "leisure/track": {
- "name": "Race Track",
- "terms": ""
+ "Fressnapf": {
+ "count": 66
},
- "line": {
- "name": "Line",
- "terms": ""
+ "Føtex": {
+ "count": 67
},
- "man_made": {
- "name": "Man Made",
- "terms": ""
+ "Game": {
+ "count": 53
},
- "man_made/breakwater": {
- "name": "Breakwater",
- "terms": ""
+ "Giant": {
+ "count": 187
},
- "man_made/cutline": {
- "name": "Cut line",
- "terms": ""
+ "Giant Eagle": {
+ "count": 69
},
- "man_made/lighthouse": {
- "name": "Lighthouse",
- "terms": ""
+ "Géant Casino": {
+ "count": 53
},
- "man_made/observation": {
- "name": "Observation Tower",
- "terms": "lookout tower,fire tower"
+ "HEB": {
+ "count": 75
},
- "man_made/pier": {
- "name": "Pier",
- "terms": ""
+ "HIT": {
+ "count": 62
},
- "man_made/pipeline": {
- "name": "Pipeline",
- "terms": ""
+ "Hannaford": {
+ "count": 55
},
- "man_made/survey_point": {
- "name": "Survey Point",
- "terms": ""
+ "Harris Teeter": {
+ "count": 84
},
- "man_made/tower": {
- "name": "Tower",
- "terms": ""
+ "Hemköp": {
+ "count": 83
},
- "man_made/wastewater_plant": {
- "name": "Wastewater Plant",
- "terms": "sewage works,sewage treatment plant,water treatment plant,reclamation plant"
+ "Hofer": {
+ "count": 451
},
- "man_made/water_tower": {
- "name": "Water Tower",
- "terms": ""
+ "Hoogvliet": {
+ "count": 52
},
- "man_made/water_well": {
- "name": "Water well",
- "terms": ""
+ "Hy-Vee": {
+ "count": 67
},
- "man_made/water_works": {
- "name": "Water Works",
- "terms": ""
+ "ICA": {
+ "count": 195
},
- "natural": {
- "name": "Natural",
- "terms": ""
+ "IGA": {
+ "count": 333
},
- "natural/bay": {
- "name": "Bay",
- "terms": ""
+ "Iceland": {
+ "count": 297
},
- "natural/beach": {
- "name": "Beach",
- "terms": ""
+ "Intermarche": {
+ "count": 107
},
- "natural/cliff": {
- "name": "Cliff",
- "terms": ""
+ "Intermarché": {
+ "count": 1155
},
- "natural/coastline": {
- "name": "Coastline",
- "terms": "shore"
+ "Interspar": {
+ "count": 142
},
- "natural/fell": {
- "name": "Fell",
- "terms": ""
+ "Irma": {
+ "count": 61
},
- "natural/glacier": {
- "name": "Glacier",
- "terms": ""
+ "Jumbo": {
+ "count": 175
},
- "natural/grassland": {
- "name": "Grassland",
- "terms": ""
+ "K+K": {
+ "count": 104
},
- "natural/heath": {
- "name": "Heath",
- "terms": ""
+ "Kaiser's": {
+ "count": 255
},
- "natural/peak": {
- "name": "Peak",
- "terms": "acme,aiguille,alp,climax,crest,crown,hill,mount,mountain,pinnacle,summit,tip,top"
+ "Kaufland": {
+ "count": 996
},
- "natural/scree": {
- "name": "Scree",
- "terms": "loose rocks"
+ "Kaufpark": {
+ "count": 100
},
- "natural/scrub": {
- "name": "Scrub",
- "terms": ""
+ "King Soopers": {
+ "count": 69
},
- "natural/spring": {
- "name": "Spring",
- "terms": ""
+ "Kiwi": {
+ "count": 164
},
- "natural/tree": {
- "name": "Tree",
- "terms": ""
+ "Konsum": {
+ "count": 139
},
- "natural/water": {
- "name": "Water",
- "terms": ""
+ "Konzum": {
+ "count": 225
},
- "natural/water/lake": {
- "name": "Lake",
- "terms": "lakelet,loch,mere"
+ "Kroger": {
+ "count": 280
},
- "natural/water/pond": {
- "name": "Pond",
- "terms": "lakelet,millpond,tarn,pool,mere"
+ "Kvickly": {
+ "count": 54
},
- "natural/water/reservoir": {
- "name": "Reservoir",
- "terms": ""
+ "LIDL": {
+ "count": 901
},
- "natural/wetland": {
- "name": "Wetland",
- "terms": ""
+ "Leader Price": {
+ "count": 242
},
- "natural/wood": {
- "name": "Wood",
- "terms": ""
+ "Leclerc": {
+ "count": 132
},
- "office": {
- "name": "Office",
- "terms": ""
+ "Lewiatan": {
+ "count": 88
},
- "place": {
- "name": "Place",
- "terms": ""
+ "Lider": {
+ "count": 65
},
- "place/city": {
- "name": "City",
- "terms": ""
+ "Lidl": {
+ "count": 6116
},
- "place/hamlet": {
- "name": "Hamlet",
- "terms": ""
+ "M-Preis": {
+ "count": 81
},
- "place/island": {
- "name": "Island",
- "terms": "archipelago,atoll,bar,cay,isle,islet,key,reef"
+ "MPreis": {
+ "count": 54
},
- "place/isolated_dwelling": {
- "name": "Isolated Dwelling",
- "terms": ""
+ "Makro": {
+ "count": 130
},
- "place/locality": {
- "name": "Locality",
- "terms": ""
+ "Markant": {
+ "count": 91
},
- "place/town": {
- "name": "Town",
- "terms": ""
+ "Marktkauf": {
+ "count": 133
},
- "place/village": {
- "name": "Village",
- "terms": ""
+ "Match": {
+ "count": 146
},
- "point": {
- "name": "Point",
- "terms": ""
+ "Maxi": {
+ "count": 100
},
- "power": {
- "name": "Power",
- "terms": ""
+ "Maxima": {
+ "count": 107
},
- "power/generator": {
- "name": "Power Generator",
- "terms": ""
+ "Maxima X": {
+ "count": 111
},
- "power/line": {
- "name": "Power Line",
- "terms": ""
+ "Meijer": {
+ "count": 74
},
- "power/pole": {
- "name": "Power Pole",
- "terms": ""
+ "Mercadona": {
+ "count": 707
},
- "power/sub_station": {
- "name": "Substation",
- "terms": ""
+ "Mercator": {
+ "count": 119
},
- "power/tower": {
- "name": "High-Voltage Tower",
- "terms": ""
+ "Merkur": {
+ "count": 113
},
- "power/transformer": {
- "name": "Transformer",
- "terms": ""
+ "Metro": {
+ "count": 250
},
- "railway": {
- "name": "Railway",
- "terms": ""
+ "Migros": {
+ "count": 433
},
- "railway/abandoned": {
- "name": "Abandoned Railway",
- "terms": ""
+ "Minipreço": {
+ "count": 99
},
- "railway/disused": {
- "name": "Disused Railway",
- "terms": ""
+ "Monoprix": {
+ "count": 194
},
- "railway/halt": {
- "name": "Railway Halt",
- "terms": "break,interrupt,rest,wait,interruption"
+ "Morrisons": {
+ "count": 405
},
- "railway/level_crossing": {
- "name": "Level Crossing",
- "terms": "crossing,railroad crossing,railway crossing,grade crossing,road through railroad,train crossing"
+ "Netto": {
+ "count": 4309
},
- "railway/monorail": {
- "name": "Monorail",
- "terms": ""
+ "NORMA": {
+ "count": 113
},
- "railway/platform": {
- "name": "Railway Platform",
- "terms": ""
+ "NP": {
+ "count": 153
},
- "railway/rail": {
- "name": "Rail",
- "terms": ""
+ "Nah & Frisch": {
+ "count": 76
},
- "railway/station": {
- "name": "Railway Station",
- "terms": ""
+ "Nahkauf": {
+ "count": 166
},
- "railway/subway": {
- "name": "Subway",
- "terms": ""
+ "Neukauf": {
+ "count": 81
},
- "railway/subway_entrance": {
- "name": "Subway Entrance",
- "terms": ""
+ "New World": {
+ "count": 67
},
- "railway/tram": {
- "name": "Tram",
- "terms": "streetcar"
+ "No Frills": {
+ "count": 101
},
- "relation": {
- "name": "Relation",
- "terms": ""
+ "Norma": {
+ "count": 1054
},
- "route/ferry": {
- "name": "Ferry Route",
- "terms": ""
+ "PENNY": {
+ "count": 78
},
- "shop": {
- "name": "Shop",
- "terms": ""
+ "Pam": {
+ "count": 53
},
- "shop/alcohol": {
- "name": "Liquor Store",
- "terms": "alcohol"
+ "Penny": {
+ "count": 1766
},
- "shop/bakery": {
- "name": "Bakery",
- "terms": ""
+ "Penny Market": {
+ "count": 397
},
- "shop/beauty": {
- "name": "Beauty Shop",
- "terms": "nail spa,spa,salon,tanning"
+ "Penny Markt": {
+ "count": 464
},
- "shop/beverages": {
- "name": "Beverage Store",
- "terms": ""
+ "Petit Casino": {
+ "count": 106
},
- "shop/bicycle": {
- "name": "Bicycle Shop",
- "terms": ""
+ "Pick n Pay": {
+ "count": 237
},
- "shop/books": {
- "name": "Bookstore",
- "terms": ""
+ "Piggly Wiggly": {
+ "count": 53
},
- "shop/boutique": {
- "name": "Boutique",
- "terms": ""
+ "Pingo Doce": {
+ "count": 238
},
- "shop/butcher": {
- "name": "Butcher",
- "terms": ""
+ "Piotr i PaweÅ": {
+ "count": 52
},
- "shop/car": {
- "name": "Car Dealership",
- "terms": ""
+ "Plodine": {
+ "count": 52
},
- "shop/car_parts": {
- "name": "Car Parts Store",
- "terms": ""
+ "Plus": {
+ "count": 138
},
- "shop/car_repair": {
- "name": "Car Repair Shop",
- "terms": ""
+ "Polo Market": {
+ "count": 81
},
- "shop/chemist": {
- "name": "Chemist",
- "terms": ""
+ "Price Chopper": {
+ "count": 96
},
- "shop/clothes": {
- "name": "Clothing Store",
- "terms": ""
+ "Profi": {
+ "count": 55
},
- "shop/computer": {
- "name": "Computer Store",
- "terms": ""
+ "Publix": {
+ "count": 312
},
- "shop/confectionery": {
- "name": "Confectionery",
- "terms": ""
+ "REWE": {
+ "count": 1440
},
- "shop/convenience": {
- "name": "Convenience Store",
- "terms": ""
+ "Real": {
+ "count": 337
},
- "shop/deli": {
- "name": "Deli",
- "terms": ""
+ "Reliance Fresh": {
+ "count": 63
},
- "shop/department_store": {
- "name": "Department Store",
- "terms": ""
+ "Rema 1000": {
+ "count": 360
},
- "shop/doityourself": {
- "name": "DIY Store",
- "terms": ""
+ "Rewe": {
+ "count": 1194
},
- "shop/dry_cleaning": {
- "name": "Dry Cleaners",
- "terms": ""
+ "Rimi": {
+ "count": 103
},
- "shop/electronics": {
- "name": "Electronics Store",
- "terms": ""
+ "Rossmann": {
+ "count": 88
},
- "shop/farm": {
- "name": "Produce Stand",
- "terms": "farm shop,farm stand"
+ "S-Market": {
+ "count": 107
},
- "shop/fishmonger": {
- "name": "Fishmonger",
- "terms": ""
+ "SPAR": {
+ "count": 275
},
- "shop/florist": {
- "name": "Florist",
- "terms": ""
+ "Safeway": {
+ "count": 436
},
- "shop/furniture": {
- "name": "Furniture Store",
- "terms": ""
+ "Sainsbury's": {
+ "count": 538
},
- "shop/garden_centre": {
- "name": "Garden Center",
- "terms": "garden centre"
+ "Sainsbury's Local": {
+ "count": 101
},
- "shop/gift": {
- "name": "Gift Shop",
- "terms": ""
+ "Sam's Club": {
+ "count": 125
},
- "shop/greengrocer": {
- "name": "Greengrocer",
- "terms": ""
+ "Santa Isabel": {
+ "count": 123
},
- "shop/hairdresser": {
- "name": "Hairdresser",
- "terms": ""
+ "Shopi": {
+ "count": 57
},
- "shop/hardware": {
- "name": "Hardware Store",
- "terms": ""
+ "Shoprite": {
+ "count": 235
},
- "shop/hifi": {
- "name": "Hifi Store",
- "terms": ""
+ "Simply Market": {
+ "count": 310
},
- "shop/jewelry": {
- "name": "Jeweler",
- "terms": ""
+ "Sobeys": {
+ "count": 117
},
- "shop/kiosk": {
- "name": "Kiosk",
- "terms": ""
+ "Soriana": {
+ "count": 91
},
- "shop/laundry": {
- "name": "Laundry",
- "terms": ""
+ "Spar": {
+ "count": 2028
},
- "shop/locksmith": {
- "name": "Locksmith",
- "terms": "keys"
+ "SpoÅem": {
+ "count": 54
},
- "shop/mall": {
- "name": "Mall",
- "terms": ""
+ "Stokrotka": {
+ "count": 84
},
- "shop/mobile_phone": {
- "name": "Mobile Phone Store",
- "terms": ""
+ "Stop & Shop": {
+ "count": 55
},
- "shop/motorcycle": {
- "name": "Motorcycle Dealership",
- "terms": ""
+ "Super Brugsen": {
+ "count": 63
},
- "shop/music": {
- "name": "Music Store",
- "terms": ""
+ "Super U": {
+ "count": 462
},
- "shop/newsagent": {
- "name": "Newsagent",
- "terms": ""
+ "SuperBrugsen": {
+ "count": 68
},
- "shop/optician": {
- "name": "Optician",
- "terms": ""
+ "Tesco": {
+ "count": 1285
},
- "shop/outdoor": {
- "name": "Outdoor Store",
- "terms": ""
+ "Target": {
+ "count": 199
},
- "shop/pet": {
- "name": "Pet Store",
- "terms": ""
+ "tegut": {
+ "count": 220
},
- "shop/shoes": {
- "name": "Shoe Store",
- "terms": ""
+ "Tengelmann": {
+ "count": 191
},
- "shop/sports": {
- "name": "Sporting Goods Store",
- "terms": ""
+ "Tesco Express": {
+ "count": 373
},
- "shop/stationery": {
- "name": "Stationery Store",
- "terms": ""
+ "Tesco Extra": {
+ "count": 118
},
- "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"
+ "Tesco Metro": {
+ "count": 125
},
- "shop/toys": {
- "name": "Toy Store",
- "terms": ""
+ "The Co-operative": {
+ "count": 60
},
- "shop/travel_agency": {
- "name": "Travel Agency",
- "terms": ""
+ "The Co-operative Food": {
+ "count": 113
},
- "shop/tyres": {
- "name": "Tire Store",
- "terms": ""
+ "Trader Joe's": {
+ "count": 182
},
- "shop/vacant": {
- "name": "Vacant Shop",
- "terms": ""
+ "Treff 3000": {
+ "count": 95
},
- "shop/variety_store": {
- "name": "Variety Store",
- "terms": ""
+ "Unimarc": {
+ "count": 169
},
- "shop/video": {
- "name": "Video Store",
- "terms": ""
+ "Unimarkt": {
+ "count": 80
},
- "tourism": {
- "name": "Tourism",
- "terms": ""
+ "Volg": {
+ "count": 127
},
- "tourism/alpine_hut": {
- "name": "Alpine Hut",
- "terms": ""
+ "Waitrose": {
+ "count": 252
},
- "tourism/artwork": {
- "name": "Artwork",
- "terms": "mural,sculpture,statue"
+ "Walmart": {
+ "count": 600
},
- "tourism/attraction": {
- "name": "Tourist Attraction",
- "terms": ""
+ "Walmart Supercenter": {
+ "count": 103
},
- "tourism/camp_site": {
- "name": "Camp Site",
- "terms": ""
+ "Wasgau": {
+ "count": 60
},
- "tourism/caravan_site": {
- "name": "RV Park",
- "terms": ""
+ "Whole Foods": {
+ "count": 191
},
- "tourism/chalet": {
- "name": "Chalet",
- "terms": ""
+ "Willys": {
+ "count": 54
},
- "tourism/guest_house": {
- "name": "Guest House",
- "terms": "B&B,Bed & Breakfast,Bed and Breakfast"
+ "Woolworths": {
+ "count": 519
},
- "tourism/hostel": {
- "name": "Hostel",
- "terms": ""
+ "Zielpunkt": {
+ "count": 240
},
- "tourism/hotel": {
- "name": "Hotel",
- "terms": ""
+ "coop": {
+ "count": 71
},
- "tourism/information": {
- "name": "Information",
- "terms": ""
+ "nahkauf": {
+ "count": 79
},
- "tourism/motel": {
- "name": "Motel",
- "terms": ""
+ "sky": {
+ "count": 100
},
- "tourism/museum": {
- "name": "Museum",
- "terms": "exhibition,exhibits archive,foundation,gallery,hall,institution,library,menagerie,repository,salon,storehouse,treasury,vault"
+ "ÐТÐ": {
+ "count": 289
},
- "tourism/picnic_site": {
- "name": "Picnic Site",
- "terms": ""
+ "ÐеÑÑÑоÑка": {
+ "count": 51
},
- "tourism/theme_park": {
- "name": "Theme Park",
- "terms": ""
+ "ÐикÑи": {
+ "count": 562
},
- "tourism/viewpoint": {
- "name": "Viewpoint",
- "terms": ""
+ "ÐвÑоопÑ": {
+ "count": 57
},
- "tourism/zoo": {
- "name": "Zoo",
- "terms": ""
+ "ÐаÑÑÑелÑ": {
+ "count": 55
},
- "type/boundary": {
- "name": "Boundary",
- "terms": ""
+ "ÐваÑÑал": {
+ "count": 93
},
- "type/boundary/administrative": {
- "name": "Administrative Boundary",
- "terms": ""
+ "Ðопейка": {
+ "count": 96
},
- "type/multipolygon": {
- "name": "Multipolygon",
- "terms": ""
+ "Ðагазин": {
+ "count": 113
},
- "type/restriction": {
- "name": "Restriction",
- "terms": ""
+ "ÐагниÑ": {
+ "count": 1635
},
- "type/route": {
- "name": "Route",
- "terms": ""
+ "ÐагнолиÑ": {
+ "count": 70
},
- "type/route/bicycle": {
- "name": "Cycle Route",
- "terms": ""
+ "ÐаÑиÑ-Ра": {
+ "count": 94
},
- "type/route/bus": {
- "name": "Bus Route",
- "terms": ""
+ "ÐонеÑка": {
+ "count": 163
},
- "type/route/detour": {
- "name": "Detour Route",
- "terms": ""
+ "ÐаÑÐ¾Ð´Ð½Ð°Ñ 7Я ÑемÑЯ": {
+ "count": 147
},
- "type/route/ferry": {
- "name": "Ferry Route",
- "terms": ""
+ "ÐеÑекÑеÑÑок": {
+ "count": 310
},
- "type/route/foot": {
- "name": "Foot Route",
- "terms": ""
+ "ÐолÑÑка": {
+ "count": 133
},
- "type/route/hiking": {
- "name": "Hiking Route",
- "terms": ""
+ "ÐÑодÑкÑÑ": {
+ "count": 96
},
- "type/route/pipeline": {
- "name": "Pipeline Route",
- "terms": ""
+ "ÐÑÑÑÑоÑка": {
+ "count": 1232
},
- "type/route/power": {
- "name": "Power Route",
- "terms": ""
+ "СедÑмой конÑиненÑ": {
+ "count": 81
},
- "type/route/road": {
- "name": "Road Route",
- "terms": ""
+ "СемÑÑ": {
+ "count": 61
},
- "type/route/train": {
- "name": "Train Route",
- "terms": ""
+ "СÑлÑпо": {
+ "count": 118
},
- "type/route/tram": {
- "name": "Tram Route",
- "terms": ""
+ "ФоÑа": {
+ "count": 52
},
- "type/route_master": {
- "name": "Route Master",
- "terms": ""
+ "ФÑÑÑеÑ": {
+ "count": 76
},
- "vertex": {
- "name": "Other",
- "terms": ""
+ "ãã«ã¨ã": {
+ "count": 52
},
- "waterway": {
- "name": "Waterway",
- "terms": ""
+ "ã¨ã¼ã¯ãã¼ã (YorkMart)": {
+ "count": 62
},
- "waterway/canal": {
- "name": "Canal",
- "terms": ""
+ "西å (SEIYU)": {
+ "count": 55
+ }
+ },
+ "toys": {
+ "La Grande Récré": {
+ "count": 55
},
- "waterway/dam": {
- "name": "Dam",
- "terms": ""
+ "Toys R Us": {
+ "count": 135
},
- "waterway/ditch": {
- "name": "Ditch",
- "terms": ""
+ "ÐеÑÑкий миÑ": {
+ "count": 81
+ }
+ },
+ "travel_agency": {
+ "Flight Centre": {
+ "count": 85
},
- "waterway/drain": {
- "name": "Drain",
- "terms": ""
+ "Thomas Cook": {
+ "count": 100
+ }
+ },
+ "variety_store": {
+ "Dollar General": {
+ "count": 53
},
- "waterway/river": {
- "name": "River",
- "terms": "beck,branch,brook,course,creek,estuary,rill,rivulet,run,runnel,stream,tributary,watercourse"
+ "Dollar Tree": {
+ "count": 76
},
- "waterway/riverbank": {
- "name": "Riverbank",
- "terms": ""
+ "Dollarama": {
+ "count": 90
},
- "waterway/stream": {
- "name": "Stream",
- "terms": "beck,branch,brook,burn,course,creek,current,drift,flood,flow,freshet,race,rill,rindle,rivulet,run,runnel,rush,spate,spritz,surge,tide,torrent,tributary,watercourse"
+ "Tedi": {
+ "count": 138
+ }
+ },
+ "video": {
+ "Blockbuster": {
+ "count": 197
},
- "waterway/weir": {
- "name": "Weir",
- "terms": ""
+ "World of Video": {
+ "count": 66
}
}
}